org.openxma.dsl.dom.model.IntegerLiteralValue Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'Integer Literal Value'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.IntegerLiteralValue#getValue Value}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getIntegerLiteralValue()
* @model
* @generated
*/
public interface IntegerLiteralValue 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#getIntegerLiteralValue_Value()
* @model
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.IntegerLiteralValue#getValue Value}' attribute.
*
*
* @param value the new value of the 'Value' attribute.
* @see #getValue()
* @generated
*/
void setValue(String value);
} // IntegerLiteralValue