Package com.iizix.api.ui
Class UIFocusEvent
- java.lang.Object
- com.iizix.api.BaseEvent<UICOMP>
- com.iizix.api.ui.UIBaseEvent<UIComp>
- com.iizix.api.ui.UIFocusEvent
 
 
 
- All Implemented Interfaces:
- IMessageBox
 - public class UIFocusEvent extends UIBaseEvent<UIComp> The UI Focus Event is fired when the UI focus changes for a component, or when connected to the panel, for every child item in it.- Author:
- Christopher Mindus
 
- Nested Class Summary- Nested classes/interfaces inherited from interface com.iizix.gyro.IMessageBox- IMessageBox.Icon
 
 - Field Summary- Fields inherited from interface com.iizix.gyro.IMessageBox- ICON_ERROR, ICON_INFORMATION, ICON_MAP, ICON_NONE, ICON_QUESTION, ICON_WARNING
 
 - Constructor Summary- Constructors - Constructor - Description - UIFocusEvent(UIComp source, UIComp opposite, boolean isFocusGained)Constructs the event for a change without a trigger source.- UIFocusEvent(UIComp source, UIComp opposite, boolean isFocusGained, GProp<?> trigger)Constructs the event for a change event with a property being the trigger source, e.g.
 - Method Summary- All Methods Instance Methods Concrete Methods - Modifier and Type - Method - Description - UIComp- getOpposite()Gets the opposite component for the focus operation, i.e.- UIComp- getSource()Gets the UI component that is the source of the event, i.e.- GProp<?>- getTrigger()Gets the trigger property being the source of the event.- boolean- isFocusGained()Returns if this is the focus gained operation.- boolean- isFocusLost()Returns if this is the focus lost operation.- protected java.lang.String- paramString()Gets the parameter string.- Methods inherited from class com.iizix.api.ui.UIBaseEvent- getAppSessionGyro, getClientSessionGyro, getContainerFirstUIComponent, getContainerFirstUIComponentNull, getFirstUIComponent, getFirstUIComponentNull, getPanelUIComponent, getPanelUIComponentNull, getUIPanel, getVirtualSpace
 - Methods inherited from class com.iizix.api.BaseEvent- getAction, getAction2, getActionNull, getActionNull2, getField, getField2, getFieldNull, getFieldNull2, getGroup, getGroup2, getGroupNull, getGroupNull2, getTable, getTable2, getTableNull, getTableNull2, getTime, getVirtualizedVirtualSpace, getVSComponent, getVSComponent2, getVSComponentNull, getVSComponentNull2, messageBox, toString
 - Methods inherited from class java.lang.Object- clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - Methods inherited from interface com.iizix.gyro.IMessageBox- messageBox, messageBox
 
 
- Constructor Detail- UIFocusEvent- public UIFocusEvent(UIComp source, UIComp opposite, boolean isFocusGained) Constructs the event for a change without a trigger source.- Parameters:
- source- The source.
- isFocusGained- Flag indicating focus was gained.
- Throws:
- java.lang.NullPointerException- If the source is null.
 
 - UIFocusEvent- public UIFocusEvent(UIComp source, UIComp opposite, boolean isFocusGained, GProp<?> trigger) Constructs the event for a change event with a property being the trigger source, e.g. an UIButton or UICheckBox.- Parameters:
- source- The source.
- isFocusGained- Flag indicating focus was gained.
- trigger- The trigger property.
 
 
 - Method Detail- getTrigger- public GProp<?> getTrigger() Gets the trigger property being the source of the event.- Returns:
- An instance of e.g. an UIButton, UICheckBox, a VS component or null if the trigger is not a property.
 
 - getSource- public UIComp getSource() Gets the UI component that is the source of the event, i.e. the item that gains or loses focus.
 - getOpposite- public UIComp getOpposite() Gets the opposite component for the focus operation, i.e. if the operation is FocusGained, the opposite component is the one losing focus, and if the operation is FocusLost, the opposite component is the component gaining focus.- Returns:
- The opposite component, or nullfor none.
 
 - isFocusGained- public boolean isFocusGained() Returns if this is the focus gained operation.- Returns:
- trueif this is focus gained,- falsefor focus lost.
 
 - isFocusLost- public boolean isFocusLost() Returns if this is the focus lost operation.- Returns:
- trueif this is focus lost,- falsefor focus gained.
 
 - paramString- protected java.lang.String paramString() Gets the parameter string.- Overrides:
- paramStringin class- BaseEvent<UIComp>