blob: a9927432d1da166c561959138a7995b4c215a7bf [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 example2.classes.util.Visitable;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Element CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link example2.classescs.ElementCS#getAst <em>Ast</em>}</li>
* </ul>
*
* @see example2.classescs.ClassescsPackage#getElementCS()
* @model abstract="true"
* @generated
*/
public interface ElementCS extends EObject {
/**
* Returns the value of the '<em><b>Ast</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ast</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Ast</em>' reference.
* @see #setAst(Visitable)
* @see example2.classescs.ClassescsPackage#getElementCS_Ast()
* @model type="example2.classes.Visitable"
* @generated
*/
Visitable getAst();
/**
* Sets the value of the '{@link example2.classescs.ElementCS#getAst <em>Ast</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ast</em>' reference.
* @see #getAst()
* @generated
*/
void setAst(Visitable value);
} // ElementCS