/***************************************************************************** * 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.BehavioralFeature; import org.eclipse.uml2.uml.Usage; /** * A representation of the model object 'Create'. * *

* The following features are supported: *

*

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

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

* * * @return the value of the 'Base Behavioral Feature' reference. * @see #setBase_BehavioralFeature(BehavioralFeature) * @see org.eclipse.papyrus.uml.standard.StandardPackage#getCreate_Base_BehavioralFeature() * @model required="true" ordered="false" * @generated */ BehavioralFeature getBase_BehavioralFeature(); /** * Sets the value of the '{@link org.eclipse.papyrus.uml.standard.Create#getBase_BehavioralFeature Base Behavioral Feature}' reference. * * * @param value * the new value of the 'Base Behavioral Feature' reference. * @see #getBase_BehavioralFeature() * @generated */ void setBase_BehavioralFeature(BehavioralFeature value); /** * Returns the value of the 'Base Usage' reference. * *

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

* * * @return the value of the 'Base Usage' reference. * @see #setBase_Usage(Usage) * @see org.eclipse.papyrus.uml.standard.StandardPackage#getCreate_Base_Usage() * @model required="true" ordered="false" * @generated */ Usage getBase_Usage(); /** * Sets the value of the '{@link org.eclipse.papyrus.uml.standard.Create#getBase_Usage Base Usage}' reference. * * * @param value * the new value of the 'Base Usage' reference. * @see #getBase_Usage() * @generated */ void setBase_Usage(Usage value); } // Create