Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/org.eclipse.papyrus.uml.standard/src/org/eclipse/papyrus/uml/standard/Metaclass.java')
-rw-r--r--deprecated/org.eclipse.papyrus.uml.standard/src/org/eclipse/papyrus/uml/standard/Metaclass.java62
1 files changed, 0 insertions, 62 deletions
diff --git a/deprecated/org.eclipse.papyrus.uml.standard/src/org/eclipse/papyrus/uml/standard/Metaclass.java b/deprecated/org.eclipse.papyrus.uml.standard/src/org/eclipse/papyrus/uml/standard/Metaclass.java
deleted file mode 100644
index 10b05aa412f..00000000000
--- a/deprecated/org.eclipse.papyrus.uml.standard/src/org/eclipse/papyrus/uml/standard/Metaclass.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2009 CEA LIST.
- *
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Yann Tanguy (CEA LIST) yann.tanguy@cea.fr - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.uml.standard;
-
-import org.eclipse.emf.ecore.EObject;
-
-/**
- * <!-- begin-user-doc --> A representation of the model object '<em><b>Metaclass</b></em>'. <!--
- * end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.papyrus.uml.standard.Metaclass#getBase_Class <em>Base Class</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.papyrus.uml.standard.StandardPackage#getMetaclass()
- * @model
- * @generated
- */
-public interface Metaclass extends EObject {
-
- /**
- * Returns the value of the '<em><b>Base Class</b></em>' reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Base Class</em>' reference isn't clear, there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- *
- * @return the value of the '<em>Base Class</em>' reference.
- * @see #setBase_Class(org.eclipse.uml2.uml.Class)
- * @see org.eclipse.papyrus.uml.standard.StandardPackage#getMetaclass_Base_Class()
- * @model required="true" ordered="false"
- * @generated
- */
- org.eclipse.uml2.uml.Class getBase_Class();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.uml.standard.Metaclass#getBase_Class <em>Base Class</em>}' reference.
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- *
- * @param value
- * the new value of the '<em>Base Class</em>' reference.
- * @see #getBase_Class()
- * @generated
- */
- void setBase_Class(org.eclipse.uml2.uml.Class value);
-
-} // Metaclass

Back to the top