blob: fa388fee7b65c8b65ebd3825d8e20b331c61ba50 [file]
/*******************************************************************************
* Copyright (c) 2015 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 example1.source;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Path Element CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link example1.source.PathElementCS#getName <em>Name</em>}</li>
* <li>{@link example1.source.PathElementCS#getPathName <em>Path Name</em>}</li>
* </ul>
*
* @see example1.source.SourcePackage#getPathElementCS()
* @model
* @generated
*/
public interface PathElementCS extends SElement {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see example1.source.SourcePackage#getPathElementCS_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link example1.source.PathElementCS#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Path Name</b></em>' container reference.
* It is bidirectional and its opposite is '{@link example1.source.PathNameCS#getPath <em>Path</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Path Name</em>' container 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>' container reference.
* @see #setPathName(PathNameCS)
* @see example1.source.SourcePackage#getPathElementCS_PathName()
* @see example1.source.PathNameCS#getPath
* @model opposite="path" transient="false"
* @generated
*/
PathNameCS getPathName();
/**
* Sets the value of the '{@link example1.source.PathElementCS#getPathName <em>Path Name</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Path Name</em>' container reference.
* @see #getPathName()
* @generated
*/
void setPathName(PathNameCS value);
} // PathElementCS