org.openxma.dsl.dom.model.TrimFunction Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'Trim Function'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.TrimFunction#getFunction Function}
* - {@link org.openxma.dsl.dom.model.TrimFunction#getMode Mode}
* - {@link org.openxma.dsl.dom.model.TrimFunction#getCharacter Character}
* - {@link org.openxma.dsl.dom.model.TrimFunction#getFrom From}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getTrimFunction()
* @model
* @generated
*/
public interface TrimFunction 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#getTrimFunction_Function()
* @model
* @generated
*/
String getFunction();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.TrimFunction#getFunction Function}' attribute.
*
*
* @param value the new value of the 'Function' attribute.
* @see #getFunction()
* @generated
*/
void setFunction(String value);
/**
* Returns the value of the 'Mode' attribute.
*
*
* If the meaning of the 'Mode' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Mode' attribute.
* @see #setMode(String)
* @see org.openxma.dsl.dom.DomPackage#getTrimFunction_Mode()
* @model
* @generated
*/
String getMode();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.TrimFunction#getMode Mode}' attribute.
*
*
* @param value the new value of the 'Mode' attribute.
* @see #getMode()
* @generated
*/
void setMode(String value);
/**
* Returns the value of the 'Character' containment reference.
*
*
* If the meaning of the 'Character' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Character' containment reference.
* @see #setCharacter(StringLiteralValue)
* @see org.openxma.dsl.dom.DomPackage#getTrimFunction_Character()
* @model containment="true"
* @generated
*/
StringLiteralValue getCharacter();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.TrimFunction#getCharacter Character}' containment reference.
*
*
* @param value the new value of the 'Character' containment reference.
* @see #getCharacter()
* @generated
*/
void setCharacter(StringLiteralValue 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#getTrimFunction_From()
* @model containment="true"
* @generated
*/
Expression getFrom();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.TrimFunction#getFrom From}' containment reference.
*
*
* @param value the new value of the 'From' containment reference.
* @see #getFrom()
* @generated
*/
void setFrom(Expression value);
} // TrimFunction