public interface IFormWidgetBuilder
This interface can be realized by client developers to customize the way that the EclipseUIWidgetFactory renders Forms for the user. Realizations of this interface should be registered as an OSGi Declarative service.
IFormWidgetBuilders must provide the name of the Form that they are meant to render. This requires that a Form with that name exist for the IFormWidget that the Builder creates to work properly. Thus, if no Form with the target name does not exist, the Builder should never be called.
Modifier and Type | Method and Description |
---|---|
IFormWidget |
build()
This operation builds the IFormWidget.
|
java.lang.String |
getTargetFormName()
This operation returns the name of the target Form that the Builder will render.
|
java.lang.String getTargetFormName()
This operation returns the name of the target Form that the Builder will render.
The name of the Form.
IFormWidget build()
This operation builds the IFormWidget.
The specialized IFormWidget from the service.