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

* The following features are supported: *

*

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

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

* * * @return the value of the 'Base Component' reference. * @see #setBase_Component(Component) * @see org.eclipse.papyrus.uml.standard.StandardPackage#getBuildComponent_Base_Component() * @model required="true" ordered="false" * @generated */ Component getBase_Component(); /** * Sets the value of the '{@link org.eclipse.papyrus.uml.standard.BuildComponent#getBase_Component Base Component}' reference. * * * @param value * the new value of the 'Base Component' reference. * @see #getBase_Component() * @generated */ void setBase_Component(Component value); } // BuildComponent