Class AbstractPopupCustomizer<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>
- java.lang.Object
-
- adams.gui.visualization.container.datacontainerpanel.AbstractPopupCustomizer<T,M,C>
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AbstractContainerListPopupCustomizer,AbstractPlotPopupCustomizer
public abstract class AbstractPopupCustomizer<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer> extends Object implements Serializable
Ancestor for customizers for the data container panel.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractPopupCustomizer()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract StringgetGroup()The group this customizer belongs to.abstract StringgetName()The name.abstract booleanhandles(DataContainerPanelWithContainerList<T,M,C> panel)Checks whether this action can handle the panel.
-
-
-
Method Detail
-
getName
public abstract String getName()
The name.- Returns:
- the name
-
getGroup
public abstract String getGroup()
The group this customizer belongs to.- Returns:
- the group
-
handles
public abstract boolean handles(DataContainerPanelWithContainerList<T,M,C> panel)
Checks whether this action can handle the panel.- Parameters:
panel- the panel to check- Returns:
- true if handled
-
-