Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2016-04-01Bug 490180 - [namingconvention] be sure the src directories respect theFrancois Le Fevre - CEA113-49708/+0
convention under the diagram folder - just changing the target generation folder - renaming the folder manually F2 Change-Id: I413e8a79e771fe4e741fa8ee2da3f40d1525f07c Signed-off-by: Francois Le Fevre - CEA <francois.le-fevre@cea.fr>
2016-03-31Bug 481767 - [State Machine Diagram] - Pseudo state not placed correctly ↵Ansgar Radermacher99-8693/+6427
when added on the edge of a composite state Change includes a diagram regeneration which implies changes to all existing files due to different code formatters (existing code has been generated using a "wrong" formatter) Only generated file with non-white-space changes is diagram/statemachine/edit/parts/StateMachineEditPart.java
2016-03-22Bug 489116 - Unify diagram visualID of all diagrams in PapyrusMaged Elaasar99-7300/+9612
1. Changed the visual ids of the UML2 diagrams from numbers to meaningful names corresponding to notational cases. This was applied consistely across diagram such that similar cases get similar visual ids. Added diagram reconcilers for v1.2 to migrate older diagrams. 2. Amalgamated the UML2 diagram element types into a single model (umldi.elementtypesconfigurations). Some diagrams, like Sequence, Communication and Timing, still use extension-based configurations and will need to be migrated later. Change-Id: I7f47b25454dcd1ed81e8f3eeffc1a09a2584d316 Signed-off-by: Maged Elaasar <melaasar@gmail.com>
2016-01-22Bug 485220: [Architecture] Provide a more modular architectureChristian W. Damus1-1/+1
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Move UI-dependent APIs from the org.eclipse.papyrus.infra.tools bundle to org.eclipse.papyrus.infra.ui. Accordingly move tests into a new org.eclipse.papyrus.infra.ui.tests bundle. Two crucial UI dependencies are inverted by introduction of new OSGi services with core interfaces specified in the non-UI layer: * IExecutorService extends Java Platform's ExecutorService with APIs for synchronous execution (a la Display.syncExec). A new CoreExecutors class in the infra.tools bundle supplies the instance provided by the OSGi service implementation in the infra.ui bundle. This provides compatibility for clients of various UIUtil APIs that they can no longer access * IContextualServiceRegistryTracker abstracts the concept of the default ServicesRegistry found in the currently active editor, which the ServiceUtilsForHandlers class (and hence all of its clients) relies on. Again an OSGi service implementation in the infra.ui bundle supplies the implementation of this tracker, which is exposed in infra.core through the service-utils API Also move UI-dependent APIs from the org.eclipse.papyrus.infra.core bundle into org.eclipse.papyrus.infra.ui. This includes * moving the 'papyrusDiagram' and 'papyrusContentOutline' extension points into the org.eclipse.papyrus.infra.ui namespace * moving various UI-related services such as EditorLifeycleManager, SaveLayoutBeforeClose, and the IMultiDiagramEditor, itself, into the org.eclipse.papyrus.infra.ui bundle This necessitates not only widespread refactorings on the moved APIs, but also concomitant move of other APIs in other bundles because they cannot plausibly use these moved APIs from their new home in org.eclipse.papyrus.infra.ui and/or they cannot reasonably also be moved to the UI bundle and/or they must be used by bundles that now have no UI dependency: * the DI/sash-windows EMF model is moved out of infra.core.sasheditor.di bundle into a new model-only org.eclipse.papyrus.infra.sashwindows.di bundle (which symbolic name incidentally now better reflects the contained Java package names) * the IPageManager and ILocalPageService interfaces are moved out of infra.core.sasheditor.di bundle because they need to remain accessible by headless code such as the edit advices that ensure deletion of sash-model pages for notations that are deleted. These are now in a package named org.eclipse.papyrus.infra.code.sashwindows.di.service. Accordingly the class hierarchy implementing the IPageManager interface is changed: the obsolete PageMngrImpl is deleted, replaced by a BasicPageManagerImpl which now the PageManagerImpl extends. A service factory creates the basic page manager in a headless context, but is overridden by the UI-aware implementation when the UI bundles are installed * the MultiDiagramEditorGefDelegate (which has a GEF 3 dependency) is moved from the org.eclipse.papyrus.infra.core.sasheditor bundle to a new org.eclipse.papyrus.infra.gmfdiag.gef bundle. Its usage for an adapter of ActionRegistry type is extracted out of the CoreMultiDiagramEditor class into a new external adapter-factory in the infra.gmfdiag.gef bundle Tests all still pass (inasmuch as they do in the nightly master builds). Change-Id: I573dee5d9312d6e5746d74575350d0152b591ab3
2016-01-16Refactored the generated code to handle visualID as a String instead ofFlorian Noyrit102-8533/+6879
an int and refactoed the API to comply. Change-Id: Ie459e27d5c80dd18743aeac9e2d745b2f95a4fe0
2015-12-04Bug 477384: [Canonical] Should not use drop requests to create viewsChristian W. Damus2-0/+69
https://bugs.eclipse.org/bugs/show_bug.cgi?id=477384 Changes to core APIs to remove PapyrusCanonicalEditPolicy's dependence on the generated diagram drag-and-drop behavior: * extract the CommonDiagramDragDropEditPolicy's abstract API for information about diagram-specific view types into a new service * update the canonical edit-policy and diagram-to-diagram synchronization infrastructure to use the new VisualTypeService to obtain information about the diagram's specific view types to then let the view service create views without resorting to drop commands * update extensions of various canonical strategies in the UML diagrams to adapt to the new drop-free synchronization mechanism Update the Papyrus Diagram GMFGen extensions and code generation templates to add generation of the IVisualTypeProvider that plugs into the new VisualTypeService to support canonical synchronization and drag-and-drop. Includes regeneration of the GMFGen extension model using EMF's most recent templates, which result in minor changes to most model source files. Regenerate all UML diagrams to create and register the visual type provider extensions. Also update the BREE for diagrams to 1.8 because at least one of them requires Java 8 to compile properly. * Note that the interaction overview diagram uses a code generator that is not published on Eclipse.org, so I had to emulate the code generation step for this one * Note also that the SysML 1.1 diagrams likewise cannot be re-generated but, moreover, they do not implement the common pattern for Visual ID Registry, so they are also updated "by hand" for parity with the Mars implementation of drag-and-drop (which had gaps) Deprecate the ICreationTargetStrategy extension API which was only needed to redirect drag-and-drop requests, but these are no longer employed in the canonical synchronization. Also some fixes for region layout problems in the State Machine Diagram: * update custom creation edit policies to re-use the commands used by drag-and-drop and untargeted creation that perform initial placement of new regions * fix the GMFGen to register the custom creation edit policy for the state machine compartment Change-Id: I3afc68d6f0f1bfe05e336c9138a7f1acbc8f643b
2015-11-26Bug 481963 - [StateMachine diagram] Should be possible to drop hidedashatilov1-2/+5
constraint from model explorer Change-Id: Iefc75448384843f58806ccd788d275bb891c4da0 Signed-off-by: ashatilov <shatilov@montages.com>
2015-10-27Bug 479627 - [All diagrams] Manage <Connector> Labels dialog should beashatilov25-200/+50
as well used for external node labels - squash commit for abandoned verified gerrits (+2 from Remi): Change-Id: I14831fdc65207912ac16a65dfc50e930d5e3aa58 Change-Id: Iffe443ab5189d81d93804f0d4201d8c04bef8e79 Change-Id: Ic94e78dfceeb8d2eaf2b3515c2122b173668b939 Change-Id: I685836ccf34e6b5682630cf50431fa1053c3388a Change-Id: Ia97e4a9ee47f086efe27dd4d9a110abe0af5660b Change-Id: I8cbdc2e60e03956ec091495f0855d84d432ed5e5 Change-Id: Ie6ec55db5e50a66ce840450e24fc402585d6e592 Change-Id: I6b7c7d70b301a4a65abbdeb817dd10e662840a9f Change-Id: Ic9edd422fe3331fe5d6e92c198bce8432c82c0c9 Signed-off-by: ashatilov <shatilov@montages.com>
2015-10-23Bug 479844 - [All diagrams] Labels of affixed nodes should be managed byashatilov1-64/+67
CSS like all other external labels - plugin.xtend template supports a label visibility feature for external node labels - init label visibility for external node labels - re-generated: - Class diagram - Component diagram - Composite diagram - Statemachine diagram - Profile diagram - Usecase diagram - Communication diagram (p.s. Activity diagram will be re-generated in the next gerrit) Change-Id: I596f2652a16a7e6e8fedcd096066929cbeb10302 Signed-off-by: ashatilov <shatilov@montages.com>
2015-10-23Bug 478772 - There should be no @generated NOT codeatischenko39-39/+39
Add ability to override performDirectEdit(char initialCharacter) method Change-Id: Ifa238ed0f123224fd9337b040c6ae9c9d7df4c6b Signed-off-by: atischenko <tischenko@montages.com>
2015-10-02Bug 454406 - [All diagrams] Cannot draw context link from existingashatilov1-0/+2
constraint Change-Id: I12a6f5a06a5cde65b192f6aa945d4b63fc948ebe Signed-off-by: ashatilov <shatilov@montages.com>
2015-09-25Bug 446054 - [All Diagrams] No graphical impact when changingashatilov1-2/+2
Comment/Constraint link width - "Comment Link": Communication,Component,Composite,Deployment, Activity - "Constraint Link": StateMachine,Activity Change-Id: Ie123b2c3322846a7e484d9a5ddb837ebba9df034 Signed-off-by: ashatilov <shatilov@montages.com>
2015-09-18Bug 471292 - [Diagram] Compartment shall not be decocationNode butMickael ADAM1-6/+1
BasicCompartment https://bugs.eclipse.org/bugs/show_bug.cgi?id=471292 -Patch set2: Adds reconciler to 1.2.0 Remove changes on .xpt file Change-Id: I951d1ce0d3206497bb6abf5475e740713f58b94e Signed-off-by: Mickael ADAM <mickael.adam@ALL4TEC.net>
2015-07-23Regenerate StateDskovalsky112-51254/+51394
- use papyrus_formatter.xml - regenerate Change-Id: I4b1078cf721b24efa6d172d843ffc07eea7955fe Signed-off-by: skovalsky <kovalsky@montages.com>
2015-06-10Bug 469073: [All Diagrams] XY-Compartment scroll should respect snap tomgolubev3-6/+6
grid of inner nodes Change-Id: Idff5e8c103c7d1a4d208dc31e609995dd2f10d5d Signed-off-by: mgolubev <golubev@montages.com> Reviewed-on: https://git.eclipse.org/r/49318 Reviewed-by: Remi Schnekenburger <remi.schnekenburger@cea.fr> Tested-by: Remi Schnekenburger <remi.schnekenburger@cea.fr>
2015-04-30[StateMachine] Delete EditParts which is not generated alreadyskovalsky10-8510/+0
Change-Id: I8b53f845c4580b35e17bcc2b40b647f32fe94ba7 Signed-off-by: skovalsky <kovalsky@montages.com> Reviewed-on: https://git.eclipse.org/r/46363 Tested-by: Hudson CI Reviewed-by: Michael Golubev <golubev@montages.com> Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-04-22Bug 462540 - [Element Types] State diagram should be migrated to the ↵skovalsky80-2645/+1931
elementtypes framework - set define externally -> true - regenerate. Change-Id: I7e093199b8ebfcf83cc24a0c1d144143766cd36f Signed-off-by: skovalsky <kovalsky@montages.com> Reviewed-on: https://git.eclipse.org/r/46034 Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr> Tested-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-04-22Bug 462540 - [Element Types] State diagram should be migrated to the ↵skovalsky2-994/+0
elementtypes framework - remove state and item semantic edit policies (custom & default) - previous migration steps made all the methods here to be effective NOOP's. It should be safe to remove them now. Change-Id: I757ca665e0ec051467bf16eaef6f5dcce0e05515 Signed-off-by: skovalsky <kovalsky@montages.com> Reviewed-on: https://git.eclipse.org/r/46033 Reviewed-by: Michael Golubev <golubev@montages.com> Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr> Tested-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-04-21Bug 461833 - [StateMachine] Ensure ID for palette entries forskovalsky1-81/+76
StateMachineD follows the same pattern as for ClassD Change-Id: I2d18b141d3154cce61e1166b65aedad5c262490b Signed-off-by: skovalsky <kovalsky@montages.com> Reviewed-on: https://git.eclipse.org/r/45694 Tested-by: Hudson CI Reviewed-by: Michael Golubev <golubev@montages.com> Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-04-21Bug 463769 - Stereotype compartment can not be restoredashatilov13-13/+39
- Statemachine diagram contribution Change-Id: I581791005f474f92cbd9ac582f5c435080b64c90 Signed-off-by: ashatilov <montages.as@gmail.com> Reviewed-on: https://git.eclipse.org/r/45322 Tested-by: Hudson CI Reviewed-by: Michael Golubev <golubev@montages.com> Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-04-17Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky24-3015/+558
elementtypes framework - remove unused item semantic edit policies - linebreaks fixed for RegionSemanticEditPolicy Change-Id: Ibd05dae014ce425508783af10140b5418c8e75ab Signed-off-by: skovalsky <kovalsky@montages.com> Reviewed-on: https://git.eclipse.org/r/45347 Reviewed-by: Michael Golubev <golubev@montages.com> Reviewed-by: florian noyrit <florian.noyrit@cea.fr> Tested-by: florian noyrit <florian.noyrit@cea.fr>
2015-04-09Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky6-1691/+0
elementtypes framework - remove canonical edit policies Change-Id: I5d7332afef753782440d1f479c54d2432a58ac6a Signed-off-by: skovalsky <kovalsky@montages.com> Reviewed-on: https://git.eclipse.org/r/45346 Tested-by: Hudson CI Reviewed-by: Michael Golubev <golubev@montages.com> Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-04-07Bug 453343 - Default stereotype-like label are lost after first diagrammgolubev1-1/+1
reopening - All diagrams contribution Change-Id: Ideb9b540fab156457e8d6f92581b2b8d5634dce6 Signed-off-by: mgolubev <golubev@montages.com> Reviewed-on: https://git.eclipse.org/r/45336 Tested-by: Hudson CI Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky2-134/+0
elementtypes framework: - remove transition commands Change-Id: Iffcd86cda4a81e9c217e4537f54d852a2b30a0c8 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky15-574/+0
elementtypes framework: - remove transition commands Change-Id: I5049e25e881a1d1a1d0182cd01a908b8ed8ee404 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky7-333/+0
elementtypes framework: - remove context link commands Change-Id: Iad275e230720069b78817e69b3f301684cbb8183 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky2-303/+0
elementtypes framework: - remove unused generalization commands Change-Id: I90c9607812cd59fcfb8b228830ec3d69a2dc5797 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky20-850/+0
elementtypes framework: - remove constraint constrained element create command Change-Id: I038e3c093b194a01304622ea7165762aa679e258 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky2-150/+0
elementtypes framework: - remove state machine create command Change-Id: Ib7f678e1d74dae8156c3987bbf3d2c37bed03e48 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky2-176/+0
elementtypes framework: - remove state create command Change-Id: I642642e161410cd3b13e349633cdd452f80739ff Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky6-733/+0
elementtypes framework: - remove pseudo points create commands Change-Id: Ice7d5fa696281d4d7c10ec0055735b4892ec01c2 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky4-191/+0
elementtypes framework: - remove region create commands - remove advice binding from plugin.xml for region - change remove region view behavior in advice Change-Id: Ia019bc8a02a86eb3dac61516201041b3503a8142 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky9-1066/+0
elementtypes framework: - remove pseudo elements create commands Change-Id: Id6144c3189a049a533da44149ab88518d297f141 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky2-133/+0
elementtypes framework: - remove final state create commands Change-Id: Id559571494f0aa181804d5466d894a94371621c6 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky4-332/+0
elementtypes framework: - remove state behavior create commands Change-Id: I62d7aa7d051d7e861c7882f5b1345654732e9889 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky3-139/+0
elementtypes framework: - remove connection point reference create command Change-Id: I84028e4a4b4b13afa1a679a41f2427d0017d859e Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky2-133/+0
elementtypes framework: - remove constraint create command Change-Id: If1423aa346a04bc816a25d80a48a95035b042569 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky2-133/+0
elementtypes framework: - remove comment create command Change-Id: Ie51b1405e23f47d6bc5e506c0b9924f9c263ec6b Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky21-505/+0
elementtypes framework: - remove annotated element link create command Change-Id: I1797076ac4552f73652811a14718ece52e787d4a Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky14-252/+0
elementtypes framework: - remove element helpers Change-Id: Ic82684d11308ff74740cfa2aa568462e1b677af5 Signed-off-by: skovalsky <kovalsky@montages.com>
2015-03-29Bug 462540 - [Element Types] State diagram should be migrated to theskovalsky68-319/+307
elementtypes framework: - clear gmfgen - regenrating - add elementtypesconfiguration file Change-Id: Ia073bc53eeadcd3e78997fddfe47e5cc22d1bf4f Signed-off-by: skovalsky <kovalsky@montages.com>
2015-02-13Bug 446054 - [All Diagrams] No graphical impact when changingashatilov2-4/+4
Comment/Constraint link width Fixed for: - ClassD - CommunicationD - ComponentD - CompositeD - DeploymentD - StateMachineD - UseCaseD - ProfileD (rebased from Icd1148c9c7e8b9fd0cd447043209fc328411d93d) Change-Id: I08b717b622ed4d9e44b1bacc8ac90e42ab9b053b Signed-off-by: ashatilov <montages.as@gmail.com>
2015-01-20358625: [All diagrams] Duplicate of an Element creates two ElementsGabriel Pascual4-523/+523
https://bugs.eclipse.org/bugs/show_bug.cgi?id=358625 - Limit scope for the Editpolicy to its paste role Change-Id: Ibbf337e01a6ea19ce6754f1a451b44494805bf57 Signed-off-by: Gabriel Pascual <gabriel.pascual@all4tec.net>
2014-12-0945431: [Diagram] State machine diagram shapes shall be refactoredMickael ADAM87-4448/+14083
https://bugs.eclipse.org/bugs/show_bug.cgi?id=454381 Patch set 1: -Use of GenericShape for: State, StateMachine, InitialNode, FinalState, Junction, DeepHistory, ShallowHistory, Terminate, EntryPoint, ExitPoint, Fork, Choice -Use CSS attribute instead of shape provider for symbol of Activity diagram and state machine diagram. -Used of and improve oep.common.PortPositionLocator to be used for most of affixed node(set of the position(in, out, onLine) coming soon on the next commit. Change-Id: I48f72d9527242cea48d08a55b3518ffd01f2e0c4 Signed-off-by: Mickael ADAM <mickael.adam@ALL4TEC.net>
2014-10-31372322: [Diagram - Refresh] The refresh action is not correctly bindedGabriel Pascual1-94/+0
to F5 https://bugs.eclipse.org/bugs/show_bug.cgi?id=372322 - Remove Refresh binding and an Update command creation of generation engine - Remove binding and generated update command from UML diagram - Preserve previous generated code of old Update command in Common Refresh action handler Change-Id: I75c50ab75859c40e32f98c13f079c16f98eeda46 Signed-off-by: Gabriel Pascual <gabriel.pascual@all4tec.net>
2014-10-28Merge remote-tracking branch 'origin/bugs/440230_440226'Mickael ADAM5-4130/+4130
Conflicts: extraplugins/migration/org.eclipse.papyrus.migration.rsa/META-INF/MANIFEST.MF extraplugins/migration/org.eclipse.papyrus.migration.rsa/transform/RSARTToPapyrusRT.qvto plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.clazz/META-INF/MANIFEST.MF plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/META-INF/MANIFEST.MF plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/model/communicationdiagram.gmfgen plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component/model/ComponentDiagram.gmfgen plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.deployment/META-INF/MANIFEST.MF plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.deployment/src/org/eclipse/papyrus/uml/diagram/deployment/edit/parts/CommentEditPart.java plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.deployment/src/org/eclipse/papyrus/uml/diagram/deployment/edit/parts/CommentEditPartCN.java plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.profile/META-INF/MANIFEST.MF plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.profile/model/profilediagram.gmfgen plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.sequence/custom-src/org/eclipse/papyrus/uml/diagram/sequence/edit/parts/CustomCombinedFragmentEditPart.java plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.statemachine/model/stateMachineDiagram.gmfgen plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.usecase/META-INF/MANIFEST.MF plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.usecase/models/usecaseDiagram.gmfgen releng/top-pom-dev.xml releng/top-pom-extra-tests.xml releng/top-pom-extras.xml releng/top-pom-main-tests.xml releng/top-pom-main.xml releng/top-pom-rcp.xml Change-Id: I8ff25c7122808fabff36f18df448007a68a2bd9c Signed-off-by: Mickael ADAM <mickael.adam@ALL4TEC.net>
2014-10-28440230: [All Diagrams] Add Margins to the LabelsCéline Janssens156-2411/+5207
https://bugs.eclipse.org/bugs/show_bug.cgi?id=440230 Margin and Labels on Mars Change-Id: If62f1665a4697b422df8dc0ffc84c7e95bb659f9 Signed-off-by: Céline Janssens <Celine.Janssens@all4tec.net>
2014-10-15445794: [All Diagram] Label Alignment/Justification is lost when theMickael ADAM5-4130/+4130
name is edited instead of the diagram is closed Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=445794 Generate code to all generable diagram to change DefaultLinkLabelDragPolicy by PapyrusLinkLabelDragPolicy on linkLabelEditPart Do it manually for sequence diagram. Change-Id: Icaec5bd3a6a88dc6a9127c032910d3c6e212ff65 Signed-off-by: Mickael ADAM <mickael.adam@ALL4TEC.net>
2014-10-09Bug 429197 - Comments: New size shadow lies.atischenko1-0/+2
Signed-off-by: atischenko <ticher777@gmail.com>
2014-09-25440230: [All Diagrams] Add Margins to the LabelsCéline Janssens156-2411/+5207
https://bugs.eclipse.org/bugs/show_bug.cgi?id=440230 -StateMachine Diagram: All labels Pseudostate NameEditPart refers to PapyrusWrappingLabel - New Formatter and new Clean up of all the StateMachine Sources - All Labels extends PapyrusLabelEditPart Change-Id: I515fcef643c77f1f46bb62d7e100e444a74f21df Signed-off-by: Céline Janssens <Celine.Janssens@all4tec.net>

Back to the top