Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Papyrus/Mars Work Description/Improvments/Stereotype support"

(Objective 4)
(Commit and Reviews)
 
(29 intermediate revisions by the same user not shown)
Line 10: Line 10:
 
*The third point is the user interface to display the Stereotype that doesn’t fulfil the user expectation in terms of intuitiveness.  
 
*The third point is the user interface to display the Stereotype that doesn’t fulfil the user expectation in terms of intuitiveness.  
  
== State of art ==
 
  
=== Concepts in place ===
+
==[https://wiki.eclipse.org/Papyrus/Mars_Work_Description/Improvments/Stereotype_support/StateOfArt State of Art]==
The Stereotype feature contains two types of display, which are more or less independent.
+
* The stereotype name label
+
** Can be displayed or hidden
+
** With a short name or a Qualified Name
+
* The stereotype properties
+
** Can be displayed or hidden
+
** Can be shown in a compartment, as a comment or in braces
+
 
+
On top of that, there are several actions taking part in the stereotype display:
+
* When displaying or hiding an item (stereotype Label or property label) from the appearance property view.
+
* When a new stereotype is applied or unapplied from the profile tab into the property view.
+
 
+
Those different cases should be part of the solution. But as there are quite independent, they can be treated as such.
+
 
+
=== Conception ===
+
 
+
In Papyrus, Stereotypes are stored into UML model. But the information related to the manner to display stereotypes is stored through the EAnnotation.
+
EAnnotation is an EMF concept that is attached to an object of type EModelElement.
+
The EAnnotation details is a Map of type EMap<String,String>.
+
In the case of “Stereotype”, the EAnnotation name is “Stereotype_Annotation”, the related map contains the following list of properties and values:
+
 
+
{| class="wikitable"
+
!colspan="1"| KEY (String)
+
!colspan="1"| VALUE (String)
+
!colspan="1"| Description
+
|-
+
|rowspan="5"|Stereotype_Presentation_Kind
+
|TextIconStereotype
+
|rowspan="5"|The kind of presentation for stereotype
+
|-
+
|IconStereotype
+
|-
+
|ImageStereotype
+
|-
+
|HorizontalStereo
+
|-
+
|VerticalStereo
+
|-
+
|StereotypeList
+
|Block, Allocated
+
|The list of stereotype to display
+
|-
+
|StereotypeWithQualifiedNameList
+
|SysML::Allocations::Allocated, SysML::Blocks::Block
+
|The list of stereotype to display with Qualified Name
+
|-
+
|PropStereoDisplay
+
|SysML::Blocks::Block.isEncapsulated
+
|List of properties to display
+
|-
+
|rowspan="3"|StereotypePropertyLocation
+
|Compartment
+
|rowspan="3"|Location of Stereotype Properties
+
|-
+
|In Brace
+
|-
+
|Comment
+
|-
+
|}
+
 
+
=== Property View ===
+
 
+
The profile and stereotypes applied are available under the tab “Profile” of the property view of the diagram or of the object.
+
All the information about the display of those stereotypes is available under the “Appearance” tab.
+
 
+
 
+
[[File:Sto GUI EAnnotation.jpg|860px]]
+
 
+
# What information should be displayed (Text, icon, image, text and Icon)
+
# How the stereotypes should be aligned (Horizontal or vertical )
+
# Location of the stereotype information to be displayed (in a specific compartment, as a comment, or between bracket )
+
# The selection tree of the applied stereotypes with their properties
+
# Pair of buttons to display either short stereotype name, or the whole qualified name.
+
 
+
=== Architecture ===
+
Here is the general overview of the Stereotypes architecture with EAnnotation.
+
 
+
[[File:Global Macro EAnnotation.JPG|512px]]
+
 
+
Here is the class diagram of the Stereotype EAnnotation concept:
+
 
+
[[File:EAnnotation Class Diagram Stereotype.JPG|1024px]]
+
 
+
=== Observations ===
+
 
+
Several observations can be done from this conception:
+
#EAnnotation is difficult to maintain, it is string based only, and a lot of classes, constants and methods are required to put EAnnotation in place.
+
#EAnnotation is not well designed for a CSS compatibility. It is then difficult to have a good customization.
+
#The user interface into the “Appearance” Tab is not clear. The two buttons to display qualified name and short name are ambiguous.
+
#The property view is directly in charge of creating Commands to manage the EAnnotation, instead of separated responsibilities between graphical interface, user actions, and command creations.
+
 
+
For those reasons, the entire Stereotype display mechanism must be improved.
+
  
 
== Requirements ( Draft ) ==
 
== Requirements ( Draft ) ==
Line 136: Line 43:
 
|-
 
|-
 
|STO_12 || Qualified Name || The user should be able to chose if the Qualified Name is fully displayed or not at all.  
 
|STO_12 || Qualified Name || The user should be able to chose if the Qualified Name is fully displayed or not at all.  
 +
|-
 +
|STO_14 || UML || When update stereotype Application through the UML view, the Diagrams must be updated accordingly.
 +
|-
 +
|STO_15 || UML || When a profile is modified (I:e: Add a property), the stereotype display must be updated accordingly.
 +
|-
 +
|STO_16 || Profile Application|| Stereotype display must be updated when a new profile is applied.
 
|-
 
|-
 
|}
 
|}
  
== Solutions ==
+
== [https://wiki.eclipse.org/Papyrus/Mars_Work_Description/Improvments/Stereotype_support/Solutions Solutions]==
Different solutions have been studied to find the best soution.
+
First suggestion is to translate all the Eannotation properties into NamedStyle properties.
+
Second soltution would be to define one label by stereotype.
+
This chapter will describe the different solutions.
+
=== Named Styles ===
+
Based on the previous analysis, the Named Styles seems to be a good approach.
+
This chapter explains how Named Styles work and how it can be integrated into the code to display stereotypes.
+
Named Style is a GMF concept based on the Notation file. Named Styles define typed properties as a Style into the notation file. Types for Named Styles are the primitive ones: int, boolean, string, list, double…
+
Notation file can be overridden by the CSS that is also accessible by the Named Style.
+
==== Architecture ====
+
Here is the general overview of the new solution for the Stereotypes to be displayed with Named Styles. <br/>
+
<b>Note:</b> method’s name is informative and not definitive.
+
The direct edition of the stereotypes from the appearance property view is now done through the Edit Part which centralizes the different actions to be executed to display, hide, and update the stereotypes to be displayed.
+
  
[[File:NamedStyle MacroSchema.JPG|512px]]
+
== [https://wiki.eclipse.org/index.php?title=Papyrus/Mars_Work_Description/Improvments/Stereotype_support/Solution_Implementation Solution Implementation and Intermediate Objectives] ==
  
==== CSS and Named Styles ====
+
==[https://wiki.eclipse.org/index.php?title=Papyrus/Mars_Work_Description/Improvments/Stereotype_support/task_bugs Tasks and Bugs] ==
In order to keep as many liberty degrees to the user as for the present solution, the same set of parameters is required.
+
To allow the user to define the list of Stereotypes to hide from CSS and from the user interface, different list should be used for the CSS and the notation file.
+
Then the lists can be merged instead of being overriden.
+
  
Those means that a lot of lists should be implemented as a parameter:
+
== Commit and Reviews ==
 +
* Change 1 : [https://git.eclipse.org/r/#/c/41903 41903]
 +
** Reviewed Internally: <span style="color: green;"> Done</span>
 +
** Merged with Sub-Branch: <span style="color: green;"> Done </span>
 +
** Reviewed Externally: None
 +
** Merged with Master: None
  
*stereotypesToHide
+
* Change 2 : [https://git.eclipse.org/r/#/c/42108 42108]
*stereotypesToDisplayAsQN
+
** Reviewed Internally: <span style="color: green;"> Done</span>
*stereotypePropertiesToHide
+
** Merged with Sub-Branch: <span style="color: green;"> Done </span>
*stereotypesToDisplay
+
** Reviewed Externally: None
*CSSStereotypesToHide
+
** Merged with Master: None
*CSSStereotypesToDisplayAsQN
+
*CSSStereotypePropertiesToHide
+
  
==== Pro & Cons ====
+
* Change 3 : [https://git.eclipse.org/r/#/c/43177 43177]
 +
** Reviewed Internally: <span style="color: green;"> Done</span>
 +
** Merged with Sub-Branch: <span style="color: green;"> Done </span>
 +
** Reviewed Externally: None
 +
** Merged with Master: None
  
The advantage of this solution is that the mechanism is quite close from the initial one. The CSS can be used as a user preference.  
+
* Change 4 : [https://git.eclipse.org/r/#/c/43940 43940]
It is based on GMF as required. And the intelligent part is done by a controller instead of via the interface directly.
+
** Reviewed Internally: <span style="color: green;"> Done</span>
 +
** Merged with Sub-Branch: <span style="color: green;"> Done</span>
 +
** Reviewed Externally: None
 +
** Merged with Master: None
  
In a other hand, this solution won't work if there are several CSS files used at the same level ( for example for each stereotype) . By default, the CSS mechanism will choose the CSS file with higest priority and ignore the other ones. On top of this, the list management between CSS and Notation file would be difficult to maintain and is a source of troubles.
+
* Change 5 : [https://git.eclipse.org/r/#/c/44382 44382]
 +
** Reviewed Internally: <span style="color: green;"> Done</span>
 +
** Merged with Sub-Branch: <span style="color: green;"> Done</span>
 +
** Reviewed Externally: None
 +
** Merged with Master: None
  
=== Label for Each Stereotype ===
+
* Change 6 : [https://git.eclipse.org/r/#/c/45134 45134]
Another solution would be to change the architecture and specify one label for each stereotype. The difficulty here would be that the list of stereotypes that can be applied is not exhaustive. So it is not possible to create an UML object for each type of stereotype. The solution would be then, to create the label directly when the stereotype is applied.  
+
** Reviewed Internally: <span style="color: green;"> Done</span>
This solution avoid the use of lists and with the parameter "isVisible" can be shown or hidden from the CSS file without duplicating properties.
+
** Merged with Sub-Branch: <span style="color: green;"> Done</span>
 +
** Reviewed Externally: None
 +
** Merged with Master: None
  
==== Architecture ====
+
* Change 7 : [https://git.eclipse.org/r/#/c/45228 45228]
The Architecture is quite similar to the NamedStyle solution, except the new Label element with the following properties:
+
** Reviewed Internally: <span style="color: green;"> Done</span>
* Type
+
** Merged with Sub-Branch: <span style="color: green;"> Done</span>
* Stereotype
+
** Reviewed Externally: None
* isVisible
+
** Merged with Master: None
* QNDepth
+
* Properties
+
  
[[File:NamedStyle DecorationNode.JPG|512px]]
+
* Change 8 : [https://git.eclipse.org/r/#/c/45228 45968]
 
+
** Reviewed Internally: <span style="color: orange;"> In Progress</span>
==== CSS and NamedStyles====
+
** Merged with Sub-Branch: <span style="color: red;"> not done</span>
NamedStyles will also be used in this solution for the properties that are not designed by default (like the QNDepth) and required into the CSS. The stereotypes would be shown or hidden through the CSS thanks to the following command:
+
** Reviewed Externally: None
Label[type=StereotypeLabel][name="SysML::Blocks::Block"]{
+
** Merged with Master: None
    isVisible : false;
+
    depth: "full";
+
}
+
 
+
==== Pros & Cons ====
+
*Pros : Using one label for each stereotype allows several CSS at the same level. The solution avoids lists of String management. Simple to maintain.
+
*Cons: The stereotype label is added dynamically into the notation file, and not into the UML model. It could generate refresh issues.
+
 
+
=== Property View Interface  ===
+
 
+
to be edited
+
 
+
=== Conclusion ===
+
The retain solution will be the Single Label for each stereotype applied. An will be put in place as explained in a further chapter. 
+
 
+
== Solution Implementation ==
+
=== Architecture ===
+
Technically, the DecorationNode will be extended to create StereotypeLabel element into notation file. As well as for the stereotype properties.
+
 
+
==== Notation Model Structure ====
+
Structure into Notation file would be:
+
 
+
Label [type=StereotypeLabel][stereotype ="SysML::Allocations::Allocated"]
+
Compartment [type=StereotypeCompartment][stereotype="SysML::Allocations::Allocated"]
+
    Label [type=StereotypeProperty][property ="allocatedFrom=0..*" ]
+
    Label [type=StereotypeProperty][property ="allocatedTo=0..*" ]
+
 
+
Structure for the stereotype name Label:
+
 
+
DecorationNode (type = StereotypeLabel)
+
    stereotype(String: "SysML::Allocations::Allocated")
+
    Stereotype (Stereotype: "SysML::Allocations::Allocated")
+
    depth (String: None, Full, Auto, -1,-2,-3,...)
+
 
+
Structure of the property (to be defined):
+
 
+
BasicCompartment (type = StereotypeCompartment)
+
    stereotype(String: "SysML::Allocations::Allocated")
+
    element(Stereotype: "SysML::Allocations::Allocated")
+
    DecorationNode (type = StereotypeProperty)
+
      inCompartment (Boolean)
+
      inBrace (Boolean)
+
      inCommentCompartment (Boolean)
+
      inCommentBrace(Boolean)
+
      element( UML Property : AllocatedFrom )
+
 
+
==== EditPolicies Hierarchy ====
+
 
+
Here is the Class diagram that could be the solution for the new architecture:
+
 
+
[[File:ASEditPolicy.JPG|1024px]]
+
 
+
Legend:
+
*AS = '''AppliedStereotype'''
+
*green block = new
+
*red block = modified
+
*blue block = not changed
+
 
+
To be completed
+
 
+
=== Intermediate Objectives ===
+
To plan the several steps of this whole improvement, it will be splitted into sub-goals.
+
 
+
All the objectives will be first fulfill for the Named Elements (like the Classes, Packages, ...)
+
Once the new structure in place for those elements, it will be done for the other types of elements.
+
 
+
* '''Objective 1''': Display all the stereotypes thanks to DecorationNode with one Label by stereotype.
+
* '''Objective 2''':
+
** 2a. Hide stereotypes thanks to CSS.
+
** 2b. Display Qualified Name of some stereotypes thanks to CSS.
+
* '''Objective 3''': Display all the properties into the compartment thanks to the DecorationNode into the notation file.
+
* '''Objective 4''':
+
** 4a. Hide the properties thanks to the CSS
+
** 4b. Display properties into braces thanks to the CSS
+
** 4c. Display properties into comment thanks to CSS.
+
* '''Objective 5''': Create the graphical user interface into the Appearence Tab
+
* '''Objective 6''': Propage objectives 1 to 5 to the other element throught their own edit policied.
+
* '''Objective 7''': Plan a model transformation for a compatibility with old models using EAnnotation.
+
 
+
 
+
The following section details the progression of each Objective.
+
 
+
==== Objective 1 ====
+
:Display all the stereotypes thanks to DecorationNode with one Label by stereotype. (<span style="color: green;" >Done</span>)
+
 
+
To fulfill this objective, the following steps should be completed:
+
# Create and Delete StereotypeLabel through a Recording Command
+
# Create / Delete objects when stereotype is applied or deleted.
+
# Display the Label through the different EditPolicies
+
#* For Node Label: '''AppliedStereotypeNodeLabelDisplayEditPolicy'''
+
# Delete all usage of EAnnotation for the Stereotypes (Optionnal at this stage)
+
#*<span style="color: orange;" > '''In Progress''' </span>
+
 
+
'''Note''': <span style="color: green;" > '''Done''' </span>, means that the task is done but not already comitted.
+
The entire Objective 1 will be committed at once when completed.
+
 
+
==== Objective 2 ====
+
:2a. Hide stereotypes thanks to CSS (<span style="color: green;" >Done</span>)
+
:# Manage the isVisible parameter into the display of the Stereotype Label
+
:# Edit the CSS DOM Tree to match the NamedStyle Value
+
 
+
:2b. Display Qualified Name of some stereotypes thanks to CSS (<span style="color: green;" >Done</span>)
+
:# Manage the QualifiedName depth into the display of the Stereotype Label
+
:# Retrieve the "depth" value from the CSS
+
 
+
==== Objective 3 ====
+
:Display all the properties into the compartment thanks to the DecorationNode into the notation file.(<span style="color: green;" >Done</span>)
+
 
+
:To fulfill this objective, the following steps should be completed:
+
# Create and Delete StereotypeProperty through a Recording Command
+
# Create / Delete objects when stereotype is applied or deleted.
+
# Display the Properties through the different EditPolicies
+
#* For Node Label: '''AppliedStereotypeNodeLabelDisplayEditPolicy'''
+
 
+
==== Objective 4 ====
+
:4a. Hide the properties thanks to the CSS (<span style="color: green;" >Done</span>)
+
:# Modify the CSS DOM tree to match the NamedStyle Selectors For "StereotypeProperty".
+
:# Catch the CSS value to hide the corresponded Property.
+
:# Modify the CSS DOM tree to match the NamedStyle Selectors For "StereotypeCompartment".
+
:# Catch the CSS value to hide the corresponded Compartment.
+
 
+
::'''Encountered issues''':
+
::#StereotypeProperties Labels are not created when CSS doesn't show the compartment
+
::#* Solution: Notify "AppliedStereotypePropertyEditPolicy" when stereotype is applied. Using StereotypeElementListener instead of PapyrusStereotypeListener
+
::#Error when refresh figure with an empty Property textFlow
+
::#* Solution: Add condition on Text value during TextFlow creation into the '''AppliedStereotypeMultilinePropertyEditPart'''
+
 
+
:4b. Display properties into braces thanks to CSS.(<span style="color: green;" >Done</span>)
+
:# Add The Location NamedStyle into Notation File
+
:# Catch the CSS Value for the Location
+
:# Calculate the New Text to display with Braces
+
 
+
:4c. Display properties into a comment thanks to CSS.(<span style="color: green;" >Done</span>)
+
:# Create the Comment Object.
+
:# Create the link between Comment and EditPart
+
:# Calculate the text to display into the Comment 
+
:# Manage CSS property to display or hide properties into Comment
+
:# Edit the Comment text content with the new text value
+
:# Update Content when Stereotypes Applied or unapplied
+
:# Delete Comment when empty
+
 
+
::'''Encountered issues''':
+
::#CSS application have unstable behavior.
+
::#When a compartment is empty, the only way to not show it is to use the CSS attribute '''visible:false;'''
+
::#To be able to Hide Brace Properties independently of Compartment Properties, the Properties Structure should be dupplicated for Brace Properties
+
::##[https://bugs.eclipse.org/bugs/show_bug.cgi?id=461559 See Bug 461559]
+
::#To manage several Stereotype Application, the related Element of the node should be the Stereotype and not it's application
+
::##[https://bugs.eclipse.org/bugs/show_bug.cgi?id=461561 See Bug 461561]
+
 
+
==== Objective 5 ====
+
: Create the Graphical Interface to display Labels and Properties to override the CSS.
+
:5a. Create the graphical user interface into the Appearence Tab
+
:5b. Add the selection tree with appropriate collumn
+
:5c. Add combo box with QN choices
+
:5d. Add Tree commands to Expand / Collapse
+
:5e. Add Tree commands to Select All / Deselect All
+
:5f. Add Management rules (to be defined )
+
 
+
==== Objective 6 ====
+
:Propage objectives 1 to 5 to the other element throught their own edit policied.
+
:*For External Node : '''AppliedStereotypeExternelNodeEditPolicy'''
+
:**<span style="color: red;" > Not Started </span>
+
:* For External Node label: '''AppliedStereotypeExternelNodeLabelEditPolicy'''
+
:**<span style="color: red;" > Not Started </span>
+
:* For Icon: '''AppliedStereotypeIconDisplayEditPolicy'''
+
:**<span style="color: red;" > Not Started </span>
+
:* For Link Label: '''AppliedStereotypeLinkLabelDisplayEditPolicy'''
+
:**<span style="color: red;" > Not Started </span>
+
 
+
==== Objective 7 ====
+
 
+
:Plan a model transformation for a compatibility with old models using EAnnotation.
+
 
+
=== Open Points and Lessons learned ===
+
==== Open Points ====
+
* How an EditPolicy can be called when the Refresh (F5) of the EditPart is executed? It is required to refresh visual after applying a CSS.
+
** It appears that the super Class '''GraphicalEditPolicy''' doesn't implement a refresh method, contrary to  the internal class '''GraphicalEditPolicyEx'''
+
** But this class is internal to GMF, so how make the refresh working for the Papyrus editPolicies.
+
 
+
* What are the general Use Cases for this new feature?
+
 
+
==== Lessons learned ====
+
* How a CSS selector can match on Notation Element likes [type="StereotypeLabel"] where "StereotypeLabel" is the type of a DecorationNode.
+
** Clue : The class '''CSSDOMSemanticElementHelper''' defines rules to match the sementic Element of a notation view.
+
* How to define the way the CSS selector match elements?
+
** Clue: The method ''doGetAttribute'' in the class '''GMFUMLElementAdapter''' return the corresponding element.
+
 
+
==Tasks and Bugs==
+
 
+
The bugzilla items tracking progress of this improvments are:
+
* [https://bugs.eclipse.org/bugs/show_bug.cgi?id=455311 Bug 455311] General task for the developpement activity
+
** [https://bugs.eclipse.org/bugs/show_bug.cgi?id=460255 Bug 460255 ] Sub task for Objective 1
+
** [https://bugs.eclipse.org/bugs/show_bug.cgi?id=460259 Bug 460259 ] Sub task for Objective 2a
+
** [https://bugs.eclipse.org/bugs/show_bug.cgi?id=460264 Bug 460264 ] Sub task for Objective 2b
+
** [https://bugs.eclipse.org/bugs/show_bug.cgi?id=460271 Bug 460271 ] Sub task for Objective 3
+
** [https://bugs.eclipse.org/bugs/show_bug.cgi?id=460273 Bug 460273 ] Sub task for Objective 4a
+
** [https://bugs.eclipse.org/bugs/show_bug.cgi?id=460274 Bug 460274 ] Sub task for Objective 4b
+
** [https://bugs.eclipse.org/bugs/show_bug.cgi?id=460356 Bug 460356 ] Sub task for Objective 4c
+
*[https://bugs.eclipse.org/bugs/show_bug.cgi?id=457024 Bug 457024] Head Bug for regrouping all the other ones.
+
 
+
 
+
== Commit and Reviews ==
+
* Change 1 : [https://git.eclipse.org/r/#/c/41903 41903]  
+
** Review: <span style="color: green;"> Reviewed Internally</span>
+
** Sub-Branch: <span style="color: green;> Merged on dedicated Branch </span>
+
** Master: None
+
 
+
* Change 2 : [https://git.eclipse.org/r/#/c/42108 42108]
+
** Review: <span style="color: green;">Reviewed Internally</span>
+
** Sub-Branch: <span style="color: green;> Merged on dedicated Branch </span>
+
** Master: None
+
 
+
* Change 3 : [https://git.eclipse.org/r/#/c/43177 43177]
+
** Review: <span style="color: orange;">In progress</span>
+
** Sub-Branch: None
+
** Master: None
+

Latest revision as of 11:10, 17 April 2015

Enhancement of the support for the stereotypes in Papyrus

This page presents the improvments that will be pushed in the Mars version of Papyrus regarding the stereotypes support in the tool.

Introduction

The starting point of this study is due to concomitant issues around the stereotype display:

  • The first whished improvement is to display the stereotypes when dragged and dropped from the model explorer.
  • The second whish would be to use the Named Styles instead of EAnnotation in order to be aligned with the Papyrus point of view and be based on GMF layer.
  • The third point is the user interface to display the Stereotype that doesn’t fulfil the user expectation in terms of intuitiveness.


State of Art

Requirements ( Draft )

Req ID Category Description
STO_01 Default display The stereotypes are display by default (during the creation, when DnD, when applied).
STO_02 New Stereotype The stereotypes displayed should be automatically updated when applied stereotypes list changes or property value changes.
STO_03 Qualified Name Each Stereotype can be either displayed with a short name or with the Qualified Name.
STO_04 Qualified Name The displayed qualified name depth can be defined for each stereotype.
STO_05 Location Properties can be displayed in a compartment, in a comment and/or between braces.
STO_06 Location The user should be able to choose the location of each stereotype's property (In compartment, in braces, as a comment).
STO_07 Hide Each stereotype and property can be displayed or hidden independantly.
STO_08 CSS Visibility, qualified name depth and location can be defined by CSS.
STO_09 CSS A CSS file can be added for each Stereotype to manage its display.
STO_10 Qualified Name The user must be able to chose the depth of the QN to be displayed
STO_11 Qualified Name The user should be able to chose if the Qualified Name depth is calculated automatically.
STO_12 Qualified Name The user should be able to chose if the Qualified Name is fully displayed or not at all.
STO_14 UML When update stereotype Application through the UML view, the Diagrams must be updated accordingly.
STO_15 UML When a profile is modified (I:e: Add a property), the stereotype display must be updated accordingly.
STO_16 Profile Application Stereotype display must be updated when a new profile is applied.

Solutions

Solution Implementation and Intermediate Objectives

Tasks and Bugs

Commit and Reviews

  • Change 1 : 41903
    • Reviewed Internally: Done
    • Merged with Sub-Branch: Done
    • Reviewed Externally: None
    • Merged with Master: None
  • Change 2 : 42108
    • Reviewed Internally: Done
    • Merged with Sub-Branch: Done
    • Reviewed Externally: None
    • Merged with Master: None
  • Change 3 : 43177
    • Reviewed Internally: Done
    • Merged with Sub-Branch: Done
    • Reviewed Externally: None
    • Merged with Master: None
  • Change 4 : 43940
    • Reviewed Internally: Done
    • Merged with Sub-Branch: Done
    • Reviewed Externally: None
    • Merged with Master: None
  • Change 5 : 44382
    • Reviewed Internally: Done
    • Merged with Sub-Branch: Done
    • Reviewed Externally: None
    • Merged with Master: None
  • Change 6 : 45134
    • Reviewed Internally: Done
    • Merged with Sub-Branch: Done
    • Reviewed Externally: None
    • Merged with Master: None
  • Change 7 : 45228
    • Reviewed Internally: Done
    • Merged with Sub-Branch: Done
    • Reviewed Externally: None
    • Merged with Master: None
  • Change 8 : 45968
    • Reviewed Internally: In Progress
    • Merged with Sub-Branch: not done
    • Reviewed Externally: None
    • Merged with Master: None

Back to the top