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 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.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturn the center GUI component created byFormComponent.createCenterComponent.Return the left GUI component created byFormComponent.createLeftComponent.Return the right GUI component created byFormComponent.createRightComponent.
-
Method Details
-
getLeftComponent
JComponent getLeftComponent()Return the left GUI component created byFormComponent.createLeftComponent.- Returns:
- the left GUI component
- See Also:
-
getCenterComponent
JComponent getCenterComponent()Return the center GUI component created byFormComponent.createCenterComponent.- Returns:
- the center GUI component
- See Also:
-
getRightComponent
JComponent getRightComponent()Return the right GUI component created byFormComponent.createRightComponent.- Returns:
- the right GUI component
- See Also:
-