blob: f1a4d67a77c1ec029e5b2948d6f389fc6dd9c7eb [file] [log] [blame]
/*
* Copyright (c) 2005, 2006 IBM Corporation 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
*
* $Id: InstanceValue.java,v 1.2 2006/05/12 20:38:07 khussey Exp $
*/
package org.eclipse.uml2.uml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Instance Value</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An instance value is a value specification that identifies an instance.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.InstanceValue#getInstance <em>Instance</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.uml.UMLPackage#getInstanceValue()
* @model
* @generated
*/
public interface InstanceValue
extends ValueSpecification {
/**
* Returns the value of the '<em><b>Instance</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The instance that is the specified value.
* <!-- end-model-doc -->
* @return the value of the '<em>Instance</em>' reference.
* @see #setInstance(InstanceSpecification)
* @see org.eclipse.uml2.uml.UMLPackage#getInstanceValue_Instance()
* @model required="true" ordered="false"
* @generated
*/
InstanceSpecification getInstance();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.InstanceValue#getInstance <em>Instance</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Instance</em>' reference.
* @see #getInstance()
* @generated
*/
void setInstance(InstanceSpecification value);
} // InstanceValue