org.openxma.dsl.dom.model.Parameter Maven / Gradle / Ivy
/**
*
*
*
* $Id: Parameter.java 9011 2012-01-13 14:48:10Z mjohannes $
*/
package org.openxma.dsl.dom.model;
import org.openxma.dsl.core.model.Type;
/**
*
* A representation of the model object 'Parameter'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.Parameter#getType Type}
* - {@link org.openxma.dsl.dom.model.Parameter#isMany Many}
* - {@link org.openxma.dsl.dom.model.Parameter#getName Name}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getParameter()
* @model
* @generated
*/
public interface Parameter extends QueryParameter, QueryParameterReference {
/**
* Returns the value of the 'Type' reference.
*
*
* If the meaning of the 'Type' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Type' reference.
* @see #setType(Type)
* @see org.openxma.dsl.dom.DomPackage#getParameter_Type()
* @model
* @generated
*/
Type getType();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Parameter#getType Type}' reference.
*
*
* @param value the new value of the 'Type' reference.
* @see #getType()
* @generated
*/
void setType(Type value);
/**
* Returns the value of the 'Many' attribute.
*
*
* If the meaning of the 'Many' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Many' attribute.
* @see #setMany(boolean)
* @see org.openxma.dsl.dom.DomPackage#getParameter_Many()
* @model
* @generated
*/
boolean isMany();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Parameter#isMany Many}' attribute.
*
*
* @param value the new value of the 'Many' attribute.
* @see #isMany()
* @generated
*/
void setMany(boolean 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.openxma.dsl.dom.DomPackage#getParameter_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Parameter#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // Parameter