blob: c1245fdb0cf883294e3c98d5a456f88947ee23f9 [file] [log] [blame]
/*
* Copyright (c) 2005 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: ControlFlowImpl.java,v 1.2 2005/11/23 20:01:19 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.impl;
import java.util.Map;
import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.uml2.uml.ControlFlow;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.internal.operations.ControlFlowOperations;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Control Flow</b></em>'.
* <!-- end-user-doc -->
* <p>
* </p>
*
* @generated
*/
public class ControlFlowImpl
extends ActivityEdgeImpl
implements ControlFlow {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ControlFlowImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass() {
return UMLPackage.Literals.CONTROL_FLOW;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateObjectNodes(DiagnosticChain diagnostics, Map context) {
return ControlFlowOperations.validateObjectNodes(this, diagnostics,
context);
}
} //ControlFlowImpl