/***************************************************************************** * Copyright (c) 2009 CEA LIST. * * * 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: * Yann Tanguy (CEA LIST) yann.tanguy@cea.fr - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.uml.standard; import org.eclipse.emf.ecore.EObject; import org.eclipse.uml2.uml.Artifact; /** * A representation of the model object 'Executable'. * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.uml.standard.StandardPackage#getExecutable() * @model * @generated */ public interface Executable extends EObject { /** * Returns the value of the 'Base Artifact' reference. * *

* If the meaning of the 'Base Artifact' reference isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Base Artifact' reference. * @see #setBase_Artifact(Artifact) * @see org.eclipse.papyrus.uml.standard.StandardPackage#getExecutable_Base_Artifact() * @model required="true" ordered="false" * @generated */ Artifact getBase_Artifact(); /** * Sets the value of the '{@link org.eclipse.papyrus.uml.standard.Executable#getBase_Artifact Base Artifact}' reference. * * * @param value * the new value of the 'Base Artifact' reference. * @see #getBase_Artifact() * @generated */ void setBase_Artifact(Artifact value); } // Executable