blob: 07a60041935613537ea83190b3cec13d583af7a7 [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 Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM - initial API and implementation
*
* $Id: ExtensionPoint.java,v 1.9 2006/05/26 18:16:52 khussey Exp $
*/
package org.eclipse.uml2;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Extension Point</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An ExtensionPoint is a feature of a use case that identifies a point where the behavior of a use case can be augmented with elements of another (extending) use case.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.ExtensionPoint#getUseCase <em>Use Case</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.UML2Package#getExtensionPoint()
* @model
* @generated
*/
public interface ExtensionPoint extends RedefinableElement {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) IBM Corporation and others."; //$NON-NLS-1$
/**
* Returns the value of the '<em><b>Use Case</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.uml2.UseCase#getExtensionPoints <em>Extension Point</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Use Case</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>Use Case</em>' container reference.
* @see #setUseCase(UseCase)
* @see org.eclipse.uml2.UML2Package#getExtensionPoint_UseCase()
* @see org.eclipse.uml2.UseCase#getExtensionPoints
* @model opposite="extensionPoint" required="true"
* @generated
*/
UseCase getUseCase();
/**
* Sets the value of the '{@link org.eclipse.uml2.ExtensionPoint#getUseCase <em>Use Case</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Use Case</em>' container reference.
* @see #getUseCase()
* @generated
*/
void setUseCase(UseCase value);
} // ExtensionPoint