blob: d6700d210b912b21932051dbd908e4949036a090 [file] [log] [blame]
/**
* Copyright (c) 2007 Borland Software Corporation
*
* 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:
* Borland Software Corporation - initial API and implementation
*
*
*
* $Id: ClassifierDefCS.java,v 1.8 2010/01/29 15:23:42 sboyko Exp $
*/
package org.eclipse.m2m.internal.qvt.oml.cst;
import org.eclipse.emf.common.util.EList;
import org.eclipse.ocl.cst.CSTNode;
import org.eclipse.ocl.cst.SimpleNameCS;
import org.eclipse.ocl.cst.TypeCS;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Classifier Def CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.m2m.internal.qvt.oml.cst.ClassifierDefCS#getSimpleNameCS <em>Simple Name CS</em>}</li>
* <li>{@link org.eclipse.m2m.internal.qvt.oml.cst.ClassifierDefCS#getExtends <em>Extends</em>}</li>
* <li>{@link org.eclipse.m2m.internal.qvt.oml.cst.ClassifierDefCS#getProperties <em>Properties</em>}</li>
* <li>{@link org.eclipse.m2m.internal.qvt.oml.cst.ClassifierDefCS#getTags <em>Tags</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getClassifierDefCS()
* @model
* @generated
*/
public interface ClassifierDefCS extends CSTNode {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) 2007 Borland Software Corporation\r\n\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n \r\nContributors:\r\n Borland Software Corporation - initial API and implementation\r\n\r\n"; //$NON-NLS-1$
/**
* Returns the value of the '<em><b>Simple Name CS</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Simple Name CS</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>Simple Name CS</em>' containment reference.
* @see #setSimpleNameCS(SimpleNameCS)
* @see org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getClassifierDefCS_SimpleNameCS()
* @model containment="true" required="true"
* @generated
*/
SimpleNameCS getSimpleNameCS();
/**
* Sets the value of the '{@link org.eclipse.m2m.internal.qvt.oml.cst.ClassifierDefCS#getSimpleNameCS <em>Simple Name CS</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Simple Name CS</em>' containment reference.
* @see #getSimpleNameCS()
* @generated
*/
void setSimpleNameCS(SimpleNameCS value);
/**
* Returns the value of the '<em><b>Extends</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.ocl.cst.TypeCS}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Extends</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>Extends</em>' containment reference list.
* @see org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getClassifierDefCS_Extends()
* @model containment="true"
* @generated
*/
EList<TypeCS> getExtends();
/**
* Returns the value of the '<em><b>Properties</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.m2m.internal.qvt.oml.cst.ClassifierPropertyCS}.
* <!-- 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 org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getClassifierDefCS_Properties()
* @model containment="true"
* @generated
*/
EList<ClassifierPropertyCS> getProperties();
/**
* Returns the value of the '<em><b>Tags</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.m2m.internal.qvt.oml.cst.TagCS}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tags</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>Tags</em>' containment reference list.
* @see org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getClassifierDefCS_Tags()
* @model containment="true"
* @generated
*/
EList<TagCS> getTags();
} // ClassifierDefCS