Class AbstractProcessCell
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.visualization.instances.instancestable.AbstractProcessCell
-
- All Implemented Interfaces:
Destroyable,GlobalInfoSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,SizeOfHandler,InstancesTablePopupMenuItem,ProcessCell,Serializable,Comparable<InstancesTablePopupMenuItem>
- Direct Known Subclasses:
ViewCell
public abstract class AbstractProcessCell extends AbstractOptionHandler implements ProcessCell
Ancestor for plugins that process a cell.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description AbstractProcessCell()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected Stringcheck(InstancesTablePopupMenuItemHelper.TableState state)Hook method for checks before attempting processing.intcompareTo(InstancesTablePopupMenuItem o)For sorting the menu items.protected abstract booleandoProcessCell(InstancesTablePopupMenuItemHelper.TableState state)Processes the specified cell.StringgetIconName()Returns the name of the icon.booleanisAvailable(InstancesTablePopupMenuItemHelper.TableState state)Returns whether the menu item is available.booleanprocessCell(InstancesTablePopupMenuItemHelper.TableState state)Processes the specified column.-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, defineOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, globalInfo, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.gui.visualization.instances.instancestable.InstancesTablePopupMenuItem
getMenuItem
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
Method Detail
-
compareTo
public int compareTo(InstancesTablePopupMenuItem o)
For sorting the menu items.- Specified by:
compareToin interfaceComparable<InstancesTablePopupMenuItem>- Parameters:
o- the other item- Returns:
- -1 if less than, 0 if equal, +1 if larger than this menu item name
-
getIconName
public String getIconName()
Returns the name of the icon.- Specified by:
getIconNamein interfaceInstancesTablePopupMenuItem- Returns:
- the name, null if none available
-
isAvailable
public boolean isAvailable(InstancesTablePopupMenuItemHelper.TableState state)
Returns whether the menu item is available.- Specified by:
isAvailablein interfaceInstancesTablePopupMenuItem- Parameters:
state- the state to use- Returns:
- true if available
-
check
protected String check(InstancesTablePopupMenuItemHelper.TableState state)
Hook method for checks before attempting processing.- Parameters:
state- the table state- Returns:
- null if passed, otherwise error message
-
doProcessCell
protected abstract boolean doProcessCell(InstancesTablePopupMenuItemHelper.TableState state)
Processes the specified cell.- Parameters:
state- the table state- Returns:
- true if successful
-
processCell
public boolean processCell(InstancesTablePopupMenuItemHelper.TableState state)
Processes the specified column.- Specified by:
processCellin interfaceProcessCell- Parameters:
state- the table state- Returns:
- true if successful
-
-