org.openxma.dsl.dom.model.RealLiteralValue Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'Real Literal Value'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.RealLiteralValue#getValue Value}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getRealLiteralValue()
* @model
* @generated
*/
public interface RealLiteralValue extends LiteralValue {
/**
* Returns the value of the 'Value' attribute.
*
*
* If the meaning of the 'Value' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Value' attribute.
* @see #setValue(String)
* @see org.openxma.dsl.dom.DomPackage#getRealLiteralValue_Value()
* @model
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.RealLiteralValue#getValue Value}' attribute.
*
*
* @param value the new value of the 'Value' attribute.
* @see #getValue()
* @generated
*/
void setValue(String value);
} // RealLiteralValue