Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0b5697510e779df374548d265486b7ef5c400e2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * Copyright (c) 2012 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
 */
package org.eclipse.papyrus.uml.diagram.timing.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
 */
@SuppressWarnings("all")
// disable warnings on generated code
public class UMLLinkDescriptor extends UpdaterLinkDescriptor {

	/**
	 * @generated
	 */
	public UMLLinkDescriptor(final EObject source, final EObject destination, final IElementType elementType, final int linkVID) {
		super(source, destination, elementType, linkVID);
	}

	/**
	 * @generated
	 */
	public UMLLinkDescriptor(final EObject source, final EObject destination, final EObject linkElement, final IElementType elementType, final int linkVID) {
		super(source, destination, linkElement, elementType, linkVID);
	}

}

Back to the top