org.openxma.dsl.dom.model.CallOutputParameter Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Call Output Parameter'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.CallOutputParameter#getName Name}
* - {@link org.openxma.dsl.dom.model.CallOutputParameter#getAttribute Attribute}
* - {@link org.openxma.dsl.dom.model.CallOutputParameter#getNestedAttribute Nested Attribute}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getCallOutputParameter()
* @model
* @generated
*/
public interface CallOutputParameter extends EObject {
/**
* 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#getCallOutputParameter_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.CallOutputParameter#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Attribute' reference.
*
*
* If the meaning of the 'Attribute' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Attribute' reference.
* @see #setAttribute(Attribute)
* @see org.openxma.dsl.dom.DomPackage#getCallOutputParameter_Attribute()
* @model
* @generated
*/
Attribute getAttribute();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.CallOutputParameter#getAttribute Attribute}' reference.
*
*
* @param value the new value of the 'Attribute' reference.
* @see #getAttribute()
* @generated
*/
void setAttribute(Attribute value);
/**
* Returns the value of the 'Nested Attribute' reference.
*
*
* If the meaning of the 'Nested Attribute' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Nested Attribute' reference.
* @see #setNestedAttribute(Attribute)
* @see org.openxma.dsl.dom.DomPackage#getCallOutputParameter_NestedAttribute()
* @model
* @generated
*/
Attribute getNestedAttribute();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.CallOutputParameter#getNestedAttribute Nested Attribute}' reference.
*
*
* @param value the new value of the 'Nested Attribute' reference.
* @see #getNestedAttribute()
* @generated
*/
void setNestedAttribute(Attribute value);
} // CallOutputParameter