blob: ba7065d7168810d45c5c152d7e01ba958053f4c3 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2020 CEA LIST.
*
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Saadia Dhouib (CEA LIST) saadia.dhouib@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.aas;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Range</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aas.Range#getMin <em>Min</em>}</li>
* <li>{@link org.eclipse.papyrus.aas.Range#getMax <em>Max</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aas.AASPackage#getRange()
* @model
* @generated
*/
public interface Range extends DataElement {
/**
* Returns the value of the '<em><b>Min</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Min</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Min</em>' attribute.
* @see #setMin(int)
* @see org.eclipse.papyrus.aas.AASPackage#getRange_Min()
* @model dataType="org.eclipse.uml2.types.Integer" ordered="false"
* @generated
*/
int getMin();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aas.Range#getMin <em>Min</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Min</em>' attribute.
* @see #getMin()
* @generated
*/
void setMin(int value);
/**
* Returns the value of the '<em><b>Max</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Max</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Max</em>' attribute.
* @see #setMax(int)
* @see org.eclipse.papyrus.aas.AASPackage#getRange_Max()
* @model dataType="org.eclipse.uml2.types.Integer" ordered="false"
* @generated
*/
int getMax();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aas.Range#getMax <em>Max</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Max</em>' attribute.
* @see #getMax()
* @generated
*/
void setMax(int value);
} // Range