Package org.eclipse.epsilon.etl.strategy
Class FastTransformationStrategy
- java.lang.Object
-
- org.eclipse.epsilon.etl.strategy.AbstractTransformationStrategy
-
- org.eclipse.epsilon.etl.strategy.FastTransformationStrategy
-
- All Implemented Interfaces:
IEquivalentProvider
,ITransformationStrategy
public class FastTransformationStrategy extends AbstractTransformationStrategy
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<Object,Collection<Object>>
flatTrace
protected Map<Object,Collection<Transformation>>
pendingTransformations
-
Fields inherited from class org.eclipse.epsilon.etl.strategy.AbstractTransformationStrategy
equivalentProvider
-
-
Constructor Summary
Constructors Constructor Description FastTransformationStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
executeTransformations(Collection<Transformation> transformations, IEtlContext context)
Collection<?>
getEquivalents(Object source, IErlContext context_, List<String> rules)
Collection<?>
transform(Object source, IEtlContext context, List<String> rules)
void
transformModels(IEtlContext context)
-
Methods inherited from class org.eclipse.epsilon.etl.strategy.AbstractTransformationStrategy
canTransform, getEquivalentProvider, getExcluded, getExecutableRules, getRulesFor, setEquivalentProvider
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.epsilon.etl.strategy.ITransformationStrategy
getEquivalent, getEquivalent, getEquivalents
-
-
-
-
Field Detail
-
flatTrace
protected Map<Object,Collection<Object>> flatTrace
-
pendingTransformations
protected Map<Object,Collection<Transformation>> pendingTransformations
-
-
Method Detail
-
transform
public Collection<?> transform(Object source, IEtlContext context, List<String> rules) throws EolRuntimeException
- Throws:
EolRuntimeException
-
getEquivalents
public Collection<?> getEquivalents(Object source, IErlContext context_, List<String> rules) throws EolRuntimeException
- Throws:
EolRuntimeException
-
transformModels
public void transformModels(IEtlContext context) throws EolRuntimeException
- Throws:
EolRuntimeException
-
executeTransformations
protected void executeTransformations(Collection<Transformation> transformations, IEtlContext context) throws EolRuntimeException
- Throws:
EolRuntimeException
-
-