blob: 843b10a5d967703645be0f2b0613847c53b4fac4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2016 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
/**
*/
package example2.classescs;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Class CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link example2.classescs.ClassCS#getExtends <em>Extends</em>}</li>
* <li>{@link example2.classescs.ClassCS#getProperties <em>Properties</em>}</li>
* <li>{@link example2.classescs.ClassCS#getOperations <em>Operations</em>}</li>
* </ul>
*
* @see example2.classescs.ClassescsPackage#getClassCS()
* @model
* @generated
*/
public interface ClassCS extends NamedElementCS {
/**
* Returns the value of the '<em><b>Extends</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Extends</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>Extends</em>' containment reference.
* @see #setExtends(PathNameCS)
* @see example2.classescs.ClassescsPackage#getClassCS_Extends()
* @model containment="true"
* @generated
*/
PathNameCS getExtends();
/**
* Sets the value of the '{@link example2.classescs.ClassCS#getExtends <em>Extends</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Extends</em>' containment reference.
* @see #getExtends()
* @generated
*/
void setExtends(PathNameCS value);
/**
* Returns the value of the '<em><b>Properties</b></em>' containment reference list.
* The list contents are of type {@link example2.classescs.PropertyCS}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Properties</em>' containment reference list.
* @see example2.classescs.ClassescsPackage#getClassCS_Properties()
* @model containment="true"
* @generated
*/
EList<PropertyCS> getProperties();
/**
* Returns the value of the '<em><b>Operations</b></em>' containment reference list.
* The list contents are of type {@link example2.classescs.OperationCS}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Operations</em>' containment reference list.
* @see example2.classescs.ClassescsPackage#getClassCS_Operations()
* @model containment="true"
* @generated
*/
EList<OperationCS> getOperations();
} // ClassCS