Package com.install4j.api.formcomponents
Interface ComponentTuple
-
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 thecreateLeftComponent
,createCenterComponent
andcreateRightComponent
of a form component after instantiating it. These three components of which the left and right components may benull
form the component tuple of the form component.A component tuple can be obtained for every form component via the form environment.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.swing.JComponent
getCenterComponent()
Return the center GUI component created byFormComponent.createCenterComponent
.javax.swing.JComponent
getLeftComponent()
Return the left GUI component created byFormComponent.createLeftComponent
.javax.swing.JComponent
getRightComponent()
Return the right GUI component created byFormComponent.createRightComponent
.
-
-
-
Method Detail
-
getLeftComponent
javax.swing.JComponent getLeftComponent()
Return the left GUI component created byFormComponent.createLeftComponent
.- Returns:
- the left GUI component
- See Also:
FormComponent.createLeftComponent()
-
getCenterComponent
javax.swing.JComponent getCenterComponent()
Return the center GUI component created byFormComponent.createCenterComponent
.- Returns:
- the center GUI component
- See Also:
FormComponent.createCenterComponent()
-
getRightComponent
javax.swing.JComponent getRightComponent()
Return the right GUI component created byFormComponent.createRightComponent
.- Returns:
- the right GUI component
- See Also:
FormComponent.createRightComponent()
-
-