Package com.luciad.gui
Interface ILcdOkCancelButtonPanel
- All Known Implementing Classes:
TLcdOkCancelButtonPanel
,TLcdOkCancelButtonPanelSW
public interface ILcdOkCancelButtonPanel
Deprecated.
use JOptionPane or another GUI toolkit equivalent instead
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addActionListener
(ActionListener aActionListener) Deprecated.Add aActionListener to all the buttons.Deprecated.Returns the Apply Component.Deprecated.Returns the Cancel Component.Deprecated.Returns the Component.Deprecated.Returns the Help Component.Deprecated.Deprecated.Returns the OK Component.void
removeActionListener
(ActionListener aActionListener) Deprecated.Remove aActionListener to all the buttons.void
setHelpIDString
(String aHelpID) Deprecated.Sets the help id for the button.void
setWindowToDispose
(Window aWindow) Deprecated.Sets aWindow
to dispose with OK or Cancel button.
-
Method Details
-
getComponent
Component getComponent()Deprecated.Returns the Component. -
getApplyButton
Component getApplyButton()Deprecated.Returns the Apply Component. -
getOkButton
Component getOkButton()Deprecated.Returns the OK Component. -
getCancelButton
Component getCancelButton()Deprecated.Returns the Cancel Component. -
getHelpButton
Component getHelpButton()Deprecated.Returns the Help Component. -
getHelpIDString
String getHelpIDString()Deprecated.- Returns:
- The help id string associated with the help button of this panel, default is null.
-
setHelpIDString
Deprecated.Sets the help id for the button. Pressing the help button will have the effect that the help item for the given help id will be displayed. Setting null means to remove the currently help id's. The presence of the help button depends on whether a help id is set or not.- Parameters:
aHelpID
- The help id for the help button.
-
setWindowToDispose
Deprecated.Sets aWindow
to dispose with OK or Cancel button. -
addActionListener
Deprecated.Add aActionListener to all the buttons. -
removeActionListener
Deprecated.Remove aActionListener to all the buttons.
-