org.openxma.dsl.dom.model.PropertyValue Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Property Value'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.PropertyValue#getName Name}
* - {@link org.openxma.dsl.dom.model.PropertyValue#getSegments Segments}
* - {@link org.openxma.dsl.dom.model.PropertyValue#getIndex Index}
* - {@link org.openxma.dsl.dom.model.PropertyValue#isClassProperty Class Property}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getPropertyValue()
* @model
* @generated
*/
public interface PropertyValue extends Expression {
/**
* 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#getPropertyValue_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.PropertyValue#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Segments' attribute list.
* The list contents are of type {@link java.lang.String}.
*
*
* If the meaning of the 'Segments' attribute list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Segments' attribute list.
* @see org.openxma.dsl.dom.DomPackage#getPropertyValue_Segments()
* @model unique="false"
* @generated
*/
EList getSegments();
/**
* Returns the value of the 'Index' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.Expression}.
*
*
* If the meaning of the 'Index' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Index' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getPropertyValue_Index()
* @model containment="true"
* @generated
*/
EList getIndex();
/**
* Returns the value of the 'Class Property' attribute.
*
*
* If the meaning of the 'Class Property' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Class Property' attribute.
* @see #setClassProperty(boolean)
* @see org.openxma.dsl.dom.DomPackage#getPropertyValue_ClassProperty()
* @model
* @generated
*/
boolean isClassProperty();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.PropertyValue#isClassProperty Class Property}' attribute.
*
*
* @param value the new value of the 'Class Property' attribute.
* @see #isClassProperty()
* @generated
*/
void setClassProperty(boolean value);
} // PropertyValue