org.eclipse.xtext.AbstractElement Maven / Gradle / Ivy
/**
*
*
*
* $Id: AbstractElement.java,v 1.13 2010/04/06 14:10:12 sefftinge Exp $
*/
package org.eclipse.xtext;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Abstract Element'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.xtext.AbstractElement#getCardinality Cardinality}
* - {@link org.eclipse.xtext.AbstractElement#isPredicated Predicated}
*
*
*
* @see org.eclipse.xtext.XtextPackage#getAbstractElement()
* @model
* @generated
*/
public interface AbstractElement extends EObject {
/**
* Returns the value of the 'Cardinality' attribute.
*
*
* If the meaning of the 'Cardinality' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Cardinality' attribute.
* @see #setCardinality(String)
* @see org.eclipse.xtext.XtextPackage#getAbstractElement_Cardinality()
* @model
* @generated
*/
String getCardinality();
/**
* Sets the value of the '{@link org.eclipse.xtext.AbstractElement#getCardinality Cardinality}' attribute.
*
*
* @param value the new value of the 'Cardinality' attribute.
* @see #getCardinality()
* @generated
*/
void setCardinality(String value);
/**
* Returns the value of the 'Predicated' attribute.
*
*
* If the meaning of the 'Predicated' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Predicated' attribute.
* @see #setPredicated(boolean)
* @see org.eclipse.xtext.XtextPackage#getAbstractElement_Predicated()
* @model
* @generated
*/
boolean isPredicated();
/**
* Sets the value of the '{@link org.eclipse.xtext.AbstractElement#isPredicated Predicated}' attribute.
*
*
* @param value the new value of the 'Predicated' attribute.
* @see #isPredicated()
* @generated
*/
void setPredicated(boolean value);
} // AbstractElement
© 2015 - 2025 Weber Informatics LLC | Privacy Policy