Uses of Interface
de.mid.innovator.ui.Property

Packages that use Property
de.mid.innovator.ui The classes in this package can be used to provide transparent user interfaces with a standard mechanism for supporting command line arguments or Java properties. 
 

Uses of Property in de.mid.innovator.ui
 

Classes in de.mid.innovator.ui that implement Property
 class PropertyCfg<T>
          The class is the Property interface default implementation that can be used with Innovator applications.
 

Fields in de.mid.innovator.ui with type parameters of type Property
protected  Map<String,Property> PropertyProviderDefault.confMap
          The list of all configured properties.
 

Methods in de.mid.innovator.ui that return types with arguments of type Property
 List<Property> PropertyProviderDefault.getAllValidProperties()
           
 List<Property> PropertyProvider.getAllValidProperties()
           
 

Methods in de.mid.innovator.ui with parameters of type Property
 int PropertyCfg.compareTo(Property o)
           
static InnovatorApplication InnovatorApplicationDefault.create(Class<? extends InnovatorApplication> cls, Property[] props, String[] args)
           This method should be called in your static main method.
 void PropertyProviderDefault.provideProperty(Property p)
          Adds precisely one property that can be used at runtime.
 void PropertyProvider.provideProperty(Property prop)
          Adds precisely one property that can be used at runtime.
 

Method parameters in de.mid.innovator.ui with type arguments of type Property
 void PropertyProviderDefault.providePropertyList(List<Property> validProps)
          Configures a list of valid properties to be used at runtime.
 void PropertyProvider.providePropertyList(List<Property> props)
          Configures a list of valid properties to be used at runtime.