Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9b5def30876e0258867ef84f8e81200e57711383 (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

--Author Manel Fredj-CEA LIST

library VisualIDs;

-- for an interface
property VisualId_Interface : String = "2004";
	
-- for a package
property VisualId_Package   : String = "2005";

--for a profile
property VisualId_Profile          : String = "2007";
property VisualId_Profile_child1   : String = "5026";
property VisualId_Profile_child2   : String = "7016";
	
--for a stereotype
property VisualId_Stereotype					: String = "3010";
property VisualId_Stereotype_child1			: String = "5014";
property VisualId_Stereotype_child2			: String = "7011";
property VisualId_Stereotype_child3			: String = "7012";
property VisualId_Stereotype_child4			: String = "7013";
	
-- for a class
property VisualId_Class						: String = "2008";
	
--for a comment
property VisualId_Comment						: String = "2012";
property VisualId_Comment_Child				: String = "5038";
-- for a data type
property VisualId_DataType						: String = "2010";
	
-- for a primitive type
property VisualId_PrimitiveType                : String = "2009";
property VisualId_PrimitiveTypeChild           : String = "5032";

-- for an enumeration
property VisualId_Enum							: String = "2006";
property VisualId_EnumLiteral					: String = "3017";

-- for a redefinable Template signature
property VisualId_RedefinableTemplateSig		: String = "3015";
property VisualId_ClassifierTemplateParameter	: String = "3031";
property VisualId_ContainerofCTP				: String = "7014";

--for a component
property VisualId_Component		 			: String ="2002";
property VisualId_Component_child1				: String ="5005";
property VisualId_Component_child2				: String ="7002";
property VisualId_Component_child3				: String ="7003";
property VisualId_Component_child4				: String ="7004";
property VisualId_Component_Attribute			: String = "3002";
property VisualId_Component_Operation			: String = "3003";

--for a class
property VisualId_Class_Label					: String = "5029";
property VisualId_Class_Attributes				: String = "7017";
property VisualId_Class_Operations				: String = "7018";
property VisualId_Class_UseCase				: String = "7019";

property VisualId_Package_Label				: String = "5020";
property VisualId_Package_Label2				: String = "7009";
property VisualId_Enum_Label					: String = "5023";
property VisualId_Enum_Literals				: String = "7015";
property VisualId_Class_Operation				: String = "3013";
property VisualId_Class_Attribute				: String = "3012";

Back to the top