Package adams.gui.core
Class BaseTabbedPaneWithTabHiding.PageBackup<T>
- java.lang.Object
-
- adams.gui.core.BaseTabbedPaneWithTabHiding.PageBackup<T>
-
- Type Parameters:
T
- the type of object to store
- All Implemented Interfaces:
Serializable
- Enclosing class:
- BaseTabbedPaneWithTabHiding
public static class BaseTabbedPaneWithTabHiding.PageBackup<T> extends Object implements Serializable
Container for backing up hidden tabs.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PageBackup(String title, Icon icon, T payload, String tip)
Initializes the backup container.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Icon
getIcon()
Returns the icon of the tab.T
getPayload()
Returns the payload of the tab.String
getTip()
Returns the tip of the tab.String
getTitle()
Returns the title of the tab.
-
-
-
Method Detail
-
getIcon
public Icon getIcon()
Returns the icon of the tab.- Returns:
- the icon
-
getPayload
public T getPayload()
Returns the payload of the tab.- Returns:
- the payload
-
getTip
public String getTip()
Returns the tip of the tab.- Returns:
- the tip
-
getTitle
public String getTitle()
Returns the title of the tab.- Returns:
- the title
-
-