Uses of Interface
plugins.adufour.vars.gui.model.VarEditorModel

Packages that use VarEditorModel
plugins.adufour.ezplug   
plugins.adufour.vars.gui.model   
plugins.adufour.vars.lang   
 

Uses of VarEditorModel in plugins.adufour.ezplug
 

Constructors in plugins.adufour.ezplug with parameters of type VarEditorModel
EzVar(Var<T> variable, VarEditorModel<T> constraint)
          Constructs a new variable
EzVarNumeric(Var<N> variable, VarEditorModel<N> constraint)
           
 

Uses of VarEditorModel in plugins.adufour.vars.gui.model
 

Classes in plugins.adufour.vars.gui.model that implement VarEditorModel
 class DoubleRangeModel
           
 class FileTypeListModel
           
 class FileTypeModel
           
 class FloatRangeModel
           
 class IntegerRangeModel
           
 class RangeModel<N extends Number>
          Generic model used to design graphical editors for numeric variables
 class SwimmingObjectTypeModel<T>
           
 class TypeSelectionModel
           
 class ValueSelectionModel<T>
          Variable constraint that only allows to choose from a specified set of values
 

Uses of VarEditorModel in plugins.adufour.vars.lang
 

Methods in plugins.adufour.vars.lang that return VarEditorModel
 VarEditorModel<T> Var.getDefaultEditorModel()
           
 

Methods in plugins.adufour.vars.lang with parameters of type VarEditorModel
 void VarMutable.setDefaultEditorModel(VarEditorModel model)
           
 void Var.setDefaultEditorModel(VarEditorModel<T> model)
          Sets a default VarEditorModel object which can be used to generate a graphical editor for this variable.
 

Constructors in plugins.adufour.vars.lang with parameters of type VarEditorModel
Var(java.lang.String name, VarEditorModel<T> editorModel)
          Creates a new Variable with the specified name and editor model.
VarNumber(java.lang.String name, VarEditorModel<N> model)