org.openxma.dsl.dom.model.IElementWithNoName Maven / Gradle / Ivy
/**
*
*
*
* $Id: IElementWithNoName.java 9011 2012-01-13 14:48:10Z mjohannes $
*/
package org.openxma.dsl.dom.model;
import org.openxma.dsl.core.model.ReferenceableByXmadslVariable;
/**
*
* A representation of the model object 'IElement With No Name'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.IElementWithNoName#getNoName No Name}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getIElementWithNoName()
* @model
* @generated
*/
public interface IElementWithNoName extends ReferenceableByXmadslVariable, QueryParameterReference {
/**
* Returns the value of the 'No Name' attribute.
*
*
* If the meaning of the 'No Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'No Name' attribute.
* @see #setNoName(String)
* @see org.openxma.dsl.dom.DomPackage#getIElementWithNoName_NoName()
* @model
* @generated
*/
String getNoName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.IElementWithNoName#getNoName No Name}' attribute.
*
*
* @param value the new value of the 'No Name' attribute.
* @see #getNoName()
* @generated
*/
void setNoName(String value);
} // IElementWithNoName