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

org.openxma.dsl.dom.model.AttributeSortOrder 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.ecore.EObject;

/**
 * 
 * A representation of the model object 'Attribute Sort Order'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.AttributeSortOrder#getAttribute Attribute}
  • *
  • {@link org.openxma.dsl.dom.model.AttributeSortOrder#isAsc Asc}
  • *
  • {@link org.openxma.dsl.dom.model.AttributeSortOrder#isDesc Desc}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getAttributeSortOrder() * @model * @generated */ public interface AttributeSortOrder extends EObject { /** * Returns the value of the 'Attribute' reference. * *

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

* * @return the value of the 'Attribute' reference. * @see #setAttribute(Attribute) * @see org.openxma.dsl.dom.DomPackage#getAttributeSortOrder_Attribute() * @model * @generated */ Attribute getAttribute(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AttributeSortOrder#getAttribute Attribute}' reference. * * * @param value the new value of the 'Attribute' reference. * @see #getAttribute() * @generated */ void setAttribute(Attribute value); /** * Returns the value of the 'Asc' attribute. * *

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

* * @return the value of the 'Asc' attribute. * @see #setAsc(boolean) * @see org.openxma.dsl.dom.DomPackage#getAttributeSortOrder_Asc() * @model * @generated */ boolean isAsc(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AttributeSortOrder#isAsc Asc}' attribute. * * * @param value the new value of the 'Asc' attribute. * @see #isAsc() * @generated */ void setAsc(boolean value); /** * Returns the value of the 'Desc' attribute. * *

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

* * @return the value of the 'Desc' attribute. * @see #setDesc(boolean) * @see org.openxma.dsl.dom.DomPackage#getAttributeSortOrder_Desc() * @model * @generated */ boolean isDesc(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AttributeSortOrder#isDesc Desc}' attribute. * * * @param value the new value of the 'Desc' attribute. * @see #isDesc() * @generated */ void setDesc(boolean value); } // AttributeSortOrder




© 2015 - 2024 Weber Informatics LLC | Privacy Policy