Class AbstractAnnotationCheck
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.visualization.object.objectannotations.check.AbstractAnnotationCheck
-
- All Implemented Interfaces:
Destroyable
,GlobalInfoSupporter
,LoggingLevelHandler
,LoggingSupporter
,OptionHandler
,QuickInfoSupporter
,SizeOfHandler
,AnnotationCheck
,Serializable
- Direct Known Subclasses:
MultiCheck
,PassThrough
,RequireMetaData
public abstract class AbstractAnnotationCheck extends AbstractOptionHandler implements AnnotationCheck
Ancestor for annotation checks.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
m_Enabled
whether the check is enabled.-
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 AbstractAnnotationCheck()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected String
check(LocatedObjects objects)
Hook method for checks.String
checkAnnotations(LocatedObjects objects)
Checks the annotations.void
defineOptions()
Adds options to the internal list of options.protected abstract String
doCheckAnnotations(LocatedObjects objects)
Checks the annotations.protected abstract int[]
doFindInvalidAnnotationsIndices(LocatedObjects objects)
Checks the annotations and returns the indices of the invalid ones.String
enabledTipText()
Returns the tip text for this property.int[]
findInvalidAnnotationsIndices(LocatedObjects objects)
Checks the annotations and returns the indices of the invalid ones.protected String
generateQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.boolean
getEnabled()
Returns whether the check is enabled.String
getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.void
setEnabled(boolean value)
Sets whether the check is enabled.-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, 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.core.Destroyable
destroy
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptions
in interfaceOptionHandler
- Overrides:
defineOptions
in classAbstractOptionHandler
-
setEnabled
public void setEnabled(boolean value)
Sets whether the check is enabled.- Parameters:
value
- true if enabled
-
getEnabled
public boolean getEnabled()
Returns whether the check is enabled.- Returns:
- true if enabled
-
enabledTipText
public String enabledTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
generateQuickInfo
protected String generateQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.
Default implementation returns null.- Returns:
- null if no info available, otherwise short string
-
getQuickInfo
public String getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.- Specified by:
getQuickInfo
in interfaceQuickInfoSupporter
- Returns:
- null if no info available, otherwise short string
-
check
protected String check(LocatedObjects objects)
Hook method for checks.- Parameters:
objects
- the annotations to check- Returns:
- null if checks passed, otherwise error message
-
doCheckAnnotations
protected abstract String doCheckAnnotations(LocatedObjects objects)
Checks the annotations.- Parameters:
objects
- the annotations to check- Returns:
- null if checks passed, otherwise error message
-
checkAnnotations
public String checkAnnotations(LocatedObjects objects)
Checks the annotations.- Specified by:
checkAnnotations
in interfaceAnnotationCheck
- Parameters:
objects
- the annotations to check- Returns:
- null if checks passed, otherwise error message
-
doFindInvalidAnnotationsIndices
protected abstract int[] doFindInvalidAnnotationsIndices(LocatedObjects objects)
Checks the annotations and returns the indices of the invalid ones.- Parameters:
objects
- the annotations to check- Returns:
- the invalid indices, 0-length array if no invalid ones
-
findInvalidAnnotationsIndices
public int[] findInvalidAnnotationsIndices(LocatedObjects objects)
Checks the annotations and returns the indices of the invalid ones.- Specified by:
findInvalidAnnotationsIndices
in interfaceAnnotationCheck
- Parameters:
objects
- the annotations to check- Returns:
- the invalid indices, 0-length array if no invalid ones
-
-