blob: 9766646a6c2696b8d8c946ee184c55ec16e77251 [file] [log] [blame]
/*
* Copyright (c) 2005, 2015 IBM Corporation, CEA, and others.
* 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:
* IBM - initial API and implementation
* Kenn Hussey (CEA) - 327039, 418466, 451350
* Christian W. Damus (CEA) - 251963
*
*/
package org.eclipse.uml2.uml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Interval</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An Interval defines the range between two ValueSpecifications.
* <p>From package UML::Values.</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.uml2.uml.Interval#getMax <em>Max</em>}</li>
* <li>{@link org.eclipse.uml2.uml.Interval#getMin <em>Min</em>}</li>
* </ul>
*
* @see org.eclipse.uml2.uml.UMLPackage#getInterval()
* @model
* @generated
*/
public interface Interval
extends ValueSpecification {
/**
* Returns the value of the '<em><b>Min</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Refers to the ValueSpecification denoting the minimum value of the range.
* <p>From package UML::Values.</p>
* <!-- end-model-doc -->
* @return the value of the '<em>Min</em>' reference.
* @see #setMin(ValueSpecification)
* @see org.eclipse.uml2.uml.UMLPackage#getInterval_Min()
* @model required="true" ordered="false"
* @generated
*/
ValueSpecification getMin();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.Interval#getMin <em>Min</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Min</em>' reference.
* @see #getMin()
* @generated
*/
void setMin(ValueSpecification value);
/**
* Returns the value of the '<em><b>Max</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Refers to the ValueSpecification denoting the maximum value of the range.
* <p>From package UML::Values.</p>
* <!-- end-model-doc -->
* @return the value of the '<em>Max</em>' reference.
* @see #setMax(ValueSpecification)
* @see org.eclipse.uml2.uml.UMLPackage#getInterval_Max()
* @model required="true" ordered="false"
* @generated
*/
ValueSpecification getMax();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.Interval#getMax <em>Max</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Max</em>' reference.
* @see #getMax()
* @generated
*/
void setMax(ValueSpecification value);
} // Interval