Uses of Interface
to.etc.domui.component.form.ControlFactory

Packages that use ControlFactory
to.etc.domui.component.form   
to.etc.domui.component.meta   
to.etc.domui.component.meta.impl   
to.etc.domui.server   
 

Uses of ControlFactory in to.etc.domui.component.form
 

Classes in to.etc.domui.component.form that implement ControlFactory
 class ControlFactoryDate
          Accepts the "java.util.Date" type only and creates a DateInput component for it.
 class ControlFactoryEnumAndBool
          Accepts both enum and bools and shows a combobox with the possible choices.
 class ControlFactoryMoney
          Factory which creates a Text input specialized for entering monetary amounts.
 class ControlFactoryRelationCombo
          Accepts any property defined as an UP relation (parent) and score higher if a component type hint is received.
 class ControlFactoryRelationLookup
          Accepts any UP (parent) relation and scores 3, preferring this above the combobox-based lookup.
 class ControlFactoryString
          This is a fallback factory; it accepts anything and shows a String edit component OR a DisplayValue component for it.
 class ControlFactoryTextArea
           
 

Fields in to.etc.domui.component.form declared as ControlFactory
static ControlFactory ControlFactory.BOOLEAN_AND_ENUM_CF
           
static ControlFactory ControlFactory.DATE_CF
           
static ControlFactory ControlFactory.RELATION_COMBOBOX_CF
          Factory for UP relations.
static ControlFactory ControlFactory.RELATION_LOOKUP_CF
           
static ControlFactory ControlFactory.STRING_CF
          This is a fallback factory; it accepts anything and shows a String edit component for it.
static ControlFactory ControlFactory.TEXTAREA_CF
           
 

Methods in to.etc.domui.component.form that return ControlFactory
 ControlFactory ControlBuilder.findControlFactory(PropertyMetaModel<?> pmm, boolean editable, java.lang.Class<?> controlClass, java.lang.Object context)
          Find the best control factory to use to create a control for the given property and mode.
 ControlFactory ControlBuilder.findFactoryByName(java.lang.String name)
          Locate a factory by it's full class name.
 ControlFactory ControlBuilder.getControlFactory(PropertyMetaModel<?> pmm, boolean editable, java.lang.Class<?> controlClass, java.lang.Object context)
          Find the best control factory to use to create a control for the given property and mode, throws an Exception if the factory cannot be found.
 

Methods in to.etc.domui.component.form that return types with arguments of type ControlFactory
protected  java.util.List<ControlFactory> ControlBuilder.getControlFactoryList()
           
 

Methods in to.etc.domui.component.form with parameters of type ControlFactory
 void ControlBuilder.registerControlFactory(ControlFactory cf)
           
 

Uses of ControlFactory in to.etc.domui.component.meta
 

Methods in to.etc.domui.component.meta that return ControlFactory
 ControlFactory PropertyMetaModel.getControlFactory()
          If a specific control factory is to be used to create controls for this item this returns that factory.
 

Uses of ControlFactory in to.etc.domui.component.meta.impl
 

Methods in to.etc.domui.component.meta.impl that return ControlFactory
 ControlFactory PathPropertyMetaModel.getControlFactory()
           
 ControlFactory BasicPropertyMetaModel.getControlFactory()
           
 ControlFactory ExpandedDisplayProperty.getControlFactory()
           
 ControlFactory PropertyMetaModelWrapper.getControlFactory()
           
 

Methods in to.etc.domui.component.meta.impl with parameters of type ControlFactory
 void BasicPropertyMetaModel.setControlFactory(ControlFactory controlFactory)
           
 

Uses of ControlFactory in to.etc.domui.server
 

Methods in to.etc.domui.server with parameters of type ControlFactory
 void DomApplication.registerControlFactory(ControlFactory cf)
          Add a new control factory to the registry.