org.contextmapper.tactic.dsl.tacticdsl.EnumValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of context-mapper-dsl Show documentation
Show all versions of context-mapper-dsl Show documentation
Use the ContextMapper DSL in your standalone application.
/**
* generated by Xtext 2.21.0
*/
package org.contextmapper.tactic.dsl.tacticdsl;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Enum Value'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.tactic.dsl.tacticdsl.EnumValue#getDoc Doc}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.EnumValue#getName Name}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.EnumValue#getParameters Parameters}
*
*
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getEnumValue()
* @model
* @generated
*/
public interface EnumValue extends EObject
{
/**
* Returns the value of the 'Doc' attribute.
*
*
* @return the value of the 'Doc' attribute.
* @see #setDoc(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getEnumValue_Doc()
* @model
* @generated
*/
String getDoc();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.EnumValue#getDoc Doc}' attribute.
*
*
* @param value the new value of the 'Doc' attribute.
* @see #getDoc()
* @generated
*/
void setDoc(String value);
/**
* Returns the value of the 'Name' attribute.
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getEnumValue_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.EnumValue#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Parameters' containment reference list.
* The list contents are of type {@link org.contextmapper.tactic.dsl.tacticdsl.EnumParameter}.
*
*
* @return the value of the 'Parameters' containment reference list.
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getEnumValue_Parameters()
* @model containment="true"
* @generated
*/
EList getParameters();
} // EnumValue