| org.netbeans.editor.TokenCategory
All known Subclasses: org.netbeans.editor.BaseTokenCategory,
TokenCategory | public interface TokenCategory (Code) | | Token category enables dividing the tokens into groups. Each token by default
can be contained in zero or one group. If a coloring for the token can't be
found and it has non-null token-group then the coloring for the group is
attempted.
author: Miloslav Metelka version: 1.00 |
Method Summary | |
public String | getName() Get the name of the category. | public int | getNumericID() Get the optional numeric identification of this token-category. |
getName | public String getName()(Code) | | Get the name of the category.
|
getNumericID | public int getNumericID()(Code) | | Get the optional numeric identification of this token-category. It can
help to use the category in switch-case statements. It should default to
a zero if no numeric-id should be used.
|
|
|