blob: 87b2ca3d2b72db631c702fb636b38ba771faaa1b [file] [log] [blame]
/*
* Copyright (c) 2005, 2006 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: FinalNode.java,v 1.2 2006/12/14 15:49:28 khussey Exp $
*/
package org.eclipse.uml2.uml;
import java.util.Map;
import org.eclipse.emf.common.util.DiagnosticChain;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Final Node</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A final node is an abstract control node at which a flow in an activity stops.
* <!-- end-model-doc -->
*
*
* @see org.eclipse.uml2.uml.UMLPackage#getFinalNode()
* @model abstract="true"
* @generated
*/
public interface FinalNode
extends ControlNode {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A final node has no outgoing edges.
* true
* <!-- end-model-doc -->
* @model
* @generated
*/
boolean validateNoOutgoingEdges(DiagnosticChain diagnostics,
Map<Object, Object> context);
} // FinalNode