| java.lang.Object de.susebox.jtopas.TokenizerPropertyEvent
PROPERTY_ADDED | final public static byte PROPERTY_ADDED(Code) | | A property has been added.
|
PROPERTY_MODIFIED | final public static byte PROPERTY_MODIFIED(Code) | | A property has been modified.
|
PROPERTY_REMOVED | final public static byte PROPERTY_REMOVED(Code) | | A property has been removed.
|
TokenizerPropertyEvent | public TokenizerPropertyEvent()(Code) | | The standard constructor initializes an emtpy event.
|
TokenizerPropertyEvent | public TokenizerPropertyEvent(int type, TokenizerProperty property)(Code) | | This constructor takes the type of the event and the
TokenizerProperty that changed.
Parameters: type - type of the event, one of the PROPERTY_... constants Parameters: property - the property that was added, removed or the new value of a modified one |
TokenizerPropertyEvent | public TokenizerPropertyEvent(int type, TokenizerProperty property, TokenizerProperty oldProperty)(Code) | | This constructor takes the type of the event and the
TokenizerProperty that changed together with its old value.
Parameters: type - type of the event, one of the PROPERTY_... constants Parameters: property - the property that was added, removed or the new value of a modified one Parameters: oldProperty - the old value of the property that modified |
equals | public boolean equals(Object that)(Code) | | Redefinition of the well-known
java.lang.Object.equals method.
Parameters: that - compare this instance with that object true if the two object describe the same property,false otherwise |
getType | public int getType()(Code) | | Retrieving the event type. This will usually be one of the PROPERTY_...
constants.
the type of the event |
|
|