Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c07d80b1d29260535687d65aadbc07d3815979ce (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
__TOC__

This short documentation will present the support for custom representations available to Papyrus users 

= Introduction  =

The goal of the symbol support in Papyrus is to give users access to some custom representations. They can use their own representation, i.e. their own svg files, in their diagrams, so the model can be easily read and understood. SVG file format was used, as this vectorial format scales easily. 

[[Image:Symbol Example.png]] 

= Symbol display place in diagrams  =

There are 2 manners to display symbols on the diagrams, in compartments and as decorators.

== Symbol representation in compartments  ==

For all nodes, like Package or Class in a Class diagram, it is possible to display the symbols in a "shape" compartment. This compartment can be displayed/hidden using the context menu on the diagram 

[[Image:Symbol Compartment.png]] 

To display/hide shape compartment:  

*Right click on the node 
*Filters 
*Show/Hide Compartments 
*Select "shape". you can also select if you wish to show/hide the title of the shape compartment. 
*OK

<br> 
<pre>Hint: you can also select the node and press 'Ctrl'+'F5' simultaneously to display the Show/hide Compartment dialog
</pre> 
== Symbol representation as a decorator  ==

For all Nodes in diagrams, it is possible to display the available symbols as decorators. The decorators are small representations depicted above the figures. for example, validation errors and warnings are displayed as decorators on Papyrus diagrams. 

[[Image:Symbol Decorator.png]] 

The Appearance tab of the properties view allows user to toggle the visibility of decorators, and the location of the display on the figure. There are 9 positions on the figure (north/east/south/west and all valid combinations) 

[[Image:Symbol DecoratorPropertyView.png]] 
<pre>Hint: if the properties view is not displayed in your Eclipse environnement, you can display it using context menu on a diagram => show Properties view.
</pre> 
= Defining symbols in models  =

This section explains how symbols can be associated to model elements. There are currently 3 ways to define specific symbols for model elements. 

== Define new symbols in profiles  ==

UML offers the possiblity to associate new icons to stereotyped elements, via the ''image'' Property of Stereotypes. In Papyrus, one of these images can be a shape. This shape will be availalbe for any node representation of a steoretyped element. 

On the property view of a Stereotype, you can associate an image to the stereotype 

[[Image:Symbol AddImageToStereotype.png]] 

This shape wil now be available on all elements that are stereotyped by this given Stereotype. 
<pre>Hint: You can have more documentation about profiles in Papyrus on the website, users corner
</pre> 
== Symbol associated to Actor UML element  ==

By default, Actors and TypedElement that are typed by an Actor have a stickman symbol associated. 

[[Image:Symbol ActorAndTypedElementWithTypeActor.png]] 

== Symbol associated to Type element  ==

The last way to associate symbols to model element is to apply the PapryusInternal profile. 

Steps: 

*Select the model in which you want to associate symbols to types. 
*Go to the property view 
*Go to the profile Tab 
*Select the icon for the registered profiles in the Applied Profile section

[[Image:Symbol ApplyRegisteredProfile.png]] 

*In the dialog, select the PapyrusInternal Profile

[[Image:Symbol ProfileSelectionDialog.png]] 

*In the next dialog, select all profiles and subprofiles

[[Image:Symbol ProfileSelectionDialogAllSubProfile.png]] 

*OK

<br> 

As soon as the Internal profile is applied, the user can apply a specific stereotype on Type elements. On this stereotype, a field allows user to define a symbol for the stereotyped Type. Then the symbol will be available for all representations of this Type and the representations of TypedElements typed by it. 

Steps: 

*Select the Type for which you want to associate a symbol 
*Go to the property view 
*Go to the profile Tab 
*Apply the TypeSymbolDefinition stereotype (available on Type elements, as soon as the internal profile is applied on the model)

[[Image:Symbol ApplyTypeSymbolDefinitionStereotype.png]] 

[[Image:Symbol ApplyTypeSymbolDefinitionStereotypeDialog.png]] 

*Select the property symbolPath of the TypeSymbolDefinition stereotype.

*Set the path to the symbol file

[[Image:Symbol TypeSymbolDefinition SymbolPath.png]] 

= FAQ  =

*What is the format supported for the symbols?

Currently, Papyrus supports SVG and PNG files. 

*What are the limitations of the SVG support?

Papyrus relies on a SVG render provided by the GMF project. This renderer do not support all the funny things provided by the SVG format. For example, it is known that the gradients are not supported. If a svg file has some gradient in its definition, it will not be displayed at all by Papryus. 

*What is the syntax for the path to the symbol?

Paths can be expressed as Eclipse URIs (Either absolute or relative to the current model), e.g: 
<pre>platform:/plugin/org.eclipse.papyrus.uml.diagram.common/icons/symbols/actor.svg
</pre> 
=&gt; This is a svg image contained in the plug-in {oep}.uml.diagram.common 
<pre>Images/logo.svg
</pre> 
=&gt; This is a svg image contained in an images/ folder next to my current model 
<pre>platform:/resource/my-project/images/logo.svg
</pre> 
=&gt; This is a svg image contained in the project “my-project”, in the current workspace 
<pre>file:/home/images/logo.svg
</pre> 
=&gt; This is an absolute filesystem URI 

*(Developers) Can I implement my own policy for Symbol support?

Yes. Papyrus relies on the Eclipse extension point framework to associate symbols with elements. It is possible for users to declare new extensions to provide their own symbol associations. See the extension point: org.eclipse.papyrus.infra.gmfdiag.common.shapeProvider for more information.

Back to the top