Package com.iizigo.prop.editor
Class StringMapPropEditor
- java.lang.Object
- com.iizigo.prop.BaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
- com.iizigo.prop.editor.StringMapPropEditor
- All Implemented Interfaces:
IEditedPropControllerOwner<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
,IEditedPropertyEntry<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
,IEditedPropertyEntryMultiProp<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
,IPropertyDefined
public class StringMapPropEditor extends BaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
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 StringMapPropEditor()
Default constructor called before createControls.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
create()
Creates the property editor controls.java.lang.String
formatValue(java.util.Map<java.lang.String,java.lang.String> value)
Formats the value for user input as a String.java.util.Map<java.lang.String,java.lang.String>
getDefaultValue()
Gets the default defined value to set in the property when defined.protected java.lang.String
getToolTipText()
Gets the tooltip text to display in the entry fields (not the one for property errors or validator).protected java.util.Map<java.lang.String,java.lang.String>
getValue(java.lang.String input)
Gets the property value for a user input.void
onMore()
Called when the "more..." button is pressed.void
onUndefined()
Called when undefined.void
onUpdate(java.util.Map<java.lang.String,java.lang.String> map)
Called when a property event has been fired and the edited entry needs to be updated.protected void
setColors(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:
create
in classBaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
setColors
protected void setColors(org.eclipse.swt.widgets.Control... additional)
Sets the colors for the controls depending on error, focus and define state.- Overrides:
setColors
in classBaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
onMore
public void onMore()
Called when the "more..." button is pressed. Override to display drop-down menu.- Overrides:
onMore
in classBaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
onUndefined
public void onUndefined()
Called when undefined.- Specified by:
onUndefined
in interfaceIEditedPropControllerOwner<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
- Overrides:
onUndefined
in classBaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
onUpdate
public void onUpdate(java.util.Map<java.lang.String,java.lang.String> map)
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:
onUpdate
in interfaceIEditedPropControllerOwner<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
- Overrides:
onUpdate
in classBaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
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:
getToolTipText
in classBaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
getDefaultValue
public java.util.Map<java.lang.String,java.lang.String> getDefaultValue()
Gets the default defined value to set in the property when defined.- Specified by:
getDefaultValue
in interfaceIEditedPropControllerOwner<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
- Specified by:
getDefaultValue
in classBaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
getValue
protected java.util.Map<java.lang.String,java.lang.String> getValue(java.lang.String input) throws java.lang.Exception
Gets the property value for a user input.- Specified by:
getValue
in classBaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
- 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.util.Map<java.lang.String,java.lang.String> value)
Formats the value for user input as a String.- Specified by:
formatValue
in interfaceIEditedPropControllerOwner<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
- Specified by:
formatValue
in classBaseEditor<StringMapProp,java.util.Map<java.lang.String,java.lang.String>>
- Parameters:
value
- The value.- Returns:
- The formatted value.