Package org.eclipse.epsilon.etl.trace
Class Transformation
- java.lang.Object
-
- org.eclipse.epsilon.etl.trace.Transformation
-
public class Transformation extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected TransformationRule
rule
protected Object
source
protected Collection<Object>
targets
-
Constructor Summary
Constructors Constructor Description Transformation()
Transformation(Object source, Collection<Object> targets)
Transformation(Object source, Collection<Object> targets, TransformationRule rule)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TransformationRule
getRule()
Object
getSource()
Collection<Object>
getTargets()
boolean
of(Object source)
void
setRule(TransformationRule rule)
void
setSource(Object source)
void
setTargets(Collection<Object> targets)
-
-
-
Field Detail
-
source
protected Object source
-
targets
protected Collection<Object> targets
-
rule
protected TransformationRule rule
-
-
Constructor Detail
-
Transformation
public Transformation()
-
Transformation
public Transformation(Object source, Collection<Object> targets)
-
Transformation
public Transformation(Object source, Collection<Object> targets, TransformationRule rule)
-
-
Method Detail
-
getSource
public Object getSource()
-
setSource
public void setSource(Object source)
-
getTargets
public Collection<Object> getTargets()
-
setTargets
public void setTargets(Collection<Object> targets)
-
of
public boolean of(Object source)
-
getRule
public TransformationRule getRule()
-
setRule
public void setRule(TransformationRule rule)
-
-