All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openxma.dsl.dom.model.CallInputParameter Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/**
 * 
 * 
 *
 * $Id$
 */
package org.openxma.dsl.dom.model;

import org.eclipse.emf.ecore.EObject;

/**
 * 
 * A representation of the model object 'Call Input Parameter'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.CallInputParameter#getParameter Parameter}
  • *
  • {@link org.openxma.dsl.dom.model.CallInputParameter#getAttribute Attribute}
  • *
  • {@link org.openxma.dsl.dom.model.CallInputParameter#getName Name}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getCallInputParameter() * @model * @generated */ public interface CallInputParameter extends EObject { /** * Returns the value of the 'Parameter' reference. * *

* If the meaning of the 'Parameter' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Parameter' reference. * @see #setParameter(QueryParameter) * @see org.openxma.dsl.dom.DomPackage#getCallInputParameter_Parameter() * @model * @generated */ QueryParameter getParameter(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.CallInputParameter#getParameter Parameter}' reference. * * * @param value the new value of the 'Parameter' reference. * @see #getParameter() * @generated */ void setParameter(QueryParameter 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#getCallInputParameter_Attribute() * @model * @generated */ Attribute getAttribute(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.CallInputParameter#getAttribute Attribute}' reference. * * * @param value the new value of the 'Attribute' reference. * @see #getAttribute() * @generated */ void setAttribute(Attribute 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#getCallInputParameter_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.CallInputParameter#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // CallInputParameter




© 2015 - 2024 Weber Informatics LLC | Privacy Policy