/***************************************************************************** * Copyright (c) 2010 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: * Chokri MRAIDHA (CEA LIST) chokri.mraidha@cea.fr - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM; import org.eclipse.emf.ecore.EObject; import org.eclipse.uml2.uml.BehavioralFeature; /** * * A representation of the model object 'Client Server Feature'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getClientServerFeature() * @model * @generated */ public interface ClientServerFeature extends EObject { /** * Returns the value of the 'Kind' attribute. * The default value is "proreq". * The literals are from the enumeration {@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.ClientServerKind}. * *

* If the meaning of the 'Kind' attribute isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Kind' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.ClientServerKind * @see #setKind(ClientServerKind) * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getClientServerFeature_Kind() * @model default="proreq" unique="false" required="true" ordered="false" * @generated */ ClientServerKind getKind(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.ClientServerFeature#getKind Kind}' attribute. * * * * @param value * the new value of the 'Kind' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.ClientServerKind * @see #getKind() * @generated */ void setKind(ClientServerKind value); /** * 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.MARTE.MARTE_DesignModel.GCM.GCMPackage#getClientServerFeature_Base_BehavioralFeature() * @model required="true" ordered="false" * @generated */ BehavioralFeature getBase_BehavioralFeature(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.ClientServerFeature#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); } // ClientServerFeature