Package net.anwiba.commons.swing.object
Interface IObjectFieldConfiguration<T>
-
- All Known Implementing Classes:
AbstractObjectTextFieldConfiguration,DefaultObjectFieldConfiguration,ObjectFieldConfiguration
public interface IObjectFieldConfiguration<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<IActionFactory<T>>getActionFactorys()java.awt.ColorgetBackgroundColor()java.util.Collection<IButtonFactory<T>>getButtonFactorys()ICharFiltergetCharacterFilter()intgetColumns()IBooleanModelgetEnabledModel()IKeyListenerFactory<T>getKeyListenerFactory()IObjectModel<T>getModel()IConverter<java.lang.String,T,java.lang.RuntimeException>getToObjectConverter()IToolTipFactorygetToolTipFactory()IConverter<T,java.lang.String,java.lang.RuntimeException>getToStringConverter()IObjectModel<IValidationResult>getValidationResultModel()IValidator<java.lang.String>getValidator()booleanisDisguise()booleanisEditable()
-
-
-
Method Detail
-
getValidator
IValidator<java.lang.String> getValidator()
-
getToObjectConverter
IConverter<java.lang.String,T,java.lang.RuntimeException> getToObjectConverter()
-
getToStringConverter
IConverter<T,java.lang.String,java.lang.RuntimeException> getToStringConverter()
-
getColumns
int getColumns()
-
isEditable
boolean isEditable()
-
getToolTipFactory
IToolTipFactory getToolTipFactory()
-
getModel
IObjectModel<T> getModel()
-
getValidationResultModel
IObjectModel<IValidationResult> getValidationResultModel()
-
getActionFactorys
java.util.Collection<IActionFactory<T>> getActionFactorys()
-
getBackgroundColor
java.awt.Color getBackgroundColor()
-
getKeyListenerFactory
IKeyListenerFactory<T> getKeyListenerFactory()
-
getCharacterFilter
ICharFilter getCharacterFilter()
-
getEnabledModel
IBooleanModel getEnabledModel()
-
getButtonFactorys
java.util.Collection<IButtonFactory<T>> getButtonFactorys()
-
isDisguise
boolean isDisguise()
-
-