blob: 1ddc12596aa62d90e13378e50883abe8dc58bd3c [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: OutputPin.java,v 1.2 2006/05/16 15:07:26 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>Output Pin</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An output pin is a pin that holds output values produced by an action.
* <!-- end-model-doc -->
*
*
* @see org.eclipse.uml2.uml.UMLPackage#getOutputPin()
* @model
* @generated
*/
public interface OutputPin
extends Pin {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Output pins may have incoming edges only when they are on actions that are structured nodes, and these edges may not target a node contained by the structured node.
* true
* <!-- end-model-doc -->
* @model
* @generated
*/
boolean validateIncomingEdgesStructuredOnly(DiagnosticChain diagnostics,
Map context);
} // OutputPin