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

org.openxma.dsl.dom.model.AttributeGroup 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.common.util.EList;
import org.openxma.dsl.core.model.IDocumentable;
import org.eclipse.emf.ecore.EObject;

/**
 * 
 * A representation of the model object 'Attribute Group'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.AttributeGroup#isKey Key}
  • *
  • {@link org.openxma.dsl.dom.model.AttributeGroup#isUnique Unique}
  • *
  • {@link org.openxma.dsl.dom.model.AttributeGroup#isFilter Filter}
  • *
  • {@link org.openxma.dsl.dom.model.AttributeGroup#isSortorder Sortorder}
  • *
  • {@link org.openxma.dsl.dom.model.AttributeGroup#getName Name}
  • *
  • {@link org.openxma.dsl.dom.model.AttributeGroup#getAttributes Attributes}
  • *
  • {@link org.openxma.dsl.dom.model.AttributeGroup#getResolvedAttributeList Resolved Attribute List}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getAttributeGroup() * @model * @generated */ public interface AttributeGroup extends IDocumentable { /** * Returns the value of the 'Key' attribute. * *

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

* * @return the value of the 'Key' attribute. * @see #setKey(boolean) * @see org.openxma.dsl.dom.DomPackage#getAttributeGroup_Key() * @model * @generated */ boolean isKey(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AttributeGroup#isKey Key}' attribute. * * * @param value the new value of the 'Key' attribute. * @see #isKey() * @generated */ void setKey(boolean value); /** * Returns the value of the 'Unique' attribute. * *

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

* * @return the value of the 'Unique' attribute. * @see #setUnique(boolean) * @see org.openxma.dsl.dom.DomPackage#getAttributeGroup_Unique() * @model * @generated */ boolean isUnique(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AttributeGroup#isUnique Unique}' attribute. * * * @param value the new value of the 'Unique' attribute. * @see #isUnique() * @generated */ void setUnique(boolean value); /** * Returns the value of the 'Filter' attribute. * *

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

* * @return the value of the 'Filter' attribute. * @see #setFilter(boolean) * @see org.openxma.dsl.dom.DomPackage#getAttributeGroup_Filter() * @model * @generated */ boolean isFilter(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AttributeGroup#isFilter Filter}' attribute. * * * @param value the new value of the 'Filter' attribute. * @see #isFilter() * @generated */ void setFilter(boolean value); /** * Returns the value of the 'Sortorder' attribute. * *

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

* * @return the value of the 'Sortorder' attribute. * @see #setSortorder(boolean) * @see org.openxma.dsl.dom.DomPackage#getAttributeGroup_Sortorder() * @model * @generated */ boolean isSortorder(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AttributeGroup#isSortorder Sortorder}' attribute. * * * @param value the new value of the 'Sortorder' attribute. * @see #isSortorder() * @generated */ void setSortorder(boolean 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#getAttributeGroup_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.AttributeGroup#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Attributes' containment reference list. * The list contents are of type {@link org.openxma.dsl.dom.model.AttributeSortOrder}. * *

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

* * @return the value of the 'Attributes' containment reference list. * @see org.openxma.dsl.dom.DomPackage#getAttributeGroup_Attributes() * @model containment="true" * @generated */ EList getAttributes(); /** * Returns the value of the 'Resolved Attribute List' reference list. * The list contents are of type {@link org.openxma.dsl.dom.model.Attribute}. * *

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

* * @return the value of the 'Resolved Attribute List' reference list. * @see org.openxma.dsl.dom.DomPackage#getAttributeGroup_ResolvedAttributeList() * @model resolveProxies="false" transient="true" changeable="false" volatile="true" derived="true" * @generated */ EList getResolvedAttributeList(); } // AttributeGroup




© 2015 - 2024 Weber Informatics LLC | Privacy Policy