public abstract class TraceProcessor extends java.lang.Object implements IMatchProcessor<TraceMatch>
Constructor and Description |
---|
TraceProcessor() |
Modifier and Type | Method and Description |
---|---|
abstract void |
process(java.lang.Object pSource,
java.lang.String pId,
org.eclipse.emf.ecore.EObject pTarget,
Trace pTrace,
java.lang.String pTraceabilityId)
Defines the action that is to be executed on each match.
|
void |
process(TraceMatch match)
Defines the action that is to be executed on each match.
|
public abstract void process(java.lang.Object pSource, java.lang.String pId, org.eclipse.emf.ecore.EObject pTarget, Trace pTrace, java.lang.String pTraceabilityId)
pSource
- the value of pattern parameter source in the currently processed matchpId
- the value of pattern parameter id in the currently processed matchpTarget
- the value of pattern parameter target in the currently processed matchpTrace
- the value of pattern parameter trace in the currently processed matchpTraceabilityId
- the value of pattern parameter traceabilityId in the currently processed matchpublic void process(TraceMatch match)
IMatchProcessor
process
in interface IMatchProcessor<TraceMatch>
match
- a single match of the pattern that must be processed by the implementation of this method