Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xpand3.common/emf-gen/org/eclipse/xpand3/staticTypesystem/WildcardType.java')
-rw-r--r--plugins/org.eclipse.xpand3.common/emf-gen/org/eclipse/xpand3/staticTypesystem/WildcardType.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/plugins/org.eclipse.xpand3.common/emf-gen/org/eclipse/xpand3/staticTypesystem/WildcardType.java b/plugins/org.eclipse.xpand3.common/emf-gen/org/eclipse/xpand3/staticTypesystem/WildcardType.java
new file mode 100644
index 00000000..ec783ee9
--- /dev/null
+++ b/plugins/org.eclipse.xpand3.common/emf-gen/org/eclipse/xpand3/staticTypesystem/WildcardType.java
@@ -0,0 +1,61 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id: WildcardType.java,v 1.1 2008/03/17 14:39:20 jkohnlein Exp $
+ */
+package org.eclipse.xpand3.staticTypesystem;
+
+import org.eclipse.emf.common.util.EList;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Wildcard Type</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.xpand3.staticTypesystem.WildcardType#getLowerBounds <em>Lower Bounds</em>}</li>
+ * <li>{@link org.eclipse.xpand3.staticTypesystem.WildcardType#getUpperBounds <em>Upper Bounds</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.xpand3.staticTypesystem.StaticTypesystemPackage#getWildcardType()
+ * @model
+ * @generated
+ */
+public interface WildcardType extends AbstractTypeReference {
+ /**
+ * Returns the value of the '<em><b>Lower Bounds</b></em>' containment reference list.
+ * The list contents are of type {@link org.eclipse.xpand3.staticTypesystem.AbstractTypeReference}.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Lower Bounds</em>' containment reference list isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Lower Bounds</em>' containment reference list.
+ * @see org.eclipse.xpand3.staticTypesystem.StaticTypesystemPackage#getWildcardType_LowerBounds()
+ * @model containment="true"
+ * @generated
+ */
+ EList<AbstractTypeReference> getLowerBounds();
+
+ /**
+ * Returns the value of the '<em><b>Upper Bounds</b></em>' containment reference list.
+ * The list contents are of type {@link org.eclipse.xpand3.staticTypesystem.AbstractTypeReference}.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Upper Bounds</em>' containment reference list isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Upper Bounds</em>' containment reference list.
+ * @see org.eclipse.xpand3.staticTypesystem.StaticTypesystemPackage#getWildcardType_UpperBounds()
+ * @model containment="true"
+ * @generated
+ */
+ EList<AbstractTypeReference> getUpperBounds();
+
+} // WildcardType

Back to the top