Class AbstractApacheCommonsExifTagOperation<I,O>
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.flow.transformer.exiftagoperation.AbstractExifTagOperation<I,O>
-
- adams.flow.transformer.exiftagoperation.AbstractApacheCommonsExifTagOperation<I,O>
-
- All Implemented Interfaces:
Destroyable,GlobalInfoSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,QuickInfoSupporter,SizeOfHandler,ExifTagOperation<I,O>,Serializable
- Direct Known Subclasses:
ApacheCommonsExifTagExists,ApacheCommonsExifTagRead,ApacheCommonsExifTagRemove,ApacheCommonsExifTagWrite
public abstract class AbstractApacheCommonsExifTagOperation<I,O> extends AbstractExifTagOperation<I,O>
Ancestor for EXIF tag operations using the Apache Commons Imaging library.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected ExifTagEnum.Itemm_Tagthe tag to process.-
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 AbstractApacheCommonsExifTagOperation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddefineOptions()Adds options to the internal list of options.StringgetQuickInfo()Returns a quick info about the object, which can be displayed in the GUI.ExifTagEnum.ItemgetTag()Returns the tag to process.voidsetTag(ExifTagEnum.Item value)Sets the tag to process.StringtagTipText()Returns the tip text for this property.-
Methods inherited from class adams.flow.transformer.exiftagoperation.AbstractExifTagOperation
accepts, check, doProcess, generates, process
-
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
-
-
-
-
Field Detail
-
m_Tag
protected ExifTagEnum.Item m_Tag
the tag to process.
-
-
Method Detail
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceOptionHandler- Overrides:
defineOptionsin classAbstractOptionHandler
-
setTag
public void setTag(ExifTagEnum.Item value)
Sets the tag to process.- Parameters:
value- the tag
-
getTag
public ExifTagEnum.Item getTag()
Returns the tag to process.- Returns:
- the tag
-
tagTipText
public String tagTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
getQuickInfo
public String getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.- Specified by:
getQuickInfoin interfaceQuickInfoSupporter- Overrides:
getQuickInfoin classAbstractExifTagOperation<I,O>- Returns:
- null if no info available, otherwise short string
-
-