org.openxma.dsl.dom.model.CastFunction Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'Cast Function'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.CastFunction#getFunction Function}
* - {@link org.openxma.dsl.dom.model.CastFunction#getFrom From}
* - {@link org.openxma.dsl.dom.model.CastFunction#getName Name}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getCastFunction()
* @model
* @generated
*/
public interface CastFunction extends Expression {
/**
* Returns the value of the 'Function' attribute.
*
*
* If the meaning of the 'Function' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Function' attribute.
* @see #setFunction(String)
* @see org.openxma.dsl.dom.DomPackage#getCastFunction_Function()
* @model
* @generated
*/
String getFunction();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.CastFunction#getFunction Function}' attribute.
*
*
* @param value the new value of the 'Function' attribute.
* @see #getFunction()
* @generated
*/
void setFunction(String value);
/**
* Returns the value of the 'From' containment reference.
*
*
* If the meaning of the 'From' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'From' containment reference.
* @see #setFrom(Expression)
* @see org.openxma.dsl.dom.DomPackage#getCastFunction_From()
* @model containment="true"
* @generated
*/
Expression getFrom();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.CastFunction#getFrom From}' containment reference.
*
*
* @param value the new value of the 'From' containment reference.
* @see #getFrom()
* @generated
*/
void setFrom(Expression 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#getCastFunction_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.CastFunction#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // CastFunction