1 7 package Olj; 8 9 import org.eclipse.emf.common.util.EList; 10 11 import org.eclipse.emf.ecore.EObject; 12 13 34 public interface TransformationType extends EObject { 35 49 EList getSourceColumns(); 50 51 65 EList getTargetColumns(); 66 67 81 JavaScriptType getJavaScript(); 82 83 91 void setJavaScript(JavaScriptType value); 92 93 107 String getName(); 108 109 117 void setName(String value); 118 119 133 String getTransformatorClassName(); 134 135 143 void setTransformatorClassName(String value); 144 145 159 String getTransformatorConfig(); 160 161 169 void setTransformatorConfig(String value); 170 171 } | Popular Tags |