blob: 07b06ca51ce0a06ed0e72d7a892d13c085075e12 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.xtext2lpg.XBNF;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Abstract Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ocl.examples.xtext2lpg.XBNF.AbstractElement#getDebug <em>Debug</em>}</li>
* <li>{@link org.eclipse.ocl.examples.xtext2lpg.XBNF.AbstractElement#getParentRule <em>Parent Rule</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ocl.examples.xtext2lpg.XBNF.XBNFPackage#getAbstractElement()
* @model abstract="true"
* @generated
*/
public interface AbstractElement extends EObject {
/**
* Returns the value of the '<em><b>Debug</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Debug</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Debug</em>' attribute.
* @see #setDebug(String)
* @see org.eclipse.ocl.examples.xtext2lpg.XBNF.XBNFPackage#getAbstractElement_Debug()
* @model
* @generated
*/
String getDebug();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext2lpg.XBNF.AbstractElement#getDebug <em>Debug</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Debug</em>' attribute.
* @see #getDebug()
* @generated
*/
void setDebug(String value);
/**
* Returns the value of the '<em><b>Parent Rule</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.ocl.examples.xtext2lpg.XBNF.AbstractRule#getElement <em>Element</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Parent Rule</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>Parent Rule</em>' container reference.
* @see #setParentRule(AbstractRule)
* @see org.eclipse.ocl.examples.xtext2lpg.XBNF.XBNFPackage#getAbstractElement_ParentRule()
* @see org.eclipse.ocl.examples.xtext2lpg.XBNF.AbstractRule#getElement
* @model opposite="element" resolveProxies="false" transient="false"
* @generated
*/
AbstractRule getParentRule();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext2lpg.XBNF.AbstractElement#getParentRule <em>Parent Rule</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Parent Rule</em>' container reference.
* @see #getParentRule()
* @generated
*/
void setParentRule(AbstractRule value);
} // AbstractElement