public interface ComponentTuple
Represents the created GUI components for a form component. If the installer or uninstaller is running in GUI mode, the framework will call the createLeftComponent, createCenterComponent and createRightComponent of a form component after instantiating it. These three components of which the left and right components may be null form the component tuple of the form component.
A component tuple can be obtained for every form component via the form environment.
FormEnvironment.getComponentTuple(FormComponent)
Method Summary | |
---|---|
javax.swing.JComponent |
getCenterComponent()
Return the center GUI component created by FormComponent.createCenterComponent. |
javax.swing.JComponent |
getLeftComponent()
Return the left GUI component created by FormComponent.createLeftComponent. |
javax.swing.JComponent |
getRightComponent()
Return the right GUI component created by FormComponent.createRightComponent. |
Method Detail |
---|
javax.swing.JComponent getLeftComponent()
FormComponent.createLeftComponent()
javax.swing.JComponent getCenterComponent()
FormComponent.createCenterComponent()
javax.swing.JComponent getRightComponent()
FormComponent.createRightComponent()