Package org.fife.rsta.ac.java
Interface IconFactory.IconData
-
- All Known Subinterfaces:
MemberCompletion.Data
- All Known Implementing Classes:
FieldData,FieldInfoData,MethodData,MethodInfoData
- Enclosing class:
- IconFactory
public static interface IconFactory.IconDataInformation about an icon.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetIcon()Returns the main icon to use when rendering this member's completion.booleanisAbstract()Returns whether this icon represents an abstract class/method/etc.booleanisDeprecated()Returns whether this icon represents a deprecated class/method/etc.booleanisFinal()Returns whether this icon represents a final class/method/etc.booleanisStatic()Returns whether this icon represents a static class/method/etc.
-
-
-
Method Detail
-
getIcon
java.lang.String getIcon()
Returns the main icon to use when rendering this member's completion. This icon will be decorated appropriately based on whether it is abstract, deprecated, final, static, or any of the above.- Returns:
- The icon to use.
-
isAbstract
boolean isAbstract()
Returns whether this icon represents an abstract class/method/etc.- Returns:
- Whether it represents something abstract.
-
isDeprecated
boolean isDeprecated()
Returns whether this icon represents a deprecated class/method/etc.- Returns:
- Whether it represents something deprecated.
-
isFinal
boolean isFinal()
Returns whether this icon represents a final class/method/etc.- Returns:
- Whether it represents something final.
-
isStatic
boolean isStatic()
Returns whether this icon represents a static class/method/etc.- Returns:
- Whether it represents something static.
-
-