blob: 7c20e5a35482c2accc846795bd6a71a89775c65a [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: InputPinImpl.java,v 1.3 2006/05/16 15:07:26 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.InputPin;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.internal.operations.InputPinOperations;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Input Pin</b></em>'.
* <!-- end-user-doc -->
* <p>
* </p>
*
* @generated
*/
public class InputPinImpl
extends PinImpl
implements InputPin {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected InputPinImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass() {
return UMLPackage.Literals.INPUT_PIN;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateOutgoingEdgesStructuredOnly(
DiagnosticChain diagnostics, Map context) {
return InputPinOperations.validateOutgoingEdgesStructuredOnly(this,
diagnostics, context);
}
} //InputPinImpl