blob: 5af2fab7f66540a0f7d59f3917a413976243e00c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Willink Transformations and others.
* 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:
* Adolfo Sanchez-Barbudo Herrera - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.qvtd.doc.miniocl;
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 org.eclipse.qvtd.doc.miniocl.Class#getSuperClasses <em>Super Classes</em>}</li>
* <li>{@link org.eclipse.qvtd.doc.miniocl.Class#getOwnedOperations <em>Owned Operations</em>}</li>
* <li>{@link org.eclipse.qvtd.doc.miniocl.Class#getOwnedProperties <em>Owned Properties</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.doc.miniocl.MiniOCLPackage#getClass_()
* @model
* @generated
*/
public interface Class extends Namespace {
/**
* Returns the value of the '<em><b>Super Classes</b></em>' reference list.
* The list contents are of type {@link org.eclipse.qvtd.doc.miniocl.Class}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Super Classes</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Super Classes</em>' reference list.
* @see org.eclipse.qvtd.doc.miniocl.MiniOCLPackage#getClass_SuperClasses()
* @model annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://www.eclipse.org/qvtd/doc/MiniOCL/1.0!Class!superClasses'"
* @generated
*/
EList<Class> getSuperClasses();
/**
* Returns the value of the '<em><b>Owned Operations</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.doc.miniocl.Operation}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.doc.miniocl.Operation#getOwningClass <em>Owning Class</em>}'.
* <!-- 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 org.eclipse.qvtd.doc.miniocl.MiniOCLPackage#getClass_OwnedOperations()
* @see org.eclipse.qvtd.doc.miniocl.Operation#getOwningClass
* @model opposite="owningClass" containment="true"
* annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://www.eclipse.org/qvtd/doc/MiniOCL/1.0!Class!ownedOperations'"
* @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 org.eclipse.qvtd.doc.miniocl.Property}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.doc.miniocl.Property#getOwningClass <em>Owning Class</em>}'.
* <!-- 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 org.eclipse.qvtd.doc.miniocl.MiniOCLPackage#getClass_OwnedProperties()
* @see org.eclipse.qvtd.doc.miniocl.Property#getOwningClass
* @model opposite="owningClass" containment="true"
* annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://www.eclipse.org/qvtd/doc/MiniOCL/1.0!Class!ownedProperties'"
* @generated
*/
EList<Property> getOwnedProperties();
} // Class