blob: 2437c246fb8b4c00f7dd5ebba830767c9529c448 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2007, 2008 E.D.Willink 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:
* E.D.Willink - initial API and implementation
*
* </copyright>
*
* $Id: Class.java,v 1.2 2008/09/21 12:30:24 ewillink Exp $
*/
package org.eclipse.qvt.declarative.emof.EMOF;
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:
* <ul>
* <li>{@link org.eclipse.qvt.declarative.emof.EMOF.Class#getIsAbstract <em>Is Abstract</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.EMOF.Class#getOwnedAttribute <em>Owned Attribute</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.EMOF.Class#getOwnedOperation <em>Owned Operation</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.EMOF.Class#getSuperClass <em>Super Class</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.qvt.declarative.emof.EMOF.EMOFPackage#getClass_()
* @model
* @generated
*/
public interface Class extends Type {
/**
* Returns the value of the '<em><b>Is Abstract</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Is Abstract</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Is Abstract</em>' attribute.
* @see #setIsAbstract(Boolean)
* @see org.eclipse.qvt.declarative.emof.EMOF.EMOFPackage#getClass_IsAbstract()
* @model default="false" dataType="org.eclipse.qvt.declarative.emof.EMOF.Boolean"
* @generated
*/
Boolean getIsAbstract();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.EMOF.Class#getIsAbstract <em>Is Abstract</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Is Abstract</em>' attribute.
* @see #getIsAbstract()
* @generated
*/
void setIsAbstract(Boolean value);
/**
* Returns the value of the '<em><b>Owned Attribute</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvt.declarative.emof.EMOF.Property}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvt.declarative.emof.EMOF.Property#getClass_ <em>Class</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Attribute</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 Attribute</em>' containment reference list.
* @see org.eclipse.qvt.declarative.emof.EMOF.EMOFPackage#getClass_OwnedAttribute()
* @see org.eclipse.qvt.declarative.emof.EMOF.Property#getClass_
* @model opposite="class" containment="true"
* @generated
*/
EList<Property> getOwnedAttribute();
/**
* Returns the value of the '<em><b>Owned Operation</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvt.declarative.emof.EMOF.Operation}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvt.declarative.emof.EMOF.Operation#getClass_ <em>Class</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Operation</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 Operation</em>' containment reference list.
* @see org.eclipse.qvt.declarative.emof.EMOF.EMOFPackage#getClass_OwnedOperation()
* @see org.eclipse.qvt.declarative.emof.EMOF.Operation#getClass_
* @model opposite="class" containment="true"
* @generated
*/
EList<Operation> getOwnedOperation();
/**
* Returns the value of the '<em><b>Super Class</b></em>' reference list.
* The list contents are of type {@link org.eclipse.qvt.declarative.emof.EMOF.Class}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Super Class</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 Class</em>' reference list.
* @see org.eclipse.qvt.declarative.emof.EMOF.EMOFPackage#getClass_SuperClass()
* @model ordered="false"
* @generated
*/
EList<Class> getSuperClass();
} // Class