blob: 77832cb2e623385ed4f3c6344a0e5004f7f595a8 [file] [log] [blame]
/**
*
* Copyright (c) 2009 Hatha Systems.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Nikolai Mansourov (Hatha Systems) - initial API and implementation
* Gabriel Barbier (Mia-Software) - minor evolutions for version 1.1
*
* $Id$
*/
package org.eclipse.gmt.modisco.omg.kdm.code;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Range Type</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmt.modisco.omg.kdm.code.RangeType#getLower <em>Lower</em>}</li>
* <li>{@link org.eclipse.gmt.modisco.omg.kdm.code.RangeType#getUpper <em>Upper</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmt.modisco.omg.kdm.code.CodePackage#getRangeType()
* @model
* @generated
*/
public interface RangeType extends DerivedType {
/**
* Returns the value of the '<em><b>Lower</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Lower</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Lower</em>' attribute.
* @see #setLower(Integer)
* @see org.eclipse.gmt.modisco.omg.kdm.code.CodePackage#getRangeType_Lower()
* @model dataType="org.eclipse.gmt.modisco.omg.kdm.core.Integer"
* @generated
*/
Integer getLower();
/**
* Sets the value of the '{@link org.eclipse.gmt.modisco.omg.kdm.code.RangeType#getLower <em>Lower</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Lower</em>' attribute.
* @see #getLower()
* @generated
*/
void setLower(Integer value);
/**
* Returns the value of the '<em><b>Upper</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Upper</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Upper</em>' attribute.
* @see #setUpper(Integer)
* @see org.eclipse.gmt.modisco.omg.kdm.code.CodePackage#getRangeType_Upper()
* @model dataType="org.eclipse.gmt.modisco.omg.kdm.core.Integer"
* @generated
*/
Integer getUpper();
/**
* Sets the value of the '{@link org.eclipse.gmt.modisco.omg.kdm.code.RangeType#getUpper <em>Upper</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Upper</em>' attribute.
* @see #getUpper()
* @generated
*/
void setUpper(Integer value);
} // RangeType