Package com.luciad.beans
Interface ILcdCustomizerComponentBuilder
- All Known Implementing Classes:
TLcdXMLCustomizerComponentBuilder
Deprecated.
Use a UI builder (e.g. Swing) or binding framework instead.
This interface specifies classes that build the
Component of a Customizer.-
Method Summary
Modifier and TypeMethodDescriptionvoidbuildProperty(PropertyDescriptor aPropertyDescriptor, PropertyEditor aPropertyEditor, Component aPropertyEditorComponent) Deprecated.Build a property.Deprecated.Returns theComponentthis builder has build.Deprecated.Returns the help id string that is associated with the component getCustomizerComponent().voidstartBuilding(Object aBean, BeanDescriptor aBeanDescriptor) Deprecated.Indicates that we want to start building theComponentof ourCustomizer.voidDeprecated.Indicates that building if finished.
-
Method Details
-
startBuilding
Deprecated.Indicates that we want to start building theComponentof ourCustomizer.- Parameters:
aBean- The bean this customizer will serve for.aBeanDescriptor- The bean descriptor of that bean, or null if no descriptor is available.
-
buildProperty
void buildProperty(PropertyDescriptor aPropertyDescriptor, PropertyEditor aPropertyEditor, Component aPropertyEditorComponent) Deprecated.Build a property.- Parameters:
aPropertyDescriptor- ThePropertyDescriptorof the property to buildaPropertyEditor- ThePropertyEditorof the property to buildaPropertyEditorComponent- TheComponentused to represent the property to build
-
stopBuilding
void stopBuilding()Deprecated.Indicates that building if finished. Implementations can use this method to perform cleaning tasks, remove temporary data structures, ... -
getCustomizerComponent
Component getCustomizerComponent()Deprecated.Returns theComponentthis builder has build. Can only be used after stopBuilding() is invoked.- Returns:
- the
Componentthis builder has build.
-
getHelpIDString
String getHelpIDString()Deprecated.Returns the help id string that is associated with the component getCustomizerComponent().- Returns:
- The help ID for context sensitive help for getCustomizerComponent(), or null if no such help id is available.
-