Interface CasProcessorExecArg
-
- All Superinterfaces:
java.lang.Cloneable
,MetaDataObject
,java.io.Serializable
,XMLizable
- All Known Implementing Classes:
CasProcessorExecArgImpl
public interface CasProcessorExecArg extends MetaDataObject
An object containing an arbitrary value that will passed to a program launched by the CPE. Used for CasProcessors launched locally.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getArgValue()
Returns argument valuevoid
setArgValue(java.lang.String aArgValue)
Sets argument value.-
Methods inherited from interface org.apache.uima.resource.metadata.MetaDataObject
clone, equals, getAttributeValue, getSourceUrl, getSourceUrlString, isModifiable, listAttributes, setAttributeValue, setSourceUrl
-
Methods inherited from interface org.apache.uima.util.XMLizable
buildFromXMLElement, buildFromXMLElement, toXML, toXML, toXML, toXML
-
-
-
-
Method Detail
-
setArgValue
void setArgValue(java.lang.String aArgValue) throws CpeDescriptorException
Sets argument value.- Parameters:
aArgValue
- - value as string- Throws:
CpeDescriptorException
- tbd
-
getArgValue
java.lang.String getArgValue() throws CpeDescriptorException
Returns argument value- Returns:
- - String
- Throws:
CpeDescriptorException
- tbd
-
-