blob: 13cbe26a68636357bd0dae273657e07e98cfd7df [file] [log] [blame]
/*
* Copyright (c) 2003, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
*
* $Id: ProtocolConformance.java,v 1.2 2004/04/10 04:09:50 khussey Exp $
*/
package org.eclipse.uml2;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Protocol Conformance</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.ProtocolConformance#getSpecificMachine <em>Specific Machine</em>}</li>
* <li>{@link org.eclipse.uml2.ProtocolConformance#getGeneralMachine <em>General Machine</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.UML2Package#getProtocolConformance()
* @model
* @generated
*/
public interface ProtocolConformance extends DirectedRelationship{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) 2003, 2004 IBM Corporation and others."; //$NON-NLS-1$
/**
* Returns the value of the '<em><b>Specific Machine</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.uml2.ProtocolStateMachine#getConformances <em>Conformance</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Specific Machine</em>' container reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Specific Machine</em>' container reference.
* @see #setSpecificMachine(ProtocolStateMachine)
* @see org.eclipse.uml2.UML2Package#getProtocolConformance_SpecificMachine()
* @see org.eclipse.uml2.ProtocolStateMachine#getConformances
* @model opposite="conformance" required="true"
* @generated
*/
ProtocolStateMachine getSpecificMachine();
/**
* Sets the value of the '{@link org.eclipse.uml2.ProtocolConformance#getSpecificMachine <em>Specific Machine</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Specific Machine</em>' container reference.
* @see #getSpecificMachine()
* @generated
*/
void setSpecificMachine(ProtocolStateMachine value);
/**
* Returns the value of the '<em><b>General Machine</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>General Machine</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>General Machine</em>' reference.
* @see #setGeneralMachine(ProtocolStateMachine)
* @see org.eclipse.uml2.UML2Package#getProtocolConformance_GeneralMachine()
* @model required="true"
* @generated
*/
ProtocolStateMachine getGeneralMachine();
/**
* Sets the value of the '{@link org.eclipse.uml2.ProtocolConformance#getGeneralMachine <em>General Machine</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>General Machine</em>' reference.
* @see #getGeneralMachine()
* @generated
*/
void setGeneralMachine(ProtocolStateMachine value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model parameters=""
* @generated
*/
EList getSources();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model parameters=""
* @generated
*/
Element getOwner();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model parameters=""
* @generated
*/
EList getTargets();
} // ProtocolConformance