Class AbstractProcessRow
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.visualization.instances.instancestable.AbstractProcessRow
-
- All Implemented Interfaces:
Destroyable,GlobalInfoSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,SizeOfHandler,InstancesTablePopupMenuItem,ProcessRow,Serializable,Comparable<InstancesTablePopupMenuItem>
- Direct Known Subclasses:
RowStatistic
public abstract class AbstractProcessRow extends AbstractOptionHandler implements ProcessRow
Ancestor for plugins that process a row.- 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 AbstractProcessRow()
-
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 booleandoProcessRow(InstancesTablePopupMenuItemHelper.TableState state)Processes the specified row.StringgetIconName()Returns the name of the icon.booleanisAvailable(InstancesTablePopupMenuItemHelper.TableState state)Returns whether the menu item is available.booleanprocessRow(InstancesTablePopupMenuItemHelper.TableState state)Processes the specified row.-
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
-
doProcessRow
protected abstract boolean doProcessRow(InstancesTablePopupMenuItemHelper.TableState state)
Processes the specified row.- Parameters:
state- the table state- Returns:
- true if successful
-
processRow
public boolean processRow(InstancesTablePopupMenuItemHelper.TableState state)
Processes the specified row.- Specified by:
processRowin interfaceProcessRow- Parameters:
state- the table state- Returns:
- true if successful
-
-