org.contextmapper.tactic.dsl.tacticdsl.Parameter Maven / Gradle / Ivy
/**
* generated by Xtext 2.20.0
*/
package org.contextmapper.tactic.dsl.tacticdsl;
/**
*
* A representation of the model object 'Parameter'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Parameter#getDoc Doc}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Parameter#getParameterType Parameter Type}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Parameter#getName Name}
*
*
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getParameter()
* @model
* @generated
*/
public interface Parameter extends DomainObjectTypedElement
{
/**
* Returns the value of the 'Doc' attribute.
*
*
* If the meaning of the 'Doc' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Doc' attribute.
* @see #setDoc(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getParameter_Doc()
* @model
* @generated
*/
String getDoc();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Parameter#getDoc Doc}' attribute.
*
*
* @param value the new value of the 'Doc' attribute.
* @see #getDoc()
* @generated
*/
void setDoc(String value);
/**
* Returns the value of the 'Parameter Type' containment reference.
*
*
* If the meaning of the 'Parameter Type' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Parameter Type' containment reference.
* @see #setParameterType(ComplexType)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getParameter_ParameterType()
* @model containment="true"
* @generated
*/
ComplexType getParameterType();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Parameter#getParameterType Parameter Type}' containment reference.
*
*
* @param value the new value of the 'Parameter Type' containment reference.
* @see #getParameterType()
* @generated
*/
void setParameterType(ComplexType value);
/**
* Returns the value of the 'Name' attribute.
*
*
* If the meaning of the 'Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getParameter_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Parameter#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // Parameter