/***************************************************************************** * Copyright (c) 2010 CEA LIST. * * * 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: * Patrick Tessier (CEA LIST) Patrick.tessier@cea.fr - Initial API and implementation */ package org.eclipse.papyrus.uml.diagram.clazz.part; import org.eclipse.emf.ecore.EObject; import org.eclipse.gmf.runtime.emf.type.core.IElementType; import org.eclipse.gmf.tooling.runtime.update.UpdaterLinkDescriptor; /** * @generated */ public class UMLLinkDescriptor extends UpdaterLinkDescriptor { /** * @generated */ public UMLLinkDescriptor(EObject source, EObject destination, IElementType elementType, int linkVID) { super(source, destination, elementType, linkVID); } /** * @generated */ public UMLLinkDescriptor(EObject source, EObject destination, EObject linkElement, IElementType elementType, int linkVID) { super(source, destination, linkElement, elementType, linkVID); } }