Skip to content

Commit 1ece930

Browse files
committed
EDIT: Adapted references after renaming.
1 parent 0bbf9e6 commit 1ece930

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/jce/generators/WrapperRepresentation.xtend

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import static jce.properties.TextProperty.WRAPPER_SUFFIX
1919
import org.eclipse.emf.ecore.InternalEObject
2020
import org.eclipse.emf.ecore.EObject
2121
import org.eclipse.emf.common.notify.Notifier
22-
import jce.util.IntermediateModelSearcher
2322
import eme.model.IntermediateModel
2423
import 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

src/main/java/jce/util/IntermediateModelUtil.xtend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)