Constructors Summary |
---|
public UnchainedConstructors(String text)Constructor for only the panel name.
setText(text);
String tooltip = new String("A button to show " + text);
setToolTipText(tooltip);
|
public UnchainedConstructors(String text, String tooltip)Constructor for only the tool tip and panel name.
setText(text);
setToolTipText(tooltip);
|
public UnchainedConstructors(String text, String tooltip, ActionListener listener)Constructor for all parameters.
setText(text);
setToolTipText(tooltip);
addActionListener(listener);
|