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

org.openxma.dsl.dom.model.QuantifiedExpression 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 'Quantified Expression'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.QuantifiedExpression#getQuantifier Quantifier}
  • *
  • {@link org.openxma.dsl.dom.model.QuantifiedExpression#getExpression Expression}
  • *
  • {@link org.openxma.dsl.dom.model.QuantifiedExpression#getName Name}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getQuantifiedExpression() * @model * @generated */ public interface QuantifiedExpression extends Expression { /** * Returns the value of the 'Quantifier' attribute. * *

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

* * @return the value of the 'Quantifier' attribute. * @see #setQuantifier(String) * @see org.openxma.dsl.dom.DomPackage#getQuantifiedExpression_Quantifier() * @model * @generated */ String getQuantifier(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.QuantifiedExpression#getQuantifier Quantifier}' attribute. * * * @param value the new value of the 'Quantifier' attribute. * @see #getQuantifier() * @generated */ void setQuantifier(String value); /** * 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#getQuantifiedExpression_Expression() * @model containment="true" * @generated */ Expression getExpression(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.QuantifiedExpression#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 '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#getQuantifiedExpression_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.QuantifiedExpression#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // QuantifiedExpression




© 2015 - 2024 Weber Informatics LLC | Privacy Policy