File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ import static jce.properties.TextProperty.WRAPPER_SUFFIX
1919import org.eclipse.emf.ecore.InternalEObject
2020import org.eclipse.emf.ecore.EObject
2121import org.eclipse.emf.common.notify.Notifier
22- import jce.util.IntermediateModelSearcher
2322import eme.model.IntermediateModel
2423import org.eclipse.emf.ecore.EStructuralFeature
24+ import jce.util.IntermediateModelUtil
2525
2626/**
2727 * This class models a wrapper class which unifies an origin code type with its Ecore counterparts in the Ecore model
@@ -217,7 +217,7 @@ class WrapperRepresentation {
217217
218218 def private String getGenericArguments(EStructuralFeature feature) {
219219 var String result = ""
220- for (argument : IntermediateModelSearcher .findField(feature, model).genericArguments) {
220+ for (argument : IntermediateModelUtil .findField(feature, model).genericArguments) {
221221 result += argument.typeString
222222 }
223223 return result
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import org.eclipse.emf.ecore.EPackage
1212/**
1313 * Utility for finding the counterparts of Ecore elements in an intermediate model.
1414 */
15- final class IntermediateModelSearcher {
15+ final class IntermediateModelUtil {
1616
1717 private new () {
1818 throw new AssertionError (" Suppress default constructor for noninstantiability" )
You can’t perform that action at this time.
0 commit comments