Package com.iizigo.prop.editor
Class DurationPropEditor
- java.lang.Object
- com.iizigo.prop.BaseEditor<LongProp,java.lang.Long>
- com.iizigo.prop.editor.DurationPropEditor
- All Implemented Interfaces:
IEditedPropControllerOwner<LongProp,java.lang.Long>,IEditedPropertyEntry<LongProp,java.lang.Long>,IEditedPropertyEntryMultiProp<LongProp,java.lang.Long>,IPropertyDefined
public class DurationPropEditor extends BaseEditor<LongProp,java.lang.Long>
The Duration property editor that uses a Long value for the duration in milliseconds.- Author:
- Christopher Mindus
Field Summary
Fields inherited from class com.iizigo.prop.BaseEditor
appUI, combo, control, controller, definedButton, display, editor, focusListener, hasBeenModified, info, more, multipleValueWarningInput, options, parent, propController, shell, text, validator, wasDefinedAtFocusGained
Constructor Summary
Constructors Constructor Description DurationPropEditor()Default constructor called before createControls.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcreate()Creates the property editor controls.java.lang.StringformatValue(java.lang.Long value)Formats the value for user input as a String.java.lang.LonggetDefaultValue()Gets the default defined value to set in the property when defined.protected java.lang.StringgetToolTipText()Gets the tooltip text to display in the entry fields (not the one for property errors or validator).protected java.lang.LonggetValue(java.lang.String input)Gets the property value for a user input.voidonMore()Called when the "more..." button is pressed.voidonUndefined()Called when undefined.voidonUpdate(java.lang.Long value)Called when a property event has been fired and the edited entry needs to be updated.protected voidsetColors(org.eclipse.swt.widgets.Control... additional)Sets the colors for the controls depending on error, focus and define state.Methods inherited from class com.iizigo.prop.BaseEditor
assignMaster, beginProcessEvent, canProcessEvents, checkInput, createCCombo, createControls, createGridLayout, createIzMenu, createMoreButton, createMoreIzMenu, createText, dispose, doUndefineIfEmpty, doValueChangeConversion, endProcessEvent, getBaseEditor, getCurrentInput, getCurrentValue, getCurrentValues, getModifyListener, getNativeToolTip, getOption, getSelectionListener, getSeverity, getShell, getToolTipText2, hasFocus, initialize, isPropReadOnly, onDefine, onDispose, onDoubleClick, onError, onF4List, onFocusGained, onFocusLost, onReadOnly, setCurrentValue, setEditable, setFocus, setInput, setInputValue, setInputValueFromProp, setToolTipText, showMenu, updateTooltip, validate
Method Detail
create
protected void create()
Creates the property editor controls.- Specified by:
createin classBaseEditor<LongProp,java.lang.Long>
setColors
protected void setColors(org.eclipse.swt.widgets.Control... additional)
Sets the colors for the controls depending on error, focus and define state.- Overrides:
setColorsin classBaseEditor<LongProp,java.lang.Long>
onMore
public void onMore()
Called when the "more..." button is pressed. Override to display drop-down menu.- Overrides:
onMorein classBaseEditor<LongProp,java.lang.Long>
onUndefined
public void onUndefined()
Called when undefined.- Specified by:
onUndefinedin interfaceIEditedPropControllerOwner<LongProp,java.lang.Long>- Overrides:
onUndefinedin classBaseEditor<LongProp,java.lang.Long>
onUpdate
public void onUpdate(java.lang.Long value)
Called when a property event has been fired and the edited entry needs to be updated. This method is also called when setting up the edited entry the first time.- Specified by:
onUpdatein interfaceIEditedPropControllerOwner<LongProp,java.lang.Long>- Overrides:
onUpdatein classBaseEditor<LongProp,java.lang.Long>
getToolTipText
protected java.lang.String getToolTipText()
Gets the tooltip text to display in the entry fields (not the one for property errors or validator).- Specified by:
getToolTipTextin classBaseEditor<LongProp,java.lang.Long>
getDefaultValue
public java.lang.Long getDefaultValue()
Gets the default defined value to set in the property when defined.- Specified by:
getDefaultValuein interfaceIEditedPropControllerOwner<LongProp,java.lang.Long>- Specified by:
getDefaultValuein classBaseEditor<LongProp,java.lang.Long>
getValue
protected java.lang.Long getValue(java.lang.String input) throws java.lang.ExceptionGets the property value for a user input.- Specified by:
getValuein classBaseEditor<LongProp,java.lang.Long>- Parameters:
input- The current user input.- Returns:
- The property value for the input, or null to un-define the property.
- Throws:
java.lang.Exception- For validation errors.
formatValue
public java.lang.String formatValue(java.lang.Long value)
Formats the value for user input as a String.- Specified by:
formatValuein interfaceIEditedPropControllerOwner<LongProp,java.lang.Long>- Specified by:
formatValuein classBaseEditor<LongProp,java.lang.Long>- Parameters:
value- The value.- Returns:
- The formatted value.