de.tif.jacob.screen.event
Class IPasswordFieldEventHandler
java.lang.Object
EventHandler
de.tif.jacob.screen.event.GuiEventHandler
de.tif.jacob.screen.event.IGroupMemberEventHandler
de.tif.jacob.screen.event.IPasswordFieldEventHandler
public abstract class IPasswordFieldEventHandler
- extends IGroupMemberEventHandler
Abstract event handler class for password input fields. Derived
implementations of this event handler class have to be used to "hook"
application-specific business logic to password input fields.
|
Field Summary |
static java.lang.String |
RCS_ID
The internal revision control system id. |
static java.lang.String |
RCS_REV
The internal revision control system id in short form. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
RCS_ID
public static final transient java.lang.String RCS_ID
- The internal revision control system id.
- See Also:
- Constant Field Values
RCS_REV
public static final transient java.lang.String RCS_REV
- The internal revision control system id in short form.
- See Also:
- Constant Field Values
IPasswordFieldEventHandler
public IPasswordFieldEventHandler()
onGroupStatusChanged
public final void onGroupStatusChanged(IClientContext context,
IGuiElement.GroupState state,
IGuiElement element)
throws java.lang.Exception
- Description copied from class:
IGroupMemberEventHandler
- This event method will be called, if the status of the corresponding group
has been changed. Derived event handlers could overwrite this method, e.g.
to enable/disable GUI elements in relation to the group state.
Possible group state values are defined in
IGuiElement:
- Overrides:
onGroupStatusChanged in class IGroupMemberEventHandler
- Parameters:
context - The current client contextstate - The new group stateelement - The corresponding GUI element to this event handler
- Throws:
java.lang.Exception
onGroupStatusChanged
public abstract void onGroupStatusChanged(IClientContext context,
IGuiElement.GroupState state,
IPassword passwordField)
throws java.lang.Exception
- This event method will be called, if the status of the corresponding group
has been changed. Derived event handlers could overwrite this method, e.g.
to enable/disable GUI elements in relation to the group state.
Possible group state values are defined in
IGuiElement:
- Parameters:
context - The current client contextstate - The new group statepasswordField - The corresponding GUI element to this event handler
- Throws:
java.lang.Exception