Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ef93ca750abc32d161b73f01e9c6c01c9c2a3a8a (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
37
38
39
40
/*****************************************************************************
 * Copyright (c) 2015 CEA LIST 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:
 *   CEA LIST - Initial API and implementation
 *   
 *****************************************************************************/
package org.eclipse.papyrus.umlrt.custom;

/**
 * Declaration of all constants for UML-RT Element Types.
 */
public interface IUMLRTElementTypes {

	public static final String PROTOCOL_CONTAINER_ID = "org.eclipse.papyrus.umlrt.ProtocolContainer"; //$NON-NLS-1$

	public static final String PROTOCOL_ID = "org.eclipse.papyrus.umlrt.Protocol"; //$NON-NLS-1$

	public static final String RT_MESSAGE_SET_ID = "org.eclipse.papyrus.umlrt.RTMessageSet"; //$NON-NLS-1$

	public static final String CAPSULE_ID = "org.eclipse.papyrus.umlrt.Capsule"; //$NON-NLS-1$

	public static final String CAPSULE_PART_ID = "org.eclipse.papyrus.umlrt.CapsulePart";//$NON-NLS-1$

	public static final String RT_PORT_ID = "org.eclipse.papyrus.umlrt.RTPort";//$NON-NLS-1$
	
	public static final String RT_CONNECTOR_ID = "org.eclipse.papyrus.umlrt.RTConnector";//$NON-NLS-1$
	
	public static final String RT_EXCLUDED_ELEMENT_ID = "org.eclipse.papyrus.umlrt.RTRExcludedElement";//$NON-NLS-1$

	public static final String RT_MESSAGE_ID = "org.eclipse.papyrus.umlrt.RTMessage";
	public static final String RT_MESSAGE_IN_ID = "org.eclipse.papyrus.umlrt.RTMessageIn";
	public static final String RT_MESSAGE_OUT_ID = "org.eclipse.papyrus.umlrt.RTMessageOut";
	public static final String RT_MESSAGE_INOUT_ID = "org.eclipse.papyrus.umlrt.RTMessageInout";
}

Back to the top