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

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

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


/**
 * 
 * A representation of the model object 'Like Expression'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.LikeExpression#getExpression Expression}
  • *
  • {@link org.openxma.dsl.dom.model.LikeExpression#isNot Not}
  • *
  • {@link org.openxma.dsl.dom.model.LikeExpression#getOperator Operator}
  • *
  • {@link org.openxma.dsl.dom.model.LikeExpression#getLike Like}
  • *
  • {@link org.openxma.dsl.dom.model.LikeExpression#getEscape Escape}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getLikeExpression() * @model * @generated */ public interface LikeExpression extends Expression { /** * Returns the value of the 'Expression' containment reference. * *

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

* * @return the value of the 'Expression' containment reference. * @see #setExpression(Expression) * @see org.openxma.dsl.dom.DomPackage#getLikeExpression_Expression() * @model containment="true" * @generated */ Expression getExpression(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.LikeExpression#getExpression Expression}' containment reference. * * * @param value the new value of the 'Expression' containment reference. * @see #getExpression() * @generated */ void setExpression(Expression value); /** * Returns the value of the 'Not' attribute. * *

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

* * @return the value of the 'Not' attribute. * @see #setNot(boolean) * @see org.openxma.dsl.dom.DomPackage#getLikeExpression_Not() * @model * @generated */ boolean isNot(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.LikeExpression#isNot Not}' attribute. * * * @param value the new value of the 'Not' attribute. * @see #isNot() * @generated */ void setNot(boolean value); /** * Returns the value of the 'Operator' attribute. * *

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

* * @return the value of the 'Operator' attribute. * @see #setOperator(String) * @see org.openxma.dsl.dom.DomPackage#getLikeExpression_Operator() * @model * @generated */ String getOperator(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.LikeExpression#getOperator Operator}' attribute. * * * @param value the new value of the 'Operator' attribute. * @see #getOperator() * @generated */ void setOperator(String value); /** * Returns the value of the 'Like' containment reference. * *

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

* * @return the value of the 'Like' containment reference. * @see #setLike(Expression) * @see org.openxma.dsl.dom.DomPackage#getLikeExpression_Like() * @model containment="true" * @generated */ Expression getLike(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.LikeExpression#getLike Like}' containment reference. * * * @param value the new value of the 'Like' containment reference. * @see #getLike() * @generated */ void setLike(Expression value); /** * Returns the value of the 'Escape' containment reference. * *

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

* * @return the value of the 'Escape' containment reference. * @see #setEscape(Expression) * @see org.openxma.dsl.dom.DomPackage#getLikeExpression_Escape() * @model containment="true" * @generated */ Expression getEscape(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.LikeExpression#getEscape Escape}' containment reference. * * * @param value the new value of the 'Escape' containment reference. * @see #getEscape() * @generated */ void setEscape(Expression value); } // LikeExpression




© 2015 - 2024 Weber Informatics LLC | Privacy Policy