blob: c82b5ad4c757dde2995c05fa9242c2d14c09b11b [file] [log] [blame]
/*
* Copyright (c) 2003, 2004 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: VariableAction.java,v 1.6 2005/05/18 16:38:30 khussey Exp $
*/
package org.eclipse.uml2;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Variable Action</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* VariableAction is an abstract class for actions that operate on a statically specified variable.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.VariableAction#getVariable <em>Variable</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.UML2Package#getVariableAction()
* @model abstract="true"
* @generated
*/
public interface VariableAction extends Action{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) IBM Corporation and others."; //$NON-NLS-1$
/**
* Returns the value of the '<em><b>Variable</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Variable</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Variable to be read.
* <!-- end-model-doc -->
* @return the value of the '<em>Variable</em>' reference.
* @see #setVariable(Variable)
* @see org.eclipse.uml2.UML2Package#getVariableAction_Variable()
* @model required="true"
* @generated
*/
Variable getVariable();
/**
* Sets the value of the '{@link org.eclipse.uml2.VariableAction#getVariable <em>Variable</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Variable</em>' reference.
* @see #getVariable()
* @generated
*/
void setVariable(Variable value);
} // VariableAction