blob: 2e3631147135dbee4b3017b15f62724337a83ed3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2019 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
/**
*/
package example2.classes;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Class</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link example2.classes.Class#getSuperClass <em>Super Class</em>}</li>
* <li>{@link example2.classes.Class#getOwnedOperations <em>Owned Operations</em>}</li>
* <li>{@link example2.classes.Class#getOwnedProperties <em>Owned Properties</em>}</li>
* </ul>
*
* @see example2.classes.ClassesPackage#getClass_()
* @model
* @generated
*/
public interface Class extends NamedElement {
/**
* Returns the value of the '<em><b>Super Class</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Super 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>Super Class</em>' reference.
* @see #setSuperClass(Class)
* @see example2.classes.ClassesPackage#getClass_SuperClass()
* @model
* @generated
*/
Class getSuperClass();
/**
* Sets the value of the '{@link example2.classes.Class#getSuperClass <em>Super Class</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Super Class</em>' reference.
* @see #getSuperClass()
* @generated
*/
void setSuperClass(Class value);
/**
* Returns the value of the '<em><b>Owned Operations</b></em>' containment reference list.
* The list contents are of type {@link example2.classes.Operation}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Operations</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>Owned Operations</em>' containment reference list.
* @see example2.classes.ClassesPackage#getClass_OwnedOperations()
* @model containment="true"
* @generated
*/
EList<Operation> getOwnedOperations();
/**
* Returns the value of the '<em><b>Owned Properties</b></em>' containment reference list.
* The list contents are of type {@link example2.classes.Property}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Properties</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>Owned Properties</em>' containment reference list.
* @see example2.classes.ClassesPackage#getClass_OwnedProperties()
* @model containment="true"
* @generated
*/
EList<Property> getOwnedProperties();
} // Class