org.openxma.dsl.dom.model.SelectObject Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'Select Object'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.SelectObject#getName Name}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getSelectObject()
* @model
* @generated
*/
public interface SelectObject extends SelectStatement {
/**
* 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#getSelectObject_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.SelectObject#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // SelectObject