Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2016-03-03Bug 485220: [Architecture] Provide a more modular architectureChristian W. Damus4-5/+109
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Complete the configuration of PDE API Tooling in the Papyrus Main and Developer Tools projects, including: * adding the API Analysis nature and builder to .project where it was missing * adding a new menu action in the dev tools Project Management menu to ensure that all Oomph version-management projects in the workspace have API analysis also * fixing API version analysis problems, mostly by upversioning bundles to 2.0 but also applying API filters in some cases where it seems appropriate * implementing project-level API Analysis preferences for warning severity of missing @since doc tags (the default is error) and adding it to the Oomph project preferences management Change-Id: I3f5fad20ffc7bb66eec0abbb86b5cc52aacb1ff1
2016-02-24Bug 485220: [Architecture] Provide a more modular architectureChristian W. Damus2-83/+82
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Implement version management: PDE API Tooling and Oomph Version Management. Introduce two new plug-in projects to manage versioning using Oomph: * org.eclipse.papyrus.releng.main.release for the Main bundles and features * org.eclipse.papyrus.releng.dev.release for the Dev Tools Add new menu actions to the Dev Tools: * main menu bar: * synchronize POM and manifest versions * "Configure" context menu on bundle projects and MANIFEST.MF * optimize bundle dependencies and re-exports * update dependency version ranges to match current workspace and PDE target Remove obsolete menu actions from the Dev Tools: * main menu bar: * Set all Papyrus feature versions * Set all Papyrus plug-in versions * Set versions of all Papyrus dependencies in Papyrus plug-ins Fix versioning errors reported by PDE and Oomph. Ensure proper version ranges consistent with latest build target. Optimize the dependencies of all Papyrus Main bundles and Dev Tools. Remove version- and reexport-checking tests in the BundlesTests that are now not needed because, on the one hand, we now implement discrete bundle versioning (managed by PDE/Oomph) and on the other, we now use re-exports properly to ensure classpath consistency in clients of a bundle's API. Thorough overhaul of the "project editors" API, including: * rationalize the API interfaces * refactor the all-in-one PluginEditor class from the customization bundle to the project-editors bundle * update clients in the Customization and DSML Validation components * fix a bunch of operations that didn't work * add missing operations required by the new Dev Tools actions * complete some unimplemented APIs * add a comprehensive JUnit test suite covering all of the project-editors API Change-Id: I6a699d93909f61099226ceb994140f03ea99a70f
2016-02-13Revert "Bug 485220: [Architecture] Provide a more modular architecture ↵Christian W. Damus1-2/+1
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220" This reverts commit f050d4119a2316b27588076d4fc90152773fc019.
2016-02-13Bug 485220: [Architecture] Provide a more modular architectureChristian W. Damus1-1/+2
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Fix build failure to resolve bundles in referenced p2 repositories by restoring the missing <groupId> elements in the POMs which, as it turns out, are not inherited from the parent module, despite what the m2e validator says. Change-Id: I62dacc9c70c940d28c3c02e1e35c8f874a7d3df0
2016-02-12Bug 485220: [Architecture] Provide a more modular architectureChristian W. Damus5-875/+875
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Factor UI dependencies out of the UML Element Types bundle. This includes moving some advices that interact with the user into a new org.eclipse.papyrus.uml.service.types.ui bundle. Pull up the PasteCommandService and IPasteCommandProvider API into the Infra Diagram layer where the extension point is defined. Deprecate the old API in the UML layer. Introduce a service for participation of languages in CSS styling: * styling reset actions in the Reset Style command * access to semantic model classes and properties to make available to CSS Factor PapyrusObservableValue and cohorts out of the UML Tools bundle into the Infra Layer for more general reuse and to relieve the Diagram Infrastructure layer of UML dependencies. The old API remains as deprecated. Remove the Infra Diagram Layer dependency on UML Layer for property testers governing deletion in the diagram. Includes introduction of a new IGraphicalDeletionHelper OSGi service for delegation of the determination of whether an element can be deleted from the diagram and replacement of the XML expression properties * org.eclipse.papyrus.uml.diagram.common.isSemanticDeletion * org.eclipse.papyrus.uml.diagram.common.isReadOnly by * org.eclipse.papyrus.infra.gmfdiag.common.isSemanticDeletion * org.eclipse.papyrus.infra.gmfdiag.common.canDelete (where the latter is the negation of the property that it supersedes) Extract UML dependencies from the Diagram Outline and CSS Editor bundles. Remove unused MDTUtil APIs that referenced a UML-specific annotation. Move the Diagram Infrastructure CSS Palette bundle into the UML layer because it serves to provide extensions on the Palette Service, which is an overtly UML-specific capability. All client APIs for the Properties View are moved from org.eclipse.papyrus.views.properties bundle to a new org.eclipse.papyrus.infra.properties.ui bundle. This includes renaming of: * extension points * label-provider contexts * XWT namespaces Add an "all UI tests" suite. Define a componentized hierarchical build layout of the main plug-ins Change-Id: I43f8f3644857a18b69715f5a2f1da9b1cf286d67
2016-01-22Bug 485220: [Architecture] Provide a more modular architecture (& builds) ↵Christian W. Damus14-71/+71
for Papyrus https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Refactor the Properties Model bundles into the Infra Layer. The *.views.properties.model[.edit,.editor] bundles are renamed as *.infra.properties[.edit,.editor]. The packages within are correspondingly renamed. To support upgrade installation, special p2 update metadata tells the p2 engine how these bundles have been renamed, ensuring proper replacement of the old *.views.properties.model* bundles, because otherwise the clash of EMF model registrations would cause run-time errors. The *.views.properties.environment extension point is moved to *.infra.properties.environments. The *.views.properties.context extension point has the <context> element moved to a new *.infra.properties.contexts point. The <preferencePageBinding> element remains. JUnit tests pass, at least inasmuch as they pass in the nightly builds. Change-Id: I6445808f8eb1144b08c0cd5f0a487d1bad229a4c
2016-01-22Bug 485220: [Architecture] Provide a more modular architectureChristian W. Damus1-1/+2
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Move UI-dependent APIs from the org.eclipse.papyrus.infra.emf bundle to a new org.eclipse.papyrus.infra.ui.emf bundle. Accordingly move tests into a new org.eclipse.papyrus.infra.ui.emf.tests bundle. Now that we have an UI EMF bundle, move the editor-page advices from the infra.ui bundle into it, which is a more appropriate home for them. One UI dependency is removed by reordering of code in the EMFHelper::getEObject(Object) API: * the EMF Facet tree elements are once again IAdaptables, providing their encapsulated EObjects or EReferences as adapters. So, the case handling IAdaptable is moved ahead of the test for is-an-EObject because these tree elements are also EObjects but are not interesting in themselves Also, the dialog-settings for the EMF Facet customization manager are moved into the infra.ui.emf bundle, as is the lazy initialization of the manager from those settings. Clients are refactored to get the customization manager from this new bundle (via a new ProviderHelper API) to ensure this lazy initialization. Various UI-dependent ServiceUtilsForXyz classes that were in the infra.emf bundle but had nothing to do with EMF are moved into the infra.ui bundle. UI-dependent classes from the org.eclipse.papyrus.infra.emf.readonly bundle are moved into the org.eclipse.papyrus.infra.ui.emf, also. These include extraction of the editor reload listener from the ReadOnlyManager class by means of a new general-purpose IReadOnlyManagerProcessor OSGi service interface. Tests all still pass (inasmuch as they do in the nightly master builds). Change-Id: Ieb0993b2ed1a7a49890d3471c7b42bc4f218fec6
2015-11-26Bug 482927: [Properties] Customization context models should have UI labelsChristian W. Damus1-5/+6
https://bugs.eclipse.org/bugs/show_bug.cgi?id=482927 Add an optional 'label' attribute to the Context class and a derived 'userLabel' that is the 'label' if present, otherwise the 'name'. Use the new derived user label wherever appropriate in the UI: in progress monitors, informational dialogs, and especially the preference pages. In the "Property view" preference page, sort contexts by user label. Update existing context models to provide user-friendly labels.
2015-11-06480969: [Properties View Generation] Generalizations between stereotypesCamille Letavernier1-7/+6
are not taken into account https://bugs.eclipse.org/bugs/show_bug.cgi?id=480969 Change-Id: Ia0c65145ad006974e7d9eca2218b29134cee7bf3 Signed-off-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-08-21[releng] Neon-1.2.0 modification step by stepQuentin Le Menez2-21/+19
Change-Id: I9126d707fecad85c9b5384b35074deba995b6527 Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
2015-07-23443799: [Code Quality] Cleanup code according to FindBugs resultsCamille Letavernier1-10/+5
https://bugs.eclipse.org/bugs/show_bug.cgi?id=443799 - Fix additional issues in some infra and customization bundles
2015-06-11469953: [Releng] Update the build to support a global POMCamille Letavernier1-2/+2
https://bugs.eclipse.org/bugs/show_bug.cgi?id=469953 Change-Id: I050cf9dbbdd5705aaf8d45f2db3458226d148002 Signed-off-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-02-17Bug 457266 - Remove pdoc from papyrus repositoryBenoit Maggi4-38/+21
Change-Id: I621a26b4b5fb54cf096817c7859f8628e423645c Signed-off-by: Benoit Maggi <benoit.maggi@cea.fr>
2014-11-05450151: [Properties View] Improve the Properties View model, editor andCamille Letavernier3-12/+22
generation tool https://bugs.eclipse.org/bugs/show_bug.cgi?id=450151 Support transitive dependencies generation
2014-11-03335332: [Property View] Papyrus shall provide an extensible propertyCamille Letavernier2-2/+16
view runtime https://bugs.eclipse.org/bugs/show_bug.cgi?id=335332 - Initial support for less common Java types with the Ecore Properties generator
2014-09-15[Releng] Update feature versions to 1.1.0Camille Letavernier1-2/+2
2014-09-15[Releng] Change plug-ins version to 1.1.0Camille Letavernier1-14/+14
2014-08-26[Code Style] Configure code style in the projectsChristian W. Damus2-1/+352
Configure the master settings for Code Style in the org.eclipse.papyrus.infra.core plug-in, including: - Code Formatter - Code Clean-up - Code Templates - Import Sort Order Employ the Oomph Project Configuration tooling to propagate these settings to all other Papyrus main, test, and developer plug-ins, plus the CDO Integration plug-ins. Update the Papyrus Oomph model to remove the workspace-wide code style settings. Change-Id: Id1c7c7fb94c82974a9f1c7cafcfcf32b71ce6c1f
2014-08-25[Code style] Apply clean-up profile to Papyrus Main plug-insCamille Letavernier13-168/+167
2014-08-21[Code style] Apply clean-up and formatter on Main plug-insCamille Letavernier38-716/+920
2014-08-20[Releng] Update Papyrus version to 1.0.1 in pom.xmlCamille Letavernier1-2/+2
2014-08-20[Releng] Update versions to 1.0.1Camille Letavernier1-15/+15
2014-06-04[Releng] Remove the (Incubation) suffix from all (main) plug-ins andCamille Letavernier2-2/+2
features Update the Bundle test accordingly
2014-04-30422257: [Performances] Memory leaksChristian W. Damus1-8/+12
https://bugs.eclipse.org/bugs/show_bug.cgi?id=422257 Ensure proper clean-up of resource sets to avoid leaking UML and other models in the UML CacheAdapter.
2014-04-28422257: [Performances] Memory leaksChristian W. Damus8-48/+110
https://bugs.eclipse.org/bugs/show_bug.cgi?id=422257 Ensure clean-up of scratch resource sets created by the Properties Customization wizard, which leak models in the UML CacheAdapter.
2014-04-18423189: [Properties View] papyrus should provide binding validationThibault Le Ouay19-150/+1081
mechanism https://bugs.eclipse.org/bugs/show_bug.cgi?id=423189 423193: [Properties View] Papyrus should provide colored fields according to current state https://bugs.eclipse.org/bugs/show_bug.cgi?id=423193 428423: [Property View] Improvement of inheritance of property view generation https://bugs.eclipse.org/bugs/show_bug.cgi?id=428423 Squashed contributions for these bugs Change-Id: Ief0b22abf97b9ba986e8fe7ca429d53730a86af0 Signed-off-by: Thibault Le Ouay <t.leouay@sherpa-eng.com>
2014-04-17[releng] Generated all the pom.xml files for the plugins and featuresLaurent Wouters1-0/+14
Command: python releng/toolkit/tycho-genertor.py Signed-off-by: Laurent Wouters <laurent.wouters@cea.fr>
2014-03-14[Releng] Fix dependency versionsCamille Letavernier1-8/+8
2014-03-13Merge branch 'bugs/386118-emf-facet'ptessier1-1/+2
Conflicts: plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/listeners/DropTargetListener.java
2014-03-12429998: Missing/Bad genmodelsCamille Letavernier1-1/+1
https://bugs.eclipse.org/bugs/show_bug.cgi?id=429998
2014-03-07Merge remote-tracking branch 'eclipse/master' into 386118-emf-facetCamille Letavernier1-1/+1
Conflicts: plugins/customization/org.eclipse.papyrus.customization.paletteconfiguration/facet/PaletteConfiguration.querySet plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/provider/TableLabelProvider.java plugins/infra/org.eclipse.papyrus.infra.hyperlink/src/org/eclipse/papyrus/infra/hyperlink/ui/EditorLookForEditorShell.java plugins/sysml/modelexplorer/org.eclipse.papyrus.sysml.modelexplorer/resources/SysMLDefaultExplorerCustomization.uiCustom plugins/sysml/modelexplorer/org.eclipse.papyrus.sysml.modelexplorer/resources/SysMLDefaultExplorerQueries.querySet plugins/uml/modelexplorer/org.eclipse.papyrus.uml.modelexplorer/resource/PapyrusBrowserQuery.querySet plugins/uml/modelexplorer/org.eclipse.papyrus.uml.modelexplorer/resource/PapyrusUMLFacet.facetSet plugins/uml/modelexplorer/org.eclipse.papyrus.uml.modelexplorer/resource/SimpleUML.uiCustom plugins/uml/modelexplorer/org.eclipse.papyrus.uml.modelexplorer/resource/UMLPapyrusDefaultBrowserCustomization.uiCustom
2014-03-06429744: [UML 2.5] Migrate Papyrus to UML 2.5Camille Letavernier1-1/+1
https://bugs.eclipse.org/bugs/show_bug.cgi?id=429744 The following URIs have been updated in all Papyrus plug-ins (Excluding extra): - http://www.eclipse.org/uml2/4.0.0/UML/Profile/L2 -> http://www.eclipse.org/uml2/5.0.0/UML/Profile/Standard - http://www.eclipse.org/uml2/4.0.0/UML -> http://www.eclipse.org/uml2/5.0.0/UML - http://www.eclipse.org/uml2/4.0.0/Types -> http://www.eclipse.org/uml2/5.0.0/Types
2014-02-14386118: [EMF Facet] Papyrus should progressively support EMF Facet 0.2ptessier1-1/+0
https://bugs.eclipse.org/bugs/show_bug.cgi?id=386118
2014-02-10386118: [EMF Facet] Papyrus should progressively support EMF Facet 0.2Patrick tessier1-1/+3
https://bugs.eclipse.org/bugs/show_bug.cgi?id=386118 import EMF-FACET
2013-12-06423432: [Performances - Properties view] Improve properties view loadingCamille Letavernier5-14/+14
on startup https://bugs.eclipse.org/bugs/show_bug.cgi?id=423432 Fix compilation issues from previous commit
2013-11-13263430: [General] Add relengCamille Letavernier1-16/+16
https://bugs.eclipse.org/bugs/show_bug.cgi?id=263430 Luna: Update plug-in version numbers to 1.0.0
2013-07-04[Releng] Update Papyrus version to 0.10.1cletavernie1-11/+11
2013-06-12364586: [Property View - UML] There should be a better support for editing ↵cletavernie6-8/+37
UML Datatype instances https://bugs.eclipse.org/bugs/show_bug.cgi?id=364586
2013-05-31335332: [Property View] Papyrus shall provide an extensible property view ↵cletavernie1-3/+13
runtime https://bugs.eclipse.org/bugs/show_bug.cgi?id=335332 Improve robustness of the generation wizard
2012-09-18Kepler: Update plug-in versions to 0.10.0cletavernie1-15/+18
2012-09-17380517: [Papyrus] We should use explicit plug-in dependencies whenever possiblecletavernie13-34/+17
https://bugs.eclipse.org/bugs/show_bug.cgi?id=380517 + removed some unused dependencies and imports
2012-08-29335332: [Property View] Papyrus shall provide an extensible property view ↵cletavernie7-103/+355
runtime https://bugs.eclipse.org/bugs/show_bug.cgi?id=335332 Improve the properties view generation
2012-06-28383748: [Properties View] Customization & Generation do not work with a ↵cletavernie2-5/+21
default Papyrus installation https://bugs.eclipse.org/bugs/show_bug.cgi?id=383748
2012-06-28335332: [Property View] Papyrus shall provide an extensible property view ↵cletavernie1-2/+2
runtime https://bugs.eclipse.org/bugs/show_bug.cgi?id=335332
2012-03-22357348: [Build] Papyrus shall provide a source buildcletavernie1-1/+2
https://bugs.eclipse.org/bugs/show_bug.cgi?id=357348 Fixed illformed build.properties files
2012-01-31364586: [Property View - UML] There should be a better support for editing ↵cletavernie8-171/+254
UML Datatype instances https://bugs.eclipse.org/bugs/show_bug.cgi?id=364586
2012-01-30364586: [Property View - UML] There should be a better support for editing ↵cletavernie9-145/+462
UML Datatype instances https://bugs.eclipse.org/bugs/show_bug.cgi?id=364586
2011-12-21359794: [UML - Tools] Content/Label providerscletavernie19-504/+285
https://bugs.eclipse.org/bugs/show_bug.cgi?id=359794 367066: [Refactoring] There should be a central generic plug-in for pure EMF-based tools https://bugs.eclipse.org/bugs/show_bug.cgi?id=367066 351802: [Constraints] The Property View constraints model should be more generic https://bugs.eclipse.org/bugs/show_bug.cgi?id=351802
2011-12-19Removed unused dependency, formatted model files, and other small changescletavernie14-24916/+10
2011-12-15366527: [All diagram][refactoring] update papyrus to UML2.4cletavernie2-2/+3
https://bugs.eclipse.org/bugs/show_bug.cgi?id=366527

Back to the top