Class AnalysisProcessData_impl
- java.lang.Object
-
- org.apache.uima.analysis_engine.impl.AnalysisProcessData_impl
-
- All Implemented Interfaces:
AnalysisProcessData
@Deprecated public class AnalysisProcessData_impl extends java.lang.Object implements AnalysisProcessData
Deprecated.since v2.0Reference implementation ofAnalysisProcessData_impl.
-
-
Field Summary
Fields Modifier and Type Field Description protected CASmCASDeprecated.The CAS owned by this AnalysisProcessData.protected ProcessTracemProcessTraceDeprecated.The ProcessTrace owned by this AnalysisProcessData.
-
Constructor Summary
Constructors Constructor Description AnalysisProcessData_impl(CAS aCAS, java.util.Properties aPerformanceTuningSettings)Deprecated.Creates a new AnalysisProcessData_impl from an exsitingCAS.AnalysisProcessData_impl(CAS aCAS, ProcessTrace aTrace)Deprecated.Creates a new AnalysisProcessData_impl from exsitingCAS.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description CASgetCAS()Deprecated.Gets the Common Analysis System (CAS), from which the AnalysisEngine obtains the information to be processed, and to which the AnalysisEngine writes new annotation information.ProcessTracegetProcessTrace()Deprecated.Gets theProcessTraceobject, which is used to record which AnalysisEngine components have executed and information, such as timing, about that execution.voidsetProcessTrace(ProcessTrace aProcessTrace)Deprecated.Sets the ProcessTrace object.
-
-
-
Field Detail
-
mCAS
protected CAS mCAS
Deprecated.The CAS owned by this AnalysisProcessData. This reference does not change during the life of this AnalysisProcessData.
-
mProcessTrace
protected ProcessTrace mProcessTrace
Deprecated.The ProcessTrace owned by this AnalysisProcessData. This reference may change during the life of this AnalysisProcessData. once and does not change.
-
-
Constructor Detail
-
AnalysisProcessData_impl
public AnalysisProcessData_impl(CAS aCAS, ProcessTrace aTrace)
Deprecated.Creates a new AnalysisProcessData_impl from exsitingCAS. andProcessTraceobjects.- Parameters:
aCAS- -aTrace- -
-
AnalysisProcessData_impl
public AnalysisProcessData_impl(CAS aCAS, java.util.Properties aPerformanceTuningSettings)
Deprecated.Creates a new AnalysisProcessData_impl from an exsitingCAS. A newProcessTracewill be created.- Parameters:
aCAS- -aPerformanceTuningSettings- performance tuning settings used to configure ProcessTrace.
-
-
Method Detail
-
getCAS
public CAS getCAS()
Deprecated.Description copied from interface:AnalysisProcessDataGets the Common Analysis System (CAS), from which the AnalysisEngine obtains the information to be processed, and to which the AnalysisEngine writes new annotation information.- Specified by:
getCASin interfaceAnalysisProcessData- Returns:
- a reference to the CAS used by the AnalysisEngine
- See Also:
AnalysisProcessData.getCAS()
-
getProcessTrace
public ProcessTrace getProcessTrace()
Deprecated.Description copied from interface:AnalysisProcessDataGets theProcessTraceobject, which is used to record which AnalysisEngine components have executed and information, such as timing, about that execution.- Specified by:
getProcessTracein interfaceAnalysisProcessData- Returns:
- -
- See Also:
AnalysisProcessData.getProcessTrace()
-
setProcessTrace
public void setProcessTrace(ProcessTrace aProcessTrace)
Deprecated.Sets the ProcessTrace object. This is not available through the AnalysisProcessData interface.- Parameters:
aProcessTrace- -
-
-