Interface CasProcessorExecArg
-
- All Superinterfaces:
Cloneable
,MetaDataObject
,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 String
getArgValue()
Returns argument valuevoid
setArgValue(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(String aArgValue) throws CpeDescriptorException
Sets argument value.- Parameters:
aArgValue
- - value as string- Throws:
CpeDescriptorException
- tbd
-
getArgValue
String getArgValue() throws CpeDescriptorException
Returns argument value- Returns:
- - String
- Throws:
CpeDescriptorException
- tbd
-
-