Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6d0392d170ff13e88cf5042d639b4c7ccd0771d0 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*****************************************************************************
 * Copyright (c) 2014 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.developper.mde;

/**
 * mist of constant included in the IDM process profile
 *
 */
public interface I_DeveloperIDMStereotype {

	/** Qualified name of the stereotype Project */
	public static final String PROJECT_STEREOTYPE = "DeveloperProcess::structure::Project";

	/** name of property author of the stereotype Project */
	public static final String PROJECT_AUTHOR_ATT = "author";

	/** name of property title of the stereotype Project */
	public static final String PROJECT_TITLE_ATT = "title";

	/** name of property version of the stereotype Project */
	public static final String PROJECT_VERSION_ATT = "version";

	/** name of property base_Model of the stereotype Project */
	public static final String PROJECT_BASE_MODEL_ATT = "base_Model";

	/** Qualified name of the stereotype UserDoc */
	public static final String USERDOC_STEREOTYPE = "DeveloperProcess::structure::UserDoc";

	/** name of property base_Comment of the stereotype UserDoc */
	public static final String USERDOC_BASE_COMMENT_ATT = "base_Comment";

	/** Qualified name of the stereotype DeveloperDoc */
	public static final String DEVELOPERDOC_STEREOTYPE = "DeveloperProcess::structure::DeveloperDoc";

	/** name of property base_Comment of the stereotype DeveloperDoc */
	public static final String DEVELOPERDOC_BASE_COMMENT_ATT = "base_Comment";

	/** Qualified name of the stereotype Requirements */
	public static final String REQUIREMENTS_STEREOTYPE = "DeveloperProcess::structure::Requirements";

	/** name of property base_Model of the stereotype Requirements */
	public static final String REQUIREMENTS_BASE_MODEL_ATT = "base_Model";

	/** Qualified name of the stereotype Design */
	public static final String DESIGN_STEREOTYPE = "DeveloperProcess::structure::Design";

	/** name of property base_Model of the stereotype Design */
	public static final String DESIGN_BASE_MODEL_ATT = "base_Model";

	/** Qualified name of the stereotype UseCases */
	public static final String USECASES_STEREOTYPE = "DeveloperProcess::structure::UseCases";

	/** name of property base_Model of the stereotype UseCases */
	public static final String USECASES_BASE_MODEL_ATT = "base_Model";

	/** Qualified name of the stereotype Tests */
	public static final String TESTS_STEREOTYPE = "DeveloperProcess::structure::Tests";

	/** name of property base_Model of the stereotype Tests */
	public static final String TESTS_BASE_MODEL_ATT = "base_Model";

	/** Qualified name of the stereotype UseCaseTest */
	public static final String USECASETEST_STEREOTYPE = "DeveloperProcess::trace::UseCaseTest";

	/** name of property base_UseCase of the stereotype UseCaseTest */
	public static final String USECASETEST_BASE_USECASE_ATT = "base_UseCase";

	/** Qualified name of the stereotype ManualTest */
	public static final String MANUALTEST_STEREOTYPE = "DeveloperProcess::trace::ManualTest";

	/** name of property path of the stereotype ManualTest */
	public static final String MANUALTEST_PATH_ATT = "path";

	/** name of property base_Model of the stereotype ManualTest */
	public static final String MANUALTEST_BASE_MODEL_ATT = "base_Model";

	/** Qualified name of the stereotype ExecutableTest */
	public static final String EXECUTABLETEST_STEREOTYPE = "DeveloperProcess::trace::ExecutableTest";

	/** name of property base_Class of the stereotype ExecutableTest */
	public static final String EXECUTABLETEST_BASE_CLASS_ATT = "base_Class";

	/** name of property base_Model of the stereotype ExecutableTest */
	public static final String EXECUTABLETEST_BASE_MODEL_ATT = "base_Model";
}

Back to the top