public class IconLineMarkerProvider extends LineMarkerProviderDescriptor
GutterIconDescriptor.Option
Constructor and Description |
---|
IconLineMarkerProvider() |
Modifier and Type | Method and Description |
---|---|
LineMarkerInfo<?> |
getLineMarkerInfo(PsiElement element)
Get line markers for this PsiElement.
|
java.lang.String |
getName()
Human-readable provider name for UI.
|
boolean |
isEnabledByDefault() |
getIcon, getId, getOptions, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
collectSlowLineMarkers
public LineMarkerInfo<?> getLineMarkerInfo(PsiElement element)
LineMarkerProvider
PsiMethod
,
create the marker for the PsiIdentifier
which is a name of this method.
More technical details:Highlighting (specifically, LineMarkersPass) queries all LineMarkerProviders in two passes (for performance reasons):
LineMarkerProvider
which (incorrectly) written like this:
class MyBadLineMarkerProvider implements LineMarkerProvider {
public LineMarkerInfo getLineMarkerInfo(PsiElement element) {
if (element instanceof PsiMethod) { // ACTUALLY DONT!
return new LineMarkerInfo(element, element.getTextRange(), icon, null,null, alignment);
}
else {
return null;
}
}
...
}
Note that it create LineMarkerInfo for the whole method body.
Following will happen when this method is half-visible (e.g. its name is visible but a part of its body isn't):
class MyGoodLineMarkerProvider implements LineMarkerProvider {
public LineMarkerInfo getLineMarkerInfo(PsiElement element) {
if (element instanceof PsiIdentifier &&
(parent = element.getParent()) instanceof PsiMethod &&
((PsiMethod)parent).getMethodIdentifier() == element)) { // aha, we are at method name
return new LineMarkerInfo(element, element.getTextRange(), icon, null,null, alignment);
}
else {
return null;
}
}
...
}
public java.lang.String getName()
GutterIconDescriptor
getName
in class GutterIconDescriptor
public boolean isEnabledByDefault()
isEnabledByDefault
in class GutterIconDescriptor