Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.osbp.xtext.datainterchange/emf-gen/org/eclipse/osbp/xtext/datainterchange/DataInterchangeLookupMapping.java')
-rw-r--r--org.eclipse.osbp.xtext.datainterchange/emf-gen/org/eclipse/osbp/xtext/datainterchange/DataInterchangeLookupMapping.java63
1 files changed, 63 insertions, 0 deletions
diff --git a/org.eclipse.osbp.xtext.datainterchange/emf-gen/org/eclipse/osbp/xtext/datainterchange/DataInterchangeLookupMapping.java b/org.eclipse.osbp.xtext.datainterchange/emf-gen/org/eclipse/osbp/xtext/datainterchange/DataInterchangeLookupMapping.java
new file mode 100644
index 0000000..16d195f
--- /dev/null
+++ b/org.eclipse.osbp.xtext.datainterchange/emf-gen/org/eclipse/osbp/xtext/datainterchange/DataInterchangeLookupMapping.java
@@ -0,0 +1,63 @@
+/**
+ * Copyright (c) 2014, Loetz GmbH&Co.KG (Heidelberg)
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License 2.0
+ * which accompanies this distribution, and is available at
+ * https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Based on ideas from Xtext, Xtend, Xcore
+ *
+ * Contributors:
+ * Joerg Riegel - Initial implementation
+ *
+ */
+package org.eclipse.osbp.xtext.datainterchange;
+
+import org.eclipse.osbp.dsl.semantic.entity.LEntityReference;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Data Interchange Lookup Mapping</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * </p>
+ * <ul>
+ * <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeLookupMapping#getLookupReference <em>Lookup Reference</em>}</li>
+ * </ul>
+ *
+ * @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeLookupMapping()
+ * @model
+ * @generated
+ */
+public interface DataInterchangeLookupMapping extends DataInterchangeMapping {
+ /**
+ * Returns the value of the '<em><b>Lookup Reference</b></em>' reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Lookup Reference</em>' reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Lookup Reference</em>' reference.
+ * @see #setLookupReference(LEntityReference)
+ * @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeLookupMapping_LookupReference()
+ * @model
+ * @generated
+ */
+ LEntityReference getLookupReference();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeLookupMapping#getLookupReference <em>Lookup Reference</em>}' reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Lookup Reference</em>' reference.
+ * @see #getLookupReference()
+ * @generated
+ */
+ void setLookupReference(LEntityReference value);
+
+} // DataInterchangeLookupMapping

Back to the top