blob: d142d1b4ba142a44986161d28a3e620af25fadea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2012 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
*******************************************************************************/
package org.eclipse.ocl.examples.xtext.base.basecs;
import org.eclipse.ocl.examples.pivot.Namespace;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Import CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ocl.examples.xtext.base.basecs.ImportCS#getPathName <em>Path Name</em>}</li>
* <li>{@link org.eclipse.ocl.examples.xtext.base.basecs.ImportCS#getNamespace <em>Namespace</em>}</li>
* <li>{@link org.eclipse.ocl.examples.xtext.base.basecs.ImportCS#isAll <em>All</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ocl.examples.xtext.base.basecs.BaseCSPackage#getImportCS()
* @model
* @generated
*/
public interface ImportCS extends NamespaceCS {
/**
* Returns the value of the '<em><b>Path Name</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Path Name</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>Path Name</em>' containment reference.
* @see #setPathName(PathNameCS)
* @see org.eclipse.ocl.examples.xtext.base.basecs.BaseCSPackage#getImportCS_PathName()
* @model containment="true"
* @generated
*/
PathNameCS getPathName();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext.base.basecs.ImportCS#getPathName <em>Path Name</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Path Name</em>' containment reference.
* @see #getPathName()
* @generated
*/
void setPathName(PathNameCS value);
/**
* Returns the value of the '<em><b>Namespace</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Namespace</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Namespace</em>' reference.
* @see org.eclipse.ocl.examples.xtext.base.basecs.BaseCSPackage#getImportCS_Namespace()
* @model resolveProxies="false" transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
Namespace getNamespace();
/**
* Returns the value of the '<em><b>All</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>All</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>All</em>' attribute.
* @see #setAll(boolean)
* @see org.eclipse.ocl.examples.xtext.base.basecs.BaseCSPackage#getImportCS_All()
* @model default="false" transient="true"
* @generated
*/
boolean isAll();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext.base.basecs.ImportCS#isAll <em>All</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>All</em>' attribute.
* @see #isAll()
* @generated
*/
void setAll(boolean value);
} // ImportCS