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

org.openxma.dsl.dom.model.CallableStatement 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.common.util.EList;

/**
 * 
 * A representation of the model object 'Callable Statement'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.CallableStatement#isFunctionCall Function Call}
  • *
  • {@link org.openxma.dsl.dom.model.CallableStatement#getName Name}
  • *
  • {@link org.openxma.dsl.dom.model.CallableStatement#getInParameter In Parameter}
  • *
  • {@link org.openxma.dsl.dom.model.CallableStatement#getOutParameter Out Parameter}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getCallableStatement() * @model * @generated */ public interface CallableStatement extends QlStatement { /** * Returns the value of the 'Function Call' attribute. * *

* If the meaning of the 'Function Call' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Function Call' attribute. * @see #setFunctionCall(boolean) * @see org.openxma.dsl.dom.DomPackage#getCallableStatement_FunctionCall() * @model * @generated */ boolean isFunctionCall(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.CallableStatement#isFunctionCall Function Call}' attribute. * * * @param value the new value of the 'Function Call' attribute. * @see #isFunctionCall() * @generated */ void setFunctionCall(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#getCallableStatement_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.CallableStatement#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'In Parameter' containment reference list. * The list contents are of type {@link org.openxma.dsl.dom.model.CallInputParameter}. * *

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

* * @return the value of the 'In Parameter' containment reference list. * @see org.openxma.dsl.dom.DomPackage#getCallableStatement_InParameter() * @model containment="true" * @generated */ EList getInParameter(); /** * Returns the value of the 'Out Parameter' containment reference list. * The list contents are of type {@link org.openxma.dsl.dom.model.CallOutputParameter}. * *

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

* * @return the value of the 'Out Parameter' containment reference list. * @see org.openxma.dsl.dom.DomPackage#getCallableStatement_OutParameter() * @model containment="true" * @generated */ EList getOutParameter(); } // CallableStatement




© 2015 - 2024 Weber Informatics LLC | Privacy Policy