Class AbstractProcessColumn
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.visualization.instances.instancestable.AbstractProcessColumn
-
- All Implemented Interfaces:
adams.core.Destroyable
,adams.core.GlobalInfoSupporter
,adams.core.logging.LoggingLevelHandler
,adams.core.logging.LoggingSupporter
,adams.core.option.OptionHandler
,adams.core.SizeOfHandler
,adams.gui.core.spreadsheettable.TableRowRangeCheck
,InstancesTablePopupMenuItem
,ProcessColumn
,Serializable
,Comparable<InstancesTablePopupMenuItem>
- Direct Known Subclasses:
AttributeStatistics
,ChangeAttributeWeight
,ColumnStatistic
,DataSort
public abstract class AbstractProcessColumn extends adams.core.option.AbstractOptionHandler implements ProcessColumn
Ancestor for plugins that process a column.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractProcessColumn()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected String
check(InstancesTablePopupMenuItemHelper.TableState state)
Hook method for checks before attempting processing.int
compareTo(InstancesTablePopupMenuItem o)
For sorting the menu items.protected abstract boolean
doProcessColumn(InstancesTablePopupMenuItemHelper.TableState state)
Processes the specified column.String
getIconName()
Returns the name of the icon.boolean
isAvailable(InstancesTablePopupMenuItemHelper.TableState state)
Returns whether the menu item is available.boolean
processColumn(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
-
-
-
-
Method Detail
-
compareTo
public int compareTo(InstancesTablePopupMenuItem o)
For sorting the menu items.- Specified by:
compareTo
in 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:
getIconName
in interfaceInstancesTablePopupMenuItem
- Returns:
- the name, null if none available
-
isAvailable
public boolean isAvailable(InstancesTablePopupMenuItemHelper.TableState state)
Returns whether the menu item is available.- Specified by:
isAvailable
in 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
-
doProcessColumn
protected abstract boolean doProcessColumn(InstancesTablePopupMenuItemHelper.TableState state)
Processes the specified column.- Parameters:
state
- the table state- Returns:
- true if successful
-
processColumn
public boolean processColumn(InstancesTablePopupMenuItemHelper.TableState state)
Processes the specified column.- Specified by:
processColumn
in interfaceProcessColumn
- Parameters:
state
- the table state- Returns:
- true if successful
-
-