/***************************************************************************** * 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; /** * A representation of the model object 'Auxiliary'. * *

* The following features are supported: *

*

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

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

* * * @return the value of the 'Base Class' reference. * @see #setBase_Class(org.eclipse.uml2.uml.Class) * @see org.eclipse.papyrus.uml.standard.StandardPackage#getAuxiliary_Base_Class() * @model required="true" ordered="false" * @generated */ org.eclipse.uml2.uml.Class getBase_Class(); /** * Sets the value of the '{@link org.eclipse.papyrus.uml.standard.Auxiliary#getBase_Class Base Class}' reference. * * * @param value * the new value of the 'Base Class' reference. * @see #getBase_Class() * @generated */ void setBase_Class(org.eclipse.uml2.uml.Class value); } // Auxiliary