Uses of Class
plugins.adufour.vars.gui.VarEditor

Packages that use VarEditor
plugins.adufour.ezplug   
plugins.adufour.vars.gui   
plugins.adufour.vars.gui.swing   
plugins.adufour.vars.lang   
 

Uses of VarEditor in plugins.adufour.ezplug
 

Methods in plugins.adufour.ezplug that return VarEditor
protected  VarEditor<T> EzVar.getVarEditor()
           
 

Uses of VarEditor in plugins.adufour.vars.gui
 

Methods in plugins.adufour.vars.gui that return VarEditor
abstract  VarEditor<java.lang.Integer> VarEditorFactory.createButton(VarTrigger variable)
           
abstract  VarEditor<java.lang.Boolean> VarEditorFactory.createCheckBox(Var<java.lang.Boolean> variable)
           
abstract
<V> VarEditor<V>
VarEditorFactory.createComboBox(Var<V> variable)
           
abstract
<V> VarEditor<V>
VarEditorFactory.createLabel(Var<V> variable)
           
abstract  VarEditor<icy.sequence.Sequence> VarEditorFactory.createSequenceChooser(Var<icy.sequence.Sequence> variable)
           
abstract
<N extends java.lang.Number>
VarEditor<N>
VarEditorFactory.createSlider(Var<N> variable)
           
abstract
<N extends java.lang.Number>
VarEditor<N>
VarEditorFactory.createSpinner(Var<N> variable)
           
abstract  VarEditor<icy.swimmingPool.SwimmingObject> VarEditorFactory.createSwimmingObjectChooser(Var<icy.swimmingPool.SwimmingObject> variable)
           
abstract
<V> VarEditor<V>
VarEditorFactory.createTextArea(Var<V> variable, int rows)
           
abstract
<V> VarEditor<V>
VarEditorFactory.createTextField(Var<V> variable)
           
abstract  VarEditor<VarMutable> VarEditorFactory.createTypeChooser(VarMutable variable)
           
 

Uses of VarEditor in plugins.adufour.vars.gui.swing
 

Subclasses of VarEditor in plugins.adufour.vars.gui.swing
 class Button
           
 class ChannelSelector
           
 class CheckBox
           
 class ComboBox<T>
           
 class FileChooser
          File chooser component
 class FilesChooser
          File chooser component for the Vars library.
 class Label<T>
           
 class MutableVarEditor
          Special editor that changes type according to the underlying variable
 class PluginChooser<P extends Plugin>
           
 class SequenceChooser
           
 class SequenceList
          Graphical component representing the list of opened sequence, allowing multiple selected items
 class SequenceViewer
           
 class Slider<N extends Number>
           
 class Spinner<N extends Number>
           
 class SwimmingObjectChooser
           
 class SwingVarEditor<V>
          Swing implementation of the VarEditor
 class TextArea<T>
           
 class TextField<T>
           
 class TypeChooser
           
 

Methods in plugins.adufour.vars.gui.swing that return VarEditor
 VarEditor<java.lang.Integer> SwingFactory.createButton(VarTrigger variable)
           
 VarEditor<java.lang.Boolean> SwingFactory.createCheckBox(Var<java.lang.Boolean> variable)
           
<V> VarEditor<V>
SwingFactory.createComboBox(Var<V> variable)
           
<V> VarEditor<V>
SwingFactory.createLabel(Var<V> variable)
           
 VarEditor<icy.sequence.Sequence> SwingFactory.createSequenceChooser(Var<icy.sequence.Sequence> variable)
           
<N extends java.lang.Number>
VarEditor<N>
SwingFactory.createSlider(Var<N> variable)
           
<N extends java.lang.Number>
VarEditor<N>
SwingFactory.createSpinner(Var<N> variable)
           
 VarEditor<icy.swimmingPool.SwimmingObject> SwingFactory.createSwimmingObjectChooser(Var<icy.swimmingPool.SwimmingObject> variable)
           
<V> VarEditor<V>
SwingFactory.createTextArea(Var<V> variable, int rows)
           
<V> VarEditor<V>
SwingFactory.createTextField(Var<V> variable)
           
 VarEditor<VarMutable> SwingFactory.createTypeChooser(VarMutable variable)
           
 

Uses of VarEditor in plugins.adufour.vars.lang
 

Methods in plugins.adufour.vars.lang that return VarEditor
 VarEditor<java.lang.Integer> VarTrigger.createVarEditor()
           
 VarEditor<icy.swimmingPool.SwimmingObject> VarSwimmingObject.createVarEditor()
           
 VarEditor<java.lang.String> VarString.createVarEditor()
           
 VarEditor<icy.sequence.Sequence[]> VarSequenceArray.createVarEditor()
           
 VarEditor<icy.sequence.Sequence> VarSequence.createVarEditor()
           
 VarEditor<icy.type.point.Point5D> VarPoint5D.createVarEditor()
           
 VarEditor<icy.plugin.PluginDescriptor> VarPlugin.createVarEditor()
           
 VarEditor<N> VarNumber.createVarEditor()
           
 VarEditor VarMutable.createVarEditor()
           
 VarEditor<int[]> VarIntegerArrayNative.createVarEditor()
           
 VarEditor<java.lang.Integer[]> VarIntegerArray.createVarEditor()
          Deprecated.  
 VarEditor<float[]> VarFloatArrayNative.createVarEditor()
           
 VarEditor<java.lang.Float[]> VarFloatArray.createVarEditor()
          Deprecated.  
 VarEditor<java.io.File[]> VarFileArray.createVarEditor()
           
 VarEditor<java.io.File> VarFile.createVarEditor()
           
 VarEditor<double[]> VarDoubleArrayNative.createVarEditor()
           
 VarEditor<java.lang.Double[]> VarDoubleArray.createVarEditor()
          Deprecated.  
 VarEditor<java.lang.Integer> VarChannel.createVarEditor()
           
 VarEditor<java.lang.Boolean> VarBoolean.createVarEditor()
           
 VarEditor<T> Var.createVarEditor()
          Creates a new VarEditor object that allows the user to graphically adjust the value of this variable.
 VarEditor<icy.sequence.Sequence> VarSequence.createVarViewer()
           
 VarEditor VarMutable.createVarViewer()
           
 VarEditor<T> Var.createVarViewer()
          Creates a new VarEditor object that allows the user to view the value of this variable (but not necessarily modify it).