Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/declaration/AbstractNamedDeclaration.java')
-rw-r--r--plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/declaration/AbstractNamedDeclaration.java54
1 files changed, 0 insertions, 54 deletions
diff --git a/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/declaration/AbstractNamedDeclaration.java b/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/declaration/AbstractNamedDeclaration.java
deleted file mode 100644
index ca0146af..00000000
--- a/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/declaration/AbstractNamedDeclaration.java
+++ /dev/null
@@ -1,54 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: AbstractNamedDeclaration.java,v 1.2 2008/03/07 11:10:53 jkohnlein Exp $
- */
-package org.eclipse.xpand3.declaration;
-
-import org.eclipse.xpand3.Identifier;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Abstract Named Declaration</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.xpand3.declaration.AbstractNamedDeclaration#getName <em>Name</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.xpand3.declaration.DeclarationPackage#getAbstractNamedDeclaration()
- * @model abstract="true"
- * @generated
- */
-public interface AbstractNamedDeclaration extends AbstractDeclaration {
- /**
- * Returns the value of the '<em><b>Name</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Name</em>' containment reference isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Name</em>' containment reference.
- * @see #setName(Identifier)
- * @see org.eclipse.xpand3.declaration.DeclarationPackage#getAbstractNamedDeclaration_Name()
- * @model containment="true"
- * @generated
- */
- Identifier getName();
-
- /**
- * Sets the value of the '{@link org.eclipse.xpand3.declaration.AbstractNamedDeclaration#getName <em>Name</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Name</em>' containment reference.
- * @see #getName()
- * @generated
- */
- void setName(Identifier value);
-
-} // AbstractNamedDeclaration

Back to the top