blob: 0a2983cff950f829b739a3fca046c2a681a972ba [file] [log] [blame]
/*
* Copyright (c) 2014 CEA and others.
* 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:
* Kenn Hussey (CEA) - initial API and implementation
*
*/
package org.eclipse.uml2.uml.profile.standard;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.uml2.uml.Usage;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Responsibility</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A contract or an obligation of an element in its relationship to other elements.
* <p>From package StandardProfile (URI {@literal http://www.omg.org/spec/UML/20131001/StandardProfile}).</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.profile.standard.Responsibility#getBase_Usage <em>Base Usage</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.uml.profile.standard.StandardPackage#getResponsibility()
* @model
* @generated
*/
public interface Responsibility
extends EObject {
/**
* Returns the value of the '<em><b>Base Usage</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p>From package StandardProfile (URI {@literal http://www.omg.org/spec/UML/20131001/StandardProfile}).</p>
* <!-- end-model-doc -->
* @return the value of the '<em>Base Usage</em>' reference.
* @see #setBase_Usage(Usage)
* @see org.eclipse.uml2.uml.profile.standard.StandardPackage#getResponsibility_Base_Usage()
* @model required="true" ordered="false"
* @generated
*/
Usage getBase_Usage();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.profile.standard.Responsibility#getBase_Usage <em>Base Usage</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Usage</em>' reference.
* @see #getBase_Usage()
* @generated
*/
void setBase_Usage(Usage value);
} // Responsibility