Uses of Class
plugins.adufour.ezplug.EzComponent

Packages that use EzComponent
plugins.adufour.ezplug   
 

Uses of EzComponent in plugins.adufour.ezplug
 

Subclasses of EzComponent in plugins.adufour.ezplug
 class EzButton
          Class defining a button for use with EzPlugs.
 class EzGroup
          Class defining a group of EzComponents, which will appear in the interface within a titled box.
 class EzLabel
          Class defining a text label for use with EzPlugs.
 class EzVar<T>
          Class defining a variable for use within an EzPlug.

EzVar objects are powerful components that bind each parameter type to a specific graphical component that can be used to receive input from the user interface.
 class EzVarBoolean
          Boolean variable for the ezPlug framework.
 class EzVarChannelPicker
           
 class EzVarDimensionPicker
           
 class EzVarDouble
          Specialized implementation of EzVarNumeric for variables of type double
 class EzVarDoubleArray
          Deprecated. use EzVarDoubleArrayNative instead (optimized performances)
 class EzVarDoubleArrayNative
          Double arrays
 class EzVarEnum<E extends Enum<E>>
          Class defining a enumeration type variable.
 class EzVarFile
          Class defining a variable of type String, embarking a button triggering a file dialog as graphical component
 class EzVarFileArray
          Class defining a variable of type String, embarking a button triggering a file dialog as graphical component
 class EzVarFloat
          Specialized implementation of EzVarNumeric for variables of type float
 class EzVarFloatArray
          Deprecated. use EzVarFloatArrayNative instead (optimized performances)
 class EzVarFloatArrayNative
          Float arrays
 class EzVarFolder
           
 class EzVarInteger
          Specialized implementation of EzVarNumeric for variables of type integer
 class EzVarIntegerArray
          Deprecated. use EzVarIntegerArrayNative instead (optimized performances)
 class EzVarIntegerArrayNative
          Integer arrays
 class EzVarNumeric<N extends Number>
          Superclass of all variables holding a number-type variable.
 class EzVarPlugin<P extends Plugin>
          New variable displaying a list of plug-ins of a given type
 class EzVarSequence
          Class defining a sequence type variable which displays as a combo box where the user may choose among all open sequences
 class EzVarSwimmingObject<T>
           
 class EzVarText
          Class defining a variable of type String, embarking a textfield as graphical component
 

Fields in plugins.adufour.ezplug with type parameters of type EzComponent
 java.util.List<EzComponent> EzGroup.components
           
 

Methods in plugins.adufour.ezplug that return types with arguments of type EzComponent
 java.util.Iterator<EzComponent> EzGroup.iterator()
           
 

Methods in plugins.adufour.ezplug with parameters of type EzComponent
 void EzGroup.addEzComponent(EzComponent... ezComponents)
          Adds the specified EzComponents to this group
protected  void EzPlug.addEzComponent(EzComponent component)
          Adds a graphical component to the interface.
 void EzDialog.addEzComponent(EzComponent component)
           
 void EzGUI.addEzComponent(EzComponent component, boolean isSingle)
           
protected  void EzDialog.addEzComponent(EzComponent component, boolean isSingle)
           
 void EzVar.addVisibilityTriggerTo(EzComponent targetComponent, T... values)
          Sets a visibility trigger on the target EzComponent.
 

Constructors in plugins.adufour.ezplug with parameters of type EzComponent
EzGroup(java.lang.String groupTitle, EzComponent... ezComponents)
          Creates a new EzGroup with the given box title and set of ezComponents.