org.eclipse.ocl.cst.PackageDeclarationCS Maven / Gradle / Ivy
/**
*
*
* Copyright (c) 2005, 2008 IBM Corporation, Zeligsoft Inc., 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:
* IBM - Initial API and implementation
* Zeligsoft - Bugs 243976, 251349
*
*
*
* $Id: PackageDeclarationCS.java,v 1.5 2009/12/22 18:42:30 ewillink Exp $
*/
package org.eclipse.ocl.cst;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Package Declaration CS'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.ocl.cst.PackageDeclarationCS#getPathNameCS Path Name CS}
* - {@link org.eclipse.ocl.cst.PackageDeclarationCS#getContextDecls Context Decls}
* - {@link org.eclipse.ocl.cst.PackageDeclarationCS#getPackageDeclarationCS Package Declaration CS}
*
*
*
* @see org.eclipse.ocl.cst.CSTPackage#getPackageDeclarationCS()
* @model
* @generated
*/
public interface PackageDeclarationCS
extends CSTNode {
/**
* Returns the value of the 'Path Name CS' containment reference.
*
*
* If the meaning of the 'Path Name CS' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Path Name CS' containment reference.
* @see #setPathNameCS(PathNameCS)
* @see org.eclipse.ocl.cst.CSTPackage#getPackageDeclarationCS_PathNameCS()
* @model containment="true"
* @generated
*/
PathNameCS getPathNameCS();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.PackageDeclarationCS#getPathNameCS Path Name CS}' containment reference.
*
*
* @param value the new value of the 'Path Name CS' containment reference.
* @see #getPathNameCS()
* @generated
*/
void setPathNameCS(PathNameCS value);
/**
* Returns the value of the 'Context Decls' containment reference list.
* The list contents are of type {@link org.eclipse.ocl.cst.ContextDeclCS}.
*
*
* If the meaning of the 'Context Decls' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Context Decls' containment reference list.
* @see org.eclipse.ocl.cst.CSTPackage#getPackageDeclarationCS_ContextDecls()
* @model containment="true"
* @generated
*/
EList getContextDecls();
/**
* Returns the value of the 'Package Declaration CS' reference.
*
*
* If the meaning of the 'Package Declaration CS' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Package Declaration CS' reference.
* @see #setPackageDeclarationCS(PackageDeclarationCS)
* @see org.eclipse.ocl.cst.CSTPackage#getPackageDeclarationCS_PackageDeclarationCS()
* @model
* @generated
*/
PackageDeclarationCS getPackageDeclarationCS();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.PackageDeclarationCS#getPackageDeclarationCS Package Declaration CS}' reference.
*
*
* @param value the new value of the 'Package Declaration CS' reference.
* @see #getPackageDeclarationCS()
* @generated
*/
void setPackageDeclarationCS(PackageDeclarationCS value);
} // PackageDeclarationCS