├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.textile ├── addons ├── cinematic │ ├── features │ │ └── org.obeonetwork.cinematic.gen.html.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.cinematic.gen.html.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── bootstrap │ │ │ └── bootstrap.zip │ │ ├── build.properties │ │ ├── icons │ │ │ └── default.gif │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── cinematic │ │ │ └── gen │ │ │ └── html │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ ├── common │ │ │ └── GenerateAll.java │ │ │ ├── dialogs │ │ │ ├── FileExtensionViewerFilter.java │ │ │ └── SpecificWorkspaceResourceDialog.java │ │ │ └── popupMenus │ │ │ └── AcceleoGenerateHtmlAction.java │ │ └── org.obeonetwork.cinematic.gen.html │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ └── org │ │ │ └── obeonetwork │ │ │ └── cinematic │ │ │ └── gen │ │ │ └── html │ │ │ ├── Activator.java │ │ │ ├── common │ │ │ └── common.mtl │ │ │ ├── files │ │ │ ├── htmlActionStateFile.mtl │ │ │ ├── htmlMultipleTransitionsFile.mtl │ │ │ ├── htmlViewStateFile.mtl │ │ │ └── index.mtl │ │ │ ├── main │ │ │ ├── Main.java │ │ │ ├── html.properties │ │ │ ├── main.mtl │ │ │ └── toolkits.properties │ │ │ ├── requests │ │ │ └── requests.mtl │ │ │ └── services │ │ │ ├── CinematicServices.java │ │ │ └── cinematicServices.mtl │ │ └── tasks │ │ ├── main.xml │ │ └── mainTarget.xml ├── graalextensions │ ├── features │ │ └── org.obeonetwork.graal.extensions.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.graal.extensions.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── Risk.gif │ │ │ │ └── Version.gif │ │ ├── model │ │ │ ├── safran-graal-extensions.components │ │ │ └── safran-graal-extensions.eefgen │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ ├── graalextensions_properties.plugin.xml │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── graalextensions │ │ │ │ ├── components │ │ │ │ ├── RiskPropertiesEditionComponent.java │ │ │ │ └── VersionPropertiesEditionComponent.java │ │ │ │ ├── parts │ │ │ │ ├── GraalextensionsViewsRepository.java │ │ │ │ ├── RiskPropertiesEditionPart.java │ │ │ │ ├── VersionPropertiesEditionPart.java │ │ │ │ ├── forms │ │ │ │ │ ├── RiskPropertiesEditionPartForm.java │ │ │ │ │ └── VersionPropertiesEditionPartForm.java │ │ │ │ └── impl │ │ │ │ │ ├── RiskPropertiesEditionPartImpl.java │ │ │ │ │ └── VersionPropertiesEditionPartImpl.java │ │ │ │ └── providers │ │ │ │ ├── GraalextensionsEEFAdapterFactory.java │ │ │ │ ├── GraalextensionsMessages.java │ │ │ │ ├── GraalextensionsPropertiesEditionPartProvider.java │ │ │ │ ├── RiskPropertiesEditionProvider.java │ │ │ │ ├── VersionPropertiesEditionProvider.java │ │ │ │ ├── graalextensionsMessages.properties │ │ │ │ └── graalextensionsMessages_fr.properties │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── graalextensions │ │ │ ├── adapterfactory │ │ │ └── CustomAdapterFactory.java │ │ │ ├── components │ │ │ └── CustomRiskPropertiesEditionComponent.java │ │ │ ├── filter │ │ │ └── GraalExtensionsFilter.java │ │ │ ├── parts │ │ │ ├── CustomEEFEditorSettings.java │ │ │ ├── TextWithButton.java │ │ │ └── forms │ │ │ │ ├── CustomRiskPropertiesEditionPartForm.java │ │ │ │ └── CustomVersionPropertiesEditionPartForm.java │ │ │ ├── provider │ │ │ ├── GraalExtensionsItemProviderAdapterFactory.java │ │ │ ├── RiskItemProvider.java │ │ │ └── SafrangraalextensionsEditPlugin.java │ │ │ └── providers │ │ │ ├── CustomEEFLabelProvider.java │ │ │ └── CustomRiskPropertiesEditionProvider.java │ │ └── org.obeonetwork.graal.extensions │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── safran-graal-extensions.ecore │ │ └── safran-graal-extensions.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── graalextensions │ │ ├── BenefitsLevel.java │ │ ├── DrawbacksLevel.java │ │ ├── GraalExtensionsFactory.java │ │ ├── GraalExtensionsPackage.java │ │ ├── Risk.java │ │ ├── RiskLevel.java │ │ ├── impl │ │ ├── GraalExtensionsFactoryImpl.java │ │ ├── GraalExtensionsPackageImpl.java │ │ └── RiskImpl.java │ │ └── util │ │ ├── GraalExtensionsAdapterFactory.java │ │ ├── GraalExtensionsResourceFactoryImpl.java │ │ ├── GraalExtensionsResourceImpl.java │ │ └── GraalExtensionsSwitch.java ├── lifecycle │ ├── features │ │ └── org.obeonetwork.project.lifecycle.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.project.lifecycle.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ │ ├── ISD - Business Project importer-toc.xml │ │ │ ├── ISD - Business Project importer.html │ │ │ ├── ISD - Business Project importer.textile │ │ │ └── pics │ │ │ │ ├── import1.png │ │ │ │ ├── import10.png │ │ │ │ ├── import2.png │ │ │ │ ├── import3.png │ │ │ │ ├── import4.png │ │ │ │ ├── import5.png │ │ │ │ ├── import6.png │ │ │ │ ├── import7.png │ │ │ │ ├── import8.png │ │ │ │ └── import9.png │ │ ├── plugin.xml │ │ └── pom.xml │ │ ├── org.obeonetwork.project.lifecycle.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── ModelingProject.gif │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ ├── eclipse │ │ │ └── wb │ │ │ │ └── swt │ │ │ │ └── SWTResourceManager.java │ │ │ └── obeonetwork │ │ │ └── project │ │ │ └── lifecycle │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ ├── BusinessProjectImportExportDialog.java │ │ │ ├── Messages.java │ │ │ ├── dialogs │ │ │ ├── ReferenceDataLabelProvider.java │ │ │ └── ReferencingElementsDialog.java │ │ │ ├── messages.properties │ │ │ └── wizards │ │ │ ├── BusinessProjectImportWizard.java │ │ │ └── BusinessProjectImportWizardPage.java │ │ └── org.obeonetwork.project.lifecycle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── project │ │ └── lifecycle │ │ ├── Activator.java │ │ ├── BusinessProjectImporter.java │ │ ├── BusinessProjectImporterFactory.java │ │ ├── CollaborativeBusinessProjectImporter.java │ │ ├── ImportData.java │ │ ├── ImporterUtil.java │ │ └── ReferenceData.java ├── scaffolding │ ├── features │ │ ├── org.obeonetwork.database.scaffold.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ └── org.obeonetwork.database.ui.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.database.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ │ ├── ISD - Base de donnees et Scaffolding-toc.xml │ │ │ ├── ISD - Base de donnees et Scaffolding.html │ │ │ ├── ISD - Base de donnees et Scaffolding.textile │ │ │ └── pics │ │ │ │ ├── BDD-ModelCreationWizard-01.png │ │ │ │ ├── BDD-ModelCreationWizard-02.png │ │ │ │ ├── BDD-ModelCreationWizard-03.png │ │ │ │ ├── BDD_ApplyChangelog.png │ │ │ │ ├── BDD_ApplyChangelog_Connection.png │ │ │ │ ├── BDD_Column_Enum.png │ │ │ │ ├── BDD_Column_Varchar.png │ │ │ │ ├── BDD_Compare_01.png │ │ │ │ ├── BDD_CreateDatabaseRepresentation_01.png │ │ │ │ ├── BDD_GenSQL_01.png │ │ │ │ ├── BDD_GenSQL_02.png │ │ │ │ ├── BDD_Import_01.png │ │ │ │ ├── BDD_Import_02.png │ │ │ │ ├── BDD_Liquibase_Gen_01.png │ │ │ │ ├── BDD_Liquibase_Gen_01_Options.png │ │ │ │ ├── BDD_Liquibase_Gen_02.png │ │ │ │ ├── BDD_ModeleLogique_01.png │ │ │ │ ├── BDD_ModeleLogique_02.png │ │ │ │ ├── BDD_ModelePhysique_01.png │ │ │ │ ├── BDD_Modelisation_01.png │ │ │ │ ├── BDD_PartialView_01.png │ │ │ │ ├── BDD_Retro_01.png │ │ │ │ ├── BDD_Retro_02.png │ │ │ │ ├── BDD_SQL_01.png │ │ │ │ ├── BDD_SQL_02.png │ │ │ │ ├── BDD_Transfo_01.png │ │ │ │ ├── BDD_Transfo_02.png │ │ │ │ ├── BDD_Transfo_03.png │ │ │ │ ├── BDD_Transfo_04.png │ │ │ │ ├── BDD_Transfo_05.png │ │ │ │ ├── BDD_Transfo_06.png │ │ │ │ ├── TypeLibrary-ModelCreationWizard-01.png │ │ │ │ └── TypeLibrary-ModelCreationWizard-02.png │ │ ├── plugin.xml │ │ └── pom.xml │ │ ├── org.obeonetwork.database.scaffold.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── EObjectToEObjectMap.gif │ │ │ │ ├── ScaffoldInfo.gif │ │ │ │ └── TraceabilityInfo.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── database │ │ │ └── scaffold │ │ │ └── provider │ │ │ ├── EObjectToEObjectMapItemProvider.java │ │ │ ├── ScaffoldEditPlugin.java │ │ │ ├── ScaffoldInfoItemProvider.java │ │ │ ├── ScaffoldItemProviderAdapterFactory.java │ │ │ └── TraceabilityInfoItemProvider.java │ │ ├── org.obeonetwork.database.scaffold.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ └── ScaffoldModelFile.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── database │ │ │ └── scaffold │ │ │ └── presentation │ │ │ ├── ScaffoldActionBarContributor.java │ │ │ ├── ScaffoldEditor.java │ │ │ └── ScaffoldEditorPlugin.java │ │ ├── org.obeonetwork.database.scaffold │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── scaffold.ecore │ │ │ └── scaffold.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── database │ │ │ └── scaffold │ │ │ ├── ScaffoldFactory.java │ │ │ ├── ScaffoldInfo.java │ │ │ ├── ScaffoldPackage.java │ │ │ ├── ScaffoldType.java │ │ │ ├── TraceabilityInfo.java │ │ │ ├── impl │ │ │ ├── EObjectToEObjectMapImpl.java │ │ │ ├── ScaffoldFactoryImpl.java │ │ │ ├── ScaffoldInfoImpl.java │ │ │ ├── ScaffoldPackageImpl.java │ │ │ └── TraceabilityInfoImpl.java │ │ │ └── util │ │ │ ├── ScaffoldAdapterFactory.java │ │ │ ├── ScaffoldResourceFactoryImpl.java │ │ │ ├── ScaffoldResourceImpl.java │ │ │ └── ScaffoldSwitch.java │ │ ├── org.obeonetwork.database.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── models │ │ │ ├── entity2mld │ │ │ │ ├── 1-simple-pk-et-fk │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 10-handling-schemas-with-scaffold │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ ├── 3-expected-mld.database │ │ │ │ │ └── test.scaffold │ │ │ │ ├── 11-rename-table │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ ├── 3-expected-mld.database │ │ │ │ │ └── test.scaffold │ │ │ │ ├── 12-multiple-fk │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 13-mindef-cas1 │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 14-mindef-cas2 │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 15-mindef-cas3 │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ ├── 3-expected-mld.database │ │ │ │ │ ├── BAK1-input-entity.entity │ │ │ │ │ └── BAK3-expected-mld.database │ │ │ │ ├── 16-mindef-cas4 │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 17-mindef-cas5 │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 18-safran-189 │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 19-safran-336-attribut-sans-type │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 2-medium │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ ├── 3-expected-mld.database │ │ │ │ │ └── test.scaffold │ │ │ │ ├── 20-safran-428-associatedTypes │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 1-input-soa.soa │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 21-safran-429-namespace-description │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 22.1-safran-496-multiple-indexes-per-entity---initial │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 22.2-safran-496-multiple-indexes-per-entity---create │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 22.3-safran-496-multiple-indexes-per-entity---update │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 23-sans-champs-techniques │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 24.1-safran-711-simple-target │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 24.2-safran-711-double-target │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 25.1-safran-712-two-bidirectionnal-references │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 25.2-safran-712-two-bidirectionnal-containments │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 25.3-safran-712-two-bidirectionnal-reference-different-namespaces │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 26.1-safran-715-simple-reflexive │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 26.2-safran-715-multiple-reflexive │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 26.3-safran-715-reflexive-target-name │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 26.4-safran-715-update-add-reflexive │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ ├── 3-expected-mld.database │ │ │ │ │ └── test.scaffold │ │ │ │ ├── 3-reference-supprimee │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ ├── 3-expected-mld.database │ │ │ │ │ └── test.scaffold │ │ │ │ ├── 4-safran-130-inverse │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 5-column-lost-in-index │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ ├── 3-expected-mld.database │ │ │ │ │ └── test.scaffold │ │ │ │ ├── 6-safran-156 │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 7-multiple-constraints-on-entity │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 8-index-on-fk │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ │ └── 9-handling-schemas │ │ │ │ │ ├── 1-input-entity.entity │ │ │ │ │ ├── 2-input-mld.database │ │ │ │ │ └── 3-expected-mld.database │ │ │ ├── mld2entity │ │ │ │ ├── 1-simple-pk-et-fk │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ └── 3-expected-entity.entity │ │ │ │ ├── 10-safran-429-schema-comments │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ └── 3-expected-entity.entity │ │ │ │ ├── 11.1-safran-496-multiple-indexes-per-entity---create │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ └── 3-expected-entity.entity │ │ │ │ ├── 11.2-safran-496-multiple-indexes-per-entity---update │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ └── 3-expected-entity.entity │ │ │ │ ├── 2-simple-scaffoldmodel │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ ├── 3-expected-entity.entity │ │ │ │ │ └── test.scaffold │ │ │ │ ├── 3-medium │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ └── 3-expected-entity.entity │ │ │ │ ├── 4-complexe-avec-scaffold │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ ├── 3-expected-entity.entity │ │ │ │ │ └── test.scaffold │ │ │ │ ├── 5-simple-fk-unique-safran-130 │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ └── 3-expected-entity.entity │ │ │ │ ├── 6-multiple-constraints-on-entity │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ └── 3-expected-entity.entity │ │ │ │ ├── 7-handling-schemas-with-scaffold │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ ├── 3-expected-entity.entity │ │ │ │ │ └── test.scaffold │ │ │ │ ├── 8-mindef-jointable │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ └── 3-expected-entity.entity │ │ │ │ └── 9-mindef-jointable-with-scaffold │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-entity.entity │ │ │ │ │ ├── 3-expected-entity.entity │ │ │ │ │ └── test.scaffold │ │ │ ├── mld2mpd │ │ │ │ ├── 1-oracle-simple │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ └── 3-expected-mpd.database │ │ │ │ ├── 10-safran-416-sequence-initialcomments │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ └── 3-expected-mpd.database │ │ │ │ ├── 11-oracle-default-length-and-precision │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ └── 3-expected-mpd.database │ │ │ │ ├── 12-mariadb-simple │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ └── 3-expected-mpd.database │ │ │ │ ├── 2-oracle-constraint │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ └── 3-expected-mpd.database │ │ │ │ ├── 3-safran155-oracle-concurrentmodification │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ ├── 3-expected-mpd.database │ │ │ │ │ └── test.scaffold │ │ │ │ ├── 4-mysql-simple │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ └── 3-expected-mpd.database │ │ │ │ ├── 5-h2-simple │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ └── 3-expected-mpd.database │ │ │ │ ├── 6-sqlserver-simple │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ └── 3-expected-mpd.database │ │ │ │ ├── 7-postgres-simple │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ └── 3-expected-mpd.database │ │ │ │ ├── 8-safran-416-sequence-comments │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ ├── 3-expected-mpd.database │ │ │ │ │ └── test.scaffold │ │ │ │ └── 9-safran-417-sequence-attributes │ │ │ │ │ ├── 1-input-mld.database │ │ │ │ │ ├── 2-input-mpd.database │ │ │ │ │ ├── 3-expected-mpd.database │ │ │ │ │ └── test.scaffold │ │ │ └── mpd2mld │ │ │ │ ├── 1-oracle-simple │ │ │ │ ├── 1-input-mpd.database │ │ │ │ ├── 2-input-mld.database │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 2-input-mld.database │ │ │ │ ├── 2-oracle-avec-refs │ │ │ │ ├── 1-input-mpd.database │ │ │ │ ├── 2-input-mld.database │ │ │ │ ├── 3-expected-mld.database │ │ │ │ ├── additional-resource-mld.database │ │ │ │ └── referenced-mpd.database │ │ │ │ ├── 3-bcp-suppressions │ │ │ │ ├── 1-input-mpd.database │ │ │ │ ├── 2-input-mld.database │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 4-bcp-suppressions-et-scaffold │ │ │ │ ├── 1-input-mpd.database │ │ │ │ ├── 2-input-mld.database │ │ │ │ ├── 3-expected-mld.database │ │ │ │ └── test.scaffold │ │ │ │ ├── 5-mysql-simple │ │ │ │ ├── 1-input-mpd.database │ │ │ │ ├── 2-input-mld.database │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 6-h2-simple │ │ │ │ ├── 1-input-mpd.database │ │ │ │ ├── 2-input-mld.database │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 7-sqlserver-simple │ │ │ │ ├── 1-input-mpd.database │ │ │ │ ├── 2-input-mld.database │ │ │ │ └── 3-expected-mld.database │ │ │ │ ├── 8-postgres-simple │ │ │ │ ├── 1-input-mpd.database │ │ │ │ ├── 2-input-mld.database │ │ │ │ └── 3-expected-mld.database │ │ │ │ └── 9-mariadb-simple │ │ │ │ ├── 1-input-mpd.database │ │ │ │ ├── 2-input-mld.database │ │ │ │ └── 3-expected-mld.database │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── database │ │ │ └── transfo │ │ │ ├── AbstractTransformationTest.java │ │ │ ├── EntityToMldTest.java │ │ │ ├── MldToEntityTest.java │ │ │ ├── MldToMpdTest.java │ │ │ └── MpdToMldTest.java │ │ ├── org.obeonetwork.database.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── DataBase.gif │ │ │ ├── LiquibaseGen.png │ │ │ ├── LiquibaseGenDisabled.png │ │ │ ├── LiquibaseIcon.svg │ │ │ ├── SqlFile.gif │ │ │ └── SqlFileDisabled.gif │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ ├── eclipse │ │ │ └── wb │ │ │ │ └── swt │ │ │ │ └── SWTResourceManager.java │ │ │ └── obeonetwork │ │ │ └── database │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ ├── actions │ │ │ ├── AbstractExportAsAction.java │ │ │ ├── AbstractGenerateScriptsFromDatabaseHandler.java │ │ │ ├── AbstractScaffoldHandler.java │ │ │ ├── AddAdditionalObjectsHandler.java │ │ │ ├── ExportAsLiquibaseScriptsAction.java │ │ │ ├── ExportAsSQLScriptsAction.java │ │ │ ├── GenerateLiquibaseFromDatabaseHandler.java │ │ │ ├── GenerateSQLFromDatabaseHandler.java │ │ │ ├── ScaffoldEntityToLogicalDatabaseHandler.java │ │ │ ├── ScaffoldLogicalDatabaseToEntityHandler.java │ │ │ ├── ScaffoldLogicalDatabaseToPhysicalDatabaseHandler.java │ │ │ ├── ScaffoldPhysicalDatabaseToLogicalDatabaseHandler.java │ │ │ └── testers │ │ │ │ ├── AbstractScaffoldingPropertyTester.java │ │ │ │ ├── TestFileExtension.java │ │ │ │ ├── TestInputIsScaffoldModel.java │ │ │ │ ├── TestIsLogical.java │ │ │ │ ├── TestMultipleInputIsValid.java │ │ │ │ └── TestScaffoldingInput.java │ │ │ ├── compare │ │ │ └── viewer │ │ │ │ ├── content │ │ │ │ └── DBDiffAccessorFactory.java │ │ │ │ ├── extenders │ │ │ │ └── DBDiffGroupExtender.java │ │ │ │ └── filters │ │ │ │ └── SQLDifferencesFilter.java │ │ │ ├── dialogs │ │ │ ├── FileExtensionsViewerFilter.java │ │ │ └── SpecificWorkspaceResourceDialog.java │ │ │ ├── util │ │ │ └── ScaffoldingUtils.java │ │ │ └── wizards │ │ │ ├── imports │ │ │ ├── DatabaseImportHelper.java │ │ │ ├── DatabaseImportWizard.java │ │ │ ├── DatabaseImportWizardPage.java │ │ │ ├── DatabaseInfos.java │ │ │ └── ImportRunnable.java │ │ │ └── scaffolding │ │ │ ├── AddAdditionalObjectsWizard.java │ │ │ ├── AdditionalObjectsComposite.java │ │ │ ├── ScaffoldingOperation.java │ │ │ ├── ScaffoldingWizard.java │ │ │ ├── SpecifyAdditionalObjects2WaysPage.java │ │ │ └── SpecifyAdditionalObjectsPage.java │ │ └── org.obeonetwork.database │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── database │ │ ├── Activator.java │ │ └── transfo │ │ ├── AbstractTransformation.java │ │ ├── InitializerException.java │ │ ├── Transformation.java │ │ ├── TransformationException.java │ │ ├── collab │ │ └── CollabTransformationInitializer.java │ │ ├── impl │ │ ├── Entity-to-LogicalTypes.properties │ │ ├── EntityToMLD.java │ │ ├── LogicalTypes-to-Entity.properties │ │ ├── LogicalTypes-to-H2.properties │ │ ├── LogicalTypes-to-MariaDB.properties │ │ ├── LogicalTypes-to-MySQL.properties │ │ ├── LogicalTypes-to-Oracle.properties │ │ ├── LogicalTypes-to-Postgres.properties │ │ ├── LogicalTypes-to-SQLServer.properties │ │ ├── MLDToEntity.java │ │ ├── MLDToMPD.java │ │ ├── MPDToMLD.java │ │ └── MpdToMldBidiRules.java │ │ └── util │ │ ├── AdditionalFieldsUtils.java │ │ ├── AnnotationHelper.java │ │ ├── DeleteUtils.java │ │ ├── EntityUtils.java │ │ ├── LabelProvider.java │ │ ├── ModelUtils.java │ │ └── StringUtils.java ├── structuredtypes │ ├── features │ │ └── org.obeonetwork.feature.is │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.is.design.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ │ ├── ISD - Entity (ISD consolidated view)-toc.xml │ │ │ ├── ISD - Entity (ISD consolidated view).html │ │ │ ├── ISD - Entity (ISD consolidated view).textile │ │ │ ├── ISD - Graal Methodology (ISD consolidated view)-toc.xml │ │ │ ├── ISD - Graal Methodology (ISD consolidated view).html │ │ │ ├── ISD - Graal Methodology (ISD consolidated view).textile │ │ │ ├── ISD - SOA (ISD consolidated view)-toc.xml │ │ │ ├── ISD - SOA (ISD consolidated view).html │ │ │ ├── ISD - SOA (ISD consolidated view).textile │ │ │ └── pics │ │ │ │ ├── entities │ │ │ │ ├── NewTable.png │ │ │ │ └── Table.png │ │ │ │ ├── graal │ │ │ │ ├── NewTable.png │ │ │ │ └── Table.png │ │ │ │ └── soa │ │ │ │ ├── NewTable.png │ │ │ │ └── Table.png │ │ ├── plugin.xml │ │ └── pom.xml │ │ └── org.obeonetwork.is.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── description │ │ └── safran-is.odesign │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── is │ │ ├── design │ │ ├── Activator.java │ │ └── services │ │ │ └── AnnotationServices.java │ │ ├── handlers │ │ └── SetTargetSchemaHandler.java │ │ └── propertyTesters │ │ └── ReferencePropertyTester.java └── swagger │ ├── features │ └── org.obeonetwork.dsl.soa.gen.swagger.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ └── pom.xml │ └── plugins │ ├── org.obeonetwork.dsl.soa.gen.swagger.preview │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── icons │ │ └── swagger-logo-16x16.png │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── soa │ │ └── gen │ │ └── swagger │ │ └── preview │ │ ├── Activator.java │ │ ├── handlers │ │ ├── SwaggerPreviewAbstractHandler.java │ │ ├── SwaggerPreviewHandler.java │ │ └── SwaggerPreviewSystemNavigatorHandler.java │ │ └── webserver │ │ ├── SwaggerPreviewHttpServlet.java │ │ └── SwaggerPreviewJettyServer.java │ ├── org.obeonetwork.dsl.soa.gen.swagger.tests │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── data │ │ ├── export │ │ │ ├── odts-admin-ws-30 │ │ │ │ ├── json │ │ │ │ │ └── Obeo Designer Team Server - Administration Server-1.0.0.json │ │ │ │ ├── xmi │ │ │ │ │ └── ODTSAdmin.soa │ │ │ │ └── yaml │ │ │ │ │ └── Obeo Designer Team Server - Administration Server-1.0.0.yaml │ │ │ ├── petstore-30 │ │ │ │ ├── json │ │ │ │ │ └── Swagger Petstore - OpenAPI 3.0-1.0.5-SNAPSHOT.json │ │ │ │ ├── xmi │ │ │ │ │ └── Petstore.soa │ │ │ │ └── yaml │ │ │ │ │ └── Swagger Petstore - OpenAPI 3.0-1.0.5-SNAPSHOT.yaml │ │ │ ├── petstore-310 │ │ │ │ ├── json │ │ │ │ │ └── Swagger Petstore - OpenAPI 3.1-1.0.11.json │ │ │ │ ├── xmi │ │ │ │ │ └── Petstore-310.soa │ │ │ │ └── yaml │ │ │ │ │ └── Swagger Petstore - OpenAPI 3.1-1.0.11.yaml │ │ │ ├── petstore-entity-30 │ │ │ │ ├── json │ │ │ │ │ └── Swagger Petstore - OpenAPI 3.0-1.0.5-SNAPSHOT.json │ │ │ │ ├── xmi │ │ │ │ │ ├── Petstore.entity │ │ │ │ │ └── Petstore.soa │ │ │ │ └── yaml │ │ │ │ │ └── Swagger Petstore - OpenAPI 3.0-1.0.5-SNAPSHOT.yaml │ │ │ ├── thetvdb-30 │ │ │ │ ├── json │ │ │ │ │ └── TheTVDB API v3-3.0.0.json │ │ │ │ ├── xmi │ │ │ │ │ └── Thetvdb.soa │ │ │ │ └── yaml │ │ │ │ │ └── TheTVDB API v3-3.0.0.yaml │ │ │ └── thetvdb-extensions-30 │ │ │ │ ├── json │ │ │ │ └── TheTVDB API v3-3.0.0.json │ │ │ │ ├── xmi │ │ │ │ └── Thetvdb.soa │ │ │ │ └── yaml │ │ │ │ └── TheTVDB API v3-3.0.0.yaml │ │ └── import │ │ │ ├── odts-admin-ws-30 │ │ │ ├── json │ │ │ │ └── odts-admin-ws.json │ │ │ ├── xmi │ │ │ │ └── ODTSAdmin.soa │ │ │ └── yaml │ │ │ │ └── odts-admin-ws.yaml │ │ │ ├── petstore-30 │ │ │ ├── json │ │ │ │ └── petstore-openapi.json │ │ │ ├── xmi │ │ │ │ └── Petstore.soa │ │ │ └── yaml │ │ │ │ └── petstore-openapi.yaml │ │ │ ├── petstore-310 │ │ │ ├── json │ │ │ │ └── Swagger Petstore - OpenAPI 3.1-1.0.11.json │ │ │ ├── xmi │ │ │ │ └── Petstore-310.soa │ │ │ └── yaml │ │ │ │ └── Swagger Petstore - OpenAPI 3.1-1.0.11.yaml │ │ │ ├── swagger1 │ │ │ ├── json │ │ │ │ └── swagger_1.json │ │ │ └── xmi │ │ │ │ └── swagger_1.soa │ │ │ ├── swagger2 │ │ │ ├── json │ │ │ │ └── swagger_2.json │ │ │ └── xmi │ │ │ │ └── swagger_2.soa │ │ │ ├── thetvdb-30 │ │ │ ├── json │ │ │ │ └── thetvdb.com.swagger3.json │ │ │ ├── xmi │ │ │ │ └── Thetvdb.soa │ │ │ └── yaml │ │ │ │ └── thetvdb.com.swagger3.yaml │ │ │ └── thetvdb-extensions-30 │ │ │ ├── json │ │ │ └── TheTVDB API v3-3.0.0.json │ │ │ ├── xmi │ │ │ └── Thetvdb.soa │ │ │ └── yaml │ │ │ └── TheTVDB API v3-3.0.0.yaml │ ├── pom.xml │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── soa │ │ └── gen │ │ └── swagger │ │ └── tests │ │ ├── SwaggerGenerationTest.java │ │ ├── SwaggerImportTest.java │ │ └── SwaggerTestHelper.java │ ├── org.obeonetwork.dsl.soa.gen.swagger.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── icons │ │ └── swagger-logo-16x16.png │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── soa │ │ └── gen │ │ └── swagger │ │ └── ui │ │ ├── actions │ │ └── testers │ │ │ └── TestConvertibleSwaggerFile.java │ │ ├── handlers │ │ ├── SwaggerConverterHandler.java │ │ ├── SwaggerExportHandler.java │ │ └── SwaggerImportHandler.java │ │ └── wizards │ │ ├── Messages.java │ │ ├── SwaggerExportWizard.java │ │ ├── SwaggerExportWizardPage.java │ │ ├── SwaggerImportWizard.java │ │ ├── SwaggerImportWizardPage.java │ │ └── messages.properties │ └── org.obeonetwork.dsl.soa.gen.swagger │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ └── src │ └── org │ └── obeonetwork │ └── dsl │ └── soa │ └── gen │ └── swagger │ ├── Activator.java │ ├── HTTPResponseHeaders.java │ ├── HTTPStatusCodes.java │ ├── OpenApiParserHelper.java │ ├── PropertiesExtensionsHelper.java │ ├── SoaComponentBuilder.java │ ├── SwaggerBuilder.java │ ├── SwaggerExporter.java │ ├── SwaggerFileQuery.java │ ├── SwaggerImporter.java │ └── utils │ ├── ComponentGenUtil.java │ ├── ConstrainableElementGenUtil.java │ ├── ExampleGenUtil.java │ ├── NamespaceGenUtil.java │ ├── OperationGenUtil.java │ ├── ParameterGenUtil.java │ ├── PropertyGenUtil.java │ ├── ServiceGenUtil.java │ ├── SwaggerExportUtil.java │ ├── SwaggerFileConverter.java │ ├── SwaggerXToOpenAPI3Converter.java │ ├── SystemGenUtil.java │ └── UnsupportedSwagerFileException.java ├── commons ├── acceleo │ ├── features │ │ └── org.obeonetwork.acceleo.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ └── org.obeonetwork.acceleo.utils │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── acceleo │ │ └── utils │ │ ├── NetworkAcceleoUtilsPlugin.java │ │ ├── generation │ │ └── AcceleoGenerationUtil.java │ │ ├── launch │ │ ├── AbstractGenerationLauncher.java │ │ ├── ComposedGenerationLauncher.java │ │ └── NetworkGenerationLauncher.java │ │ ├── properties │ │ ├── AcceleoServicePropertiesLoader.java │ │ └── util │ │ │ ├── AcceleoGenerationPropertiesHelper.java │ │ │ ├── AcceleoPropertiesUtils.java │ │ │ ├── ObeoNetworkBundlePropertiesLoaderService.java │ │ │ ├── ObeoNetworkPropertiesLoaderService.java │ │ │ └── PropertiesLoader.java │ │ └── ui │ │ ├── actions │ │ └── LaunchAction.java │ │ └── wizards │ │ └── LaunchGenerationWizard.java ├── is │ ├── features │ │ └── org.obeonetwork.dsl.feature.is │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.is │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── folder.gif │ │ │ ├── full │ │ │ │ ├── obj16 │ │ │ │ │ └── ISModelFile.png │ │ │ │ └── wizban │ │ │ │ │ └── NewIS.gif │ │ │ ├── shared.gif │ │ │ └── shared_folder.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── org.obeonetwork.dsl.is.compare.matcher.exsd │ │ └── src │ │ │ └── org │ │ │ ├── eclipse │ │ │ └── wb │ │ │ │ └── swt │ │ │ │ └── SWTResourceManager.java │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── is │ │ │ ├── Activator.java │ │ │ ├── compare │ │ │ ├── IEObjectMatcherProvider.java │ │ │ └── ISMatchEngineFactory.java │ │ │ ├── handlers │ │ │ └── OpenISNewModelWizardHandler.java │ │ │ ├── overview │ │ │ └── IsOverviewModelDef.java │ │ │ ├── ui │ │ │ └── wizards │ │ │ │ ├── AbstractISNewModelWizard.java │ │ │ │ ├── NewModelCreationPage.java │ │ │ │ ├── NewModelWizardData.java │ │ │ │ ├── ProjectsAndFoldersContentProvider.java │ │ │ │ └── ProjectsAndFoldersLabelProvider.java │ │ │ └── util │ │ │ └── SiriusSessionUtils.java │ │ └── org.obeonetwork.is.eef.custom │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── is │ │ └── eef │ │ └── custom │ │ └── reference │ │ ├── CustomEEFExtEObjectSelectionPage.java │ │ ├── CustomEEFExtEObjectSelectionWizard.java │ │ ├── CustomReferenceController.java │ │ ├── EEFCustomReferenceDescription.java │ │ ├── EEFMultipleReferenceCustomLifecycleManager.java │ │ ├── EEFReferenceCustomLifecycleManagerProvider.java │ │ └── EEFSingleReferenceCustomLifecycleManager.java ├── nebula │ ├── features │ │ └── org.eclipse.nebula.treemapper.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ └── org.eclipse.nebula.treemapper │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── eclipse │ │ └── nebula │ │ └── treemapper │ │ ├── IDeletedMappingListener.java │ │ ├── INewMappingListener.java │ │ ├── ISemanticTreeMapperSupport.java │ │ ├── TreeMapper.java │ │ ├── TreeMapperUIConfigProvider.java │ │ └── internal │ │ ├── Activator.java │ │ └── LinkFigure.java ├── tools │ ├── features │ │ ├── org.obeonetwork.tools.contextual.explorer.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ ├── org.obeonetwork.tools.doc.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ ├── org.obeonetwork.tools.linker.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ ├── org.obeonetwork.tools.migration.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ ├── org.obeonetwork.tools.projectlibrary.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ └── org.obeonetwork.tools.snapshot.viewer.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.tools.classdiagramgenerator.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── BooleanValue.gif │ │ │ │ ├── ColorInfo.gif │ │ │ │ ├── Configuration.gif │ │ │ │ ├── ConfigurationElement.gif │ │ │ │ ├── DiagramConf.gif │ │ │ │ ├── StringValue.gif │ │ │ │ └── SupertypeSupport.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ └── src-gen │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── classdiagramconfiguration │ │ │ └── provider │ │ │ ├── BooleanValueItemProvider.java │ │ │ ├── ClassDiagramConfigurationEditPlugin.java │ │ │ ├── ClassDiagramConfigurationItemProviderAdapterFactory.java │ │ │ ├── ColorInfoItemProvider.java │ │ │ ├── ConfigurationElementItemProvider.java │ │ │ ├── ConfigurationItemProvider.java │ │ │ ├── ConfigurationValueItemProvider.java │ │ │ ├── DiagramConfItemProvider.java │ │ │ └── StringValueItemProvider.java │ │ ├── org.obeonetwork.tools.classdiagramgenerator.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── description │ │ │ └── StructuredTypesDiagramTemplate.odesign │ │ ├── icons │ │ │ └── full │ │ │ │ ├── obj16 │ │ │ │ ├── ClassDiagramConfigurationModelFile.gif │ │ │ │ └── generate.gif │ │ │ │ └── wizban │ │ │ │ └── NewClassDiagramConfiguration.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ └── src-gen │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── classdiagramconfiguration │ │ │ └── presentation │ │ │ ├── ClassDiagramConfigurationActionBarContributor.java │ │ │ ├── ClassDiagramConfigurationEditor.java │ │ │ ├── ClassDiagramConfigurationEditorPlugin.java │ │ │ ├── ClassDiagramConfigurationModelWizard.java │ │ │ └── handlers │ │ │ ├── ClassDiagramGenerator.java │ │ │ ├── GenerateVsmHandler.java │ │ │ └── GenerationInfo.java │ │ ├── org.obeonetwork.tools.classdiagramgenerator │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── ClassDiagramConfiguration.ecore │ │ │ ├── ClassDiagramConfiguration.genmodel │ │ │ └── ClassDiagramConfiguration.genmodel.old │ │ ├── plugin.xml │ │ ├── representations.aird │ │ └── src-gen │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── classdiagramconfiguration │ │ │ ├── BooleanValue.java │ │ │ ├── ClassDiagramConfigurationFactory.java │ │ │ ├── ClassDiagramConfigurationPackage.java │ │ │ ├── ColorInfo.java │ │ │ ├── Configuration.java │ │ │ ├── ConfigurationElement.java │ │ │ ├── ConfigurationValue.java │ │ │ ├── DiagramConf.java │ │ │ ├── StringValue.java │ │ │ ├── impl │ │ │ ├── BooleanValueImpl.java │ │ │ ├── ClassDiagramConfigurationFactoryImpl.java │ │ │ ├── ClassDiagramConfigurationPackageImpl.java │ │ │ ├── ColorInfoImpl.java │ │ │ ├── ConfigurationElementImpl.java │ │ │ ├── ConfigurationImpl.java │ │ │ ├── ConfigurationValueImpl.java │ │ │ ├── DiagramConfImpl.java │ │ │ └── StringValueImpl.java │ │ │ └── util │ │ │ ├── ClassDiagramConfigurationAdapterFactory.java │ │ │ └── ClassDiagramConfigurationSwitch.java │ │ ├── org.obeonetwork.tools.contextual.explorer.ui.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ │ ├── ISD - Contextual Explorer Documentation-toc.xml │ │ │ ├── ISD - Contextual Explorer Documentation.html │ │ │ ├── ISD - Contextual Explorer Documentation.textile │ │ │ └── pics │ │ │ │ ├── Contextual_explorer_with_category_selected.png │ │ │ │ ├── Contextual_explorer_with_metadata.png │ │ │ │ ├── Contextual_explorer_with_metadata_documentation_selected.png │ │ │ │ ├── Contextual_explorer_with_metadata_selected.png │ │ │ │ ├── Contextual_explorer_with_requirement.png │ │ │ │ ├── Contextual_explorer_with_requirement_selected.png │ │ │ │ └── Simple_contextual_explorer.png │ │ ├── plugin.xml │ │ └── pom.xml │ │ ├── org.obeonetwork.tools.contextual.explorer.ui.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── contextualExplorer_test_database.database │ │ │ ├── contextualExplorer_test_graal.graal │ │ │ ├── contextualExplorer_test_requirement.requirement │ │ │ └── representations.aird │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── contextual │ │ │ └── explorer │ │ │ └── ui │ │ │ └── tests │ │ │ ├── Activator.java │ │ │ └── ISContextualExplorerTest.java │ │ ├── org.obeonetwork.tools.contextual.explorer.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── contextual │ │ │ └── explorer │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ ├── internal │ │ │ └── utils │ │ │ │ └── ContextualExplorerUtils.java │ │ │ ├── providers │ │ │ └── ISLabelProviderFactory.java │ │ │ └── queries │ │ │ ├── CategoriesContainerReferencesQuery.java │ │ │ ├── DocumentationLinkIsReferencedByQuery.java │ │ │ ├── EObjectIsReferencedByGenericQuery.java │ │ │ ├── EObjectIsReferencedByRequirementQuery.java │ │ │ ├── EObjectReferencesGenericQuery.java │ │ │ ├── EObjectReferencesMetadataQuery.java │ │ │ ├── MetadataIsReferencedByQuery.java │ │ │ ├── RequirementIsReferencedByQuery.java │ │ │ ├── RequirementReferencesOtherQuery.java │ │ │ └── RequirementReferencesReferencedObjectQuery.java │ │ ├── org.obeonetwork.tools.doc.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ │ ├── ISD - Documentation Tooling-toc.xml │ │ │ ├── ISD - Documentation Tooling.html │ │ │ ├── ISD - Documentation Tooling.textile │ │ │ └── pics │ │ │ │ ├── AddDocumentationLinkDialog.png │ │ │ │ ├── DocumentationOpening.png │ │ │ │ ├── RelatedDocumentationView.png │ │ │ │ ├── RelatedDocumentationViewActions.png │ │ │ │ ├── RelatedDocumentationViewAddAction.png │ │ │ │ ├── RelatedDocumentationViewDeleteAction.png │ │ │ │ ├── RelatedDocumentationViewEditAction.png │ │ │ │ └── RelatedDocumentationViewShowChildrenAction.png │ │ ├── plugin.xml │ │ └── pom.xml │ │ ├── org.obeonetwork.tools.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── Edit.gif │ │ │ └── RelatedDoc.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── doc │ │ │ ├── DocBridgeUI.java │ │ │ ├── core │ │ │ ├── DocumentationLink.java │ │ │ ├── command │ │ │ │ ├── AddDocumentationLinkCommand.java │ │ │ │ ├── EditDocumentationLinkCommand.java │ │ │ │ └── RemoveDocumentationLinkCommand.java │ │ │ └── impl │ │ │ │ ├── DocumentationLinkHelper.java │ │ │ │ ├── DocumentationLinkImpl.java │ │ │ │ └── DocumentationLinkType.java │ │ │ └── ui │ │ │ ├── DocumentationLinkCommandFactory.java │ │ │ ├── DocumentationLinkUIService.java │ │ │ ├── command │ │ │ ├── AddDocumentationLink.java │ │ │ ├── DeleteDocumentationLink.java │ │ │ └── EditDocumentationLink.java │ │ │ ├── dialog │ │ │ └── DocumentationLinkDialog.java │ │ │ └── view │ │ │ ├── RelatedDocView.java │ │ │ └── util │ │ │ ├── RelatedDocumentationContentProvider.java │ │ │ └── RelatedDocumentationLabelProvider.java │ │ ├── org.obeonetwork.tools.linker │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── linker │ │ │ ├── EObjectLink.java │ │ │ ├── EObjectLinker.java │ │ │ ├── LinkType.java │ │ │ ├── ObeoLinkerPlugin.java │ │ │ ├── command │ │ │ ├── AddLinkCommand.java │ │ │ └── RemoveLinkCommand.java │ │ │ └── ui │ │ │ └── view │ │ │ ├── EObjectLinksView.java │ │ │ ├── EObjectLinksViewAction.java │ │ │ └── util │ │ │ ├── EObjectLinkContentProvider.java │ │ │ ├── EObjectLinkLabelProvider.java │ │ │ └── ViewpointSelectionListener.java │ │ ├── org.obeonetwork.tools.migration │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── migration │ │ │ ├── BasicMigrationHelper.java │ │ │ ├── ComposedMigrationHelper.java │ │ │ ├── IMigrationHelper.java │ │ │ ├── MigrationExtendedMetaData.java │ │ │ ├── MigrationResourceHandler.java │ │ │ ├── MigrationXMLHelper.java │ │ │ └── XMIResourceWithMigrationSupportImpl.java │ │ ├── org.obeonetwork.tools.projectlibrary.doc │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.core.resources.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ │ ├── ISD - Using modeling projects as libraries-toc.xml │ │ │ ├── ISD - Using modeling projects as libraries.html │ │ │ ├── ISD - Using modeling projects as libraries.textile │ │ │ └── pics │ │ │ │ ├── ExportMenu.png │ │ │ │ ├── coreProject.png │ │ │ │ ├── exportWizardPage1.png │ │ │ │ ├── exportWizardPage2.png │ │ │ │ ├── importMenu.png │ │ │ │ ├── importWizard.png │ │ │ │ ├── importedLibrary.png │ │ │ │ ├── initialProject1.png │ │ │ │ ├── initialProject2.png │ │ │ │ └── project2AfterImport.png │ │ ├── plugin.xml │ │ └── pom.xml │ │ ├── org.obeonetwork.tools.projectlibrary.test │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── ProjectDependency │ │ │ │ ├── .project │ │ │ │ ├── My.soa │ │ │ │ ├── MyStatemachine.statemachine │ │ │ │ └── representations.aird │ │ │ └── org.obeonetwork.is.sample.ebookstore │ │ │ │ ├── .project │ │ │ │ ├── E-BookStore-MLD.database │ │ │ │ ├── E-BookStore-Oracle.database │ │ │ │ ├── E-BookStore.cinematic │ │ │ │ ├── E-BookStore.entity │ │ │ │ ├── E-BookStore.graal │ │ │ │ ├── E-BookStore.requirement │ │ │ │ ├── E-BookStore.soa │ │ │ │ ├── mockups │ │ │ │ ├── CreateAccount_View_Container_Mockup-1.jpg │ │ │ │ ├── HomePage_View_Container_Mockup-1.jpg │ │ │ │ ├── Login_View_Container_Mockup-1.jpg │ │ │ │ └── PaymentForm_View_Container_Mockup-1.jpg │ │ │ │ ├── representations.aird │ │ │ │ └── scaffold │ │ │ │ ├── EntityToMld_Entities_E-BookStore-MLD.scaffold │ │ │ │ └── MldToMpd_E-BookStore-MLD_E-BookStore-Oracle.scaffold │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── projectlibrary │ │ │ └── test │ │ │ └── ExportProjectTest.java │ │ ├── org.obeonetwork.tools.projectlibrary.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── export_mar.png │ │ │ ├── import_mar.png │ │ │ ├── invalid.gif │ │ │ ├── mar.png │ │ │ ├── remove_library.png │ │ │ └── valid.gif │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ ├── eclipse │ │ │ └── wb │ │ │ │ └── swt │ │ │ │ ├── ResourceManager.java │ │ │ │ └── SWTResourceManager.java │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── projectlibrary │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ ├── handlers │ │ │ └── RemoveLibraryHandler.java │ │ │ └── wizard │ │ │ ├── WizardUtils.java │ │ │ ├── exp │ │ │ ├── ExportProjectAsLibraryManifestPage.java │ │ │ ├── ExportProjectAsLibraryProjectSelectionPage.java │ │ │ ├── ExportProjectAsLibraryRunnable.java │ │ │ ├── ExportProjectAsLibraryWizard.java │ │ │ └── ExportProjectAsLibraryWizardModel.java │ │ │ └── imp │ │ │ ├── ImportLibraryIntoProjectFileSelectionPage.java │ │ │ ├── ImportLibraryIntoProjectWizard.java │ │ │ └── ImportLibraryIntoProjectWizardModel.java │ │ ├── org.obeonetwork.tools.projectlibrary │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── manifest.ecore │ │ │ └── manifest.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── org.obeonetwork.tools.projectlibrary.importHandler.exsd │ │ ├── src-gen │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── manifest │ │ │ │ ├── MImportExportData.java │ │ │ │ ├── MManifest.java │ │ │ │ ├── ManifestFactory.java │ │ │ │ ├── ManifestPackage.java │ │ │ │ ├── impl │ │ │ │ ├── MImportExportDataImpl.java │ │ │ │ ├── MManifestImpl.java │ │ │ │ ├── ManifestFactoryImpl.java │ │ │ │ └── ManifestPackageImpl.java │ │ │ │ └── util │ │ │ │ ├── ManifestAdapterFactory.java │ │ │ │ ├── ManifestResourceFactoryImpl.java │ │ │ │ ├── ManifestResourceImpl.java │ │ │ │ └── ManifestSwitch.java │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ ├── dsl │ │ │ └── manifest │ │ │ │ ├── BadVersionStringException.java │ │ │ │ └── util │ │ │ │ └── ManifestUtils.java │ │ │ └── tools │ │ │ └── projectlibrary │ │ │ ├── Activator.java │ │ │ ├── exp │ │ │ └── ProjectLibraryExporter.java │ │ │ ├── extension │ │ │ ├── ManifestFeatureExtension.java │ │ │ ├── ManifestFeatureExtensionServices.java │ │ │ ├── ManifestServices.java │ │ │ └── point │ │ │ │ ├── AbstractImportHandler.java │ │ │ │ ├── DefaultImportHandler.java │ │ │ │ └── ImportHandlerFactory.java │ │ │ ├── imp │ │ │ ├── IConfirmationRunnable.java │ │ │ ├── ImportData.java │ │ │ ├── LibraryImportException.java │ │ │ └── ProjectLibraryImporter.java │ │ │ └── util │ │ │ ├── EReferenceReferenceReferencedTypeToRestoreWithOpposite.java │ │ │ ├── IdUtils.java │ │ │ ├── ProjectLibraryUtils.java │ │ │ ├── RestorableAndNonRestorableReferences.java │ │ │ ├── ToBeRestoredReference.java │ │ │ └── ZipUtils.java │ │ ├── org.obeonetwork.tools.requirement │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── Edit.gif │ │ │ ├── Link.gif │ │ │ ├── ObjectWithRequirementDecorator_grey.png │ │ │ ├── ObjectWithRequirementDecorator_orange.png │ │ │ ├── ObjectWithRequirementDecorator_yellow.png │ │ │ └── Requirement.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── requirement │ │ │ ├── RequirementLinkerPlugin.java │ │ │ ├── core │ │ │ ├── RequirementLink.java │ │ │ ├── impl │ │ │ │ ├── RequirementLinkHelper.java │ │ │ │ ├── RequirementLinkImpl.java │ │ │ │ └── RequirementLinkType.java │ │ │ └── util │ │ │ │ └── RequirementService.java │ │ │ ├── ui │ │ │ ├── decorators │ │ │ │ └── ObjectWithRequirement.java │ │ │ └── view │ │ │ │ ├── LinkedRequirementsView.java │ │ │ │ ├── action │ │ │ │ ├── CreateRequirementAction.java │ │ │ │ ├── EditRequirementAction.java │ │ │ │ ├── LinkRequirementAction.java │ │ │ │ └── UnlinkRequirementAction.java │ │ │ │ └── util │ │ │ │ ├── LinkedRequirementsContentProvider.java │ │ │ │ └── LinkedRequirementsLabelProvider.java │ │ │ └── wizard │ │ │ ├── RequirementEditingWizard.java │ │ │ ├── operation │ │ │ ├── RequirementCreationOperation.java │ │ │ └── RequirementEditingOperation.java │ │ │ ├── page │ │ │ └── CategorySelectionPage.java │ │ │ └── util │ │ │ ├── LinkedRequirementsContentProvider.java │ │ │ ├── LinkedRequirementsLabelProvider.java │ │ │ ├── RequirementCreationPropertiesEditingContext.java │ │ │ └── RequirementsRepositoriesContentProvider.java │ │ ├── org.obeonetwork.tools.snapshot.viewer.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ │ ├── ISD - CDO XML Snapshot importer-toc.xml │ │ │ ├── ISD - CDO XML Snapshot importer.html │ │ │ ├── ISD - CDO XML Snapshot importer.textile │ │ │ └── pics │ │ │ │ ├── ImportMenu.png │ │ │ │ └── ImportWizard.png │ │ ├── plugin.xml │ │ └── pom.xml │ │ ├── org.obeonetwork.tools.snapshot.viewer │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── XMLFile.gif │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── postImport.exsd │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── tools │ │ │ └── snapshot │ │ │ └── viewer │ │ │ ├── Activator.java │ │ │ ├── EmbeddedCDOServer.java │ │ │ ├── extension │ │ │ ├── IPostImportHandler.java │ │ │ └── PostImportHandlerFactory.java │ │ │ └── wizards │ │ │ ├── ImportModelFromXmlWizard.java │ │ │ ├── ImportXMLSnapshotWizardPage.java │ │ │ └── ImportXmlInput.java │ │ └── org.obeonetwork.tools.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── tools │ │ └── tests │ │ ├── ObeoDSMTestHelper.java │ │ └── ObeoDSMXMIResourceTestImpl.java └── utils │ ├── features │ └── org.obeonetwork.utils.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ └── pom.xml │ └── plugins │ ├── org.obeonetwork.docker.common │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.txt │ ├── build.properties │ ├── lib │ │ ├── aopalliance-repackaged-2.5.0-b42.jar │ │ ├── bcpkix-jdk15on-1.60.jar │ │ ├── bcprov-jdk15on-1.60.jar │ │ ├── commons-codec-1.11.jar │ │ ├── commons-compress-1.18.jar │ │ ├── commons-io-2.6.jar │ │ ├── commons-lang-2.6.jar │ │ ├── docker-java-3.1.2.jar │ │ ├── guava-19.0.jar │ │ ├── hk2-api-2.5.0-b42.jar │ │ ├── hk2-locator-2.5.0-b42.jar │ │ ├── hk2-utils-2.5.0-b42.jar │ │ ├── httpclient-4.5.6.jar │ │ ├── httpcore-4.4.10.jar │ │ ├── jackson-annotations-2.9.0.jar │ │ ├── jackson-core-2.9.8.jar │ │ ├── jackson-databind-2.9.8.jar │ │ ├── jackson-jaxrs-base-2.9.8.jar │ │ ├── jackson-jaxrs-json-provider-2.9.8.jar │ │ ├── jackson-module-jaxb-annotations-2.9.8.jar │ │ ├── javassist-3.22.0-CR2.jar │ │ ├── javax.annotation-api-1.2.jar │ │ ├── javax.inject-1.jar │ │ ├── javax.inject-2.5.0-b42.jar │ │ ├── javax.ws.rs-api-2.1.jar │ │ ├── jcl-over-slf4j-1.7.25.jar │ │ ├── jersey-apache-connector-2.27.jar │ │ ├── jersey-client-2.27.jar │ │ ├── jersey-common-2.27.jar │ │ ├── jersey-hk2-2.27.jar │ │ ├── junixsocket-common-2.2.0.jar │ │ ├── junixsocket-native-common-2.2.0.jar │ │ ├── netty-buffer-4.1.31.Final.jar │ │ ├── netty-codec-4.1.31.Final.jar │ │ ├── netty-codec-http-4.1.31.Final.jar │ │ ├── netty-codec-socks-4.1.31.Final.jar │ │ ├── netty-common-4.1.31.Final.jar │ │ ├── netty-handler-4.1.31.Final.jar │ │ ├── netty-handler-proxy-4.1.31.Final.jar │ │ ├── netty-resolver-4.1.31.Final.jar │ │ ├── netty-transport-4.1.31.Final.jar │ │ ├── netty-transport-native-epoll-4.1.31.Final-linux-x86_64.jar │ │ ├── netty-transport-native-kqueue-4.1.31.Final-osx-x86_64.jar │ │ ├── netty-transport-native-unix-common-4.1.31.Final.jar │ │ ├── osgi-resource-locator-1.0.1.jar │ │ └── slf4j-api-1.7.25.jar │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── docker │ │ └── common │ │ ├── DockerTest.java │ │ └── DockerUtils.java │ ├── org.obeonetwork.utils.common.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── utils │ │ └── common │ │ └── ui │ │ ├── Activator.java │ │ ├── handlers │ │ ├── EventHelper.java │ │ └── SelectionHelper.java │ │ ├── propertyTesters │ │ ├── DSemanticDecoratorPropertyTester.java │ │ ├── SiriusEditPartPropertyTester.java │ │ └── SiriusRepresentationPropertyTester.java │ │ └── services │ │ ├── DebugServices.java │ │ ├── EclipseUtils.java │ │ ├── SiriusUIUtils.java │ │ └── WizardHelper.java │ └── org.obeonetwork.utils.common │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ └── src │ └── org │ └── obeonetwork │ └── utils │ └── common │ ├── EObjectUtils.java │ ├── IntrospectionUtils.java │ ├── SessionUtils.java │ ├── SiriusInterpreterUtils.java │ ├── StreamUtils.java │ ├── StringUtils.java │ └── transaction │ └── RecordingCommandWithResult.java ├── designs ├── cinematic │ ├── features │ │ └── org.obeonetwork.dsl.cinematic.design.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.cinematic.design.test │ │ ├── .project │ │ ├── CinematicFlowDiagram.test │ │ ├── CinematicFlowDiagramCreationToolsTestCase.test │ │ ├── CinematicFlowDiagramMappingsTestCase.test │ │ ├── CinematicFlowDiagramUsabilityToolsTestCase.test │ │ ├── CinematicLayoutDiagram.test │ │ ├── CinematicLayoutDiagramViewMappingsTestCase.test │ │ ├── CinematicPackageDiagram.test │ │ ├── CinematicPackageDiagramMappingsTestCase.test │ │ ├── CinematicPackageDiagramToolsTestCase.test │ │ ├── CinematicUIStructure.test │ │ ├── CinematicUIStructureTreeContainedViewContainerCreationToolsTestCase.test │ │ ├── CinematicUIStructureTreeContainedViewContainerEditionToolsTestCase.test │ │ ├── CinematicUIStructureTreeMappingsTestCase.test │ │ ├── CinematicUIStructureTreePackageCreationTools.test │ │ ├── CinematicUIStructureTreeViewContainerReferenceCreationTools.test │ │ ├── CinematicUIStructureTreeViewElementCreationTools.test │ │ ├── CinematicUIStructureTreeViewEventCreationTools.test │ │ ├── CinematicViewContainerMockup.test │ │ ├── CinematicViewContainerMockupCreationToolsTestCase.test │ │ ├── CinematicViewContainerMockupDefaultMappingsTestCase.test │ │ ├── CinematicViewContainerMockupExampleMappingsTestCase.test │ │ ├── CinematicViewContainerMockupTabOrderMappingsTestCase.test │ │ ├── CinematicViewContainerMockupUsabilityToolsTestCase.test │ │ ├── Common.ctx │ │ ├── InitalWorkspace.ctx │ │ ├── LaunchAllCinematicTest.suite │ │ ├── MaximizedWindows.ctx │ │ ├── NoErrorInErrorLog.verification │ │ ├── pom.xml │ │ └── rcptt.properties │ │ └── org.obeonetwork.dsl.cinematic.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── description │ │ └── cinematic.odesign │ │ ├── icons │ │ ├── databinding │ │ │ ├── DTOBinding.gif │ │ │ ├── DTOPropertyBinding.gif │ │ │ ├── EntityBinding.gif │ │ │ └── EntityPropertyBinding.gif │ │ ├── full │ │ │ ├── obj16 │ │ │ │ ├── CinematicModelFile.gif │ │ │ │ └── ToolkitsModelFile.gif │ │ │ └── wizban │ │ │ │ ├── NewCinematic.gif │ │ │ │ ├── NewMockup.gif │ │ │ │ └── NewToolkits.gif │ │ ├── tools │ │ │ ├── layout.png │ │ │ ├── layout_top_right_corner_apply.png │ │ │ └── layout_top_right_corner_remove.png │ │ └── viewpoint │ │ │ ├── ViewStateToViewContainer.gif │ │ │ ├── abort_state.svg │ │ │ ├── action.svg │ │ │ ├── action_decorator.gif │ │ │ ├── decision_state.svg │ │ │ ├── duplicate.gif │ │ │ ├── event.gif │ │ │ ├── final_state.svg │ │ │ ├── initial_state.svg │ │ │ └── state.svg │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── cinematic │ │ └── design │ │ ├── Activator.java │ │ ├── CinematicLayoutTrigger.java │ │ ├── CinematicSessionManagerListener.java │ │ ├── ICinematicViewpoint.java │ │ ├── decorators │ │ └── SVGImageFigure.java │ │ ├── extension │ │ ├── AbstractViewElementMetadataProvider.java │ │ ├── ViewContainerChildrenContribution.java │ │ └── ViewContainerLabelsSwitch.java │ │ ├── handlers │ │ ├── ApplyMockupImageHandler.java │ │ ├── ExtractLayoutHandler.java │ │ ├── PreviewLayoutHandler.java │ │ ├── RemoveMockupImageHandler.java │ │ └── RestoreLayoutHandler.java │ │ ├── services │ │ ├── CinematicBindingServices.java │ │ ├── CinematicDropServices.java │ │ ├── CinematicEcoreServices.java │ │ ├── CinematicFlowServices.java │ │ ├── CinematicLabelServices.java │ │ ├── CinematicLayoutServices.java │ │ ├── CinematicToolkitsServices.java │ │ ├── CinematicVCDLabelServices.java │ │ ├── CinematicWidgetServices.java │ │ ├── flows │ │ │ ├── FlowsUtil.java │ │ │ └── TransitionEditPartProvider.java │ │ ├── label │ │ │ ├── CinematicEditLabelSwitch.java │ │ │ ├── CinematicLabelSwitch.java │ │ │ ├── EditLabelSwitch.java │ │ │ ├── FlowEditLabelSwitch.java │ │ │ ├── FlowLabelSwitch.java │ │ │ ├── TransitionGuardEditLabel.java │ │ │ ├── ViewEditLabelSwitch.java │ │ │ ├── ViewLabelSwitch.java │ │ │ └── ViewLongLabelSwitch.java │ │ ├── ui │ │ │ └── UiUtil.java │ │ └── view │ │ │ └── ViewUtil.java │ │ └── wizards │ │ ├── NewCinematicModelWizard.java │ │ ├── NewModelCreationWithMockupPage.java │ │ └── NewToolkitsModelWizard.java ├── database │ ├── features │ │ └── org.obeonetwork.dsl.database.design.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.database.design.test │ │ ├── .project │ │ ├── ApplicationName.ctx │ │ ├── InitalWorkspace.ctx │ │ ├── MaximizedWindows.ctx │ │ ├── NoErrorInErrorLog.verification │ │ ├── TestingDatabaseDiagramCreationTool.test │ │ ├── pom.xml │ │ └── rcptt.properties │ │ └── org.obeonetwork.dsl.database.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── description │ │ └── database.odesign │ │ ├── icons │ │ ├── decorator │ │ │ └── Constraint.gif │ │ └── full │ │ │ ├── obj16 │ │ │ ├── DatabaseModelFile.gif │ │ │ ├── TypesLibraryModelFile.gif │ │ │ ├── add.gif │ │ │ ├── delete.gif │ │ │ ├── down.gif │ │ │ └── up.gif │ │ │ ├── tool16 │ │ │ ├── AddReferencedTables.png │ │ │ └── AddReferencingTables.png │ │ │ └── wizban │ │ │ ├── NewDatabase.gif │ │ │ └── NewTypesLibrary.gif │ │ ├── lib │ │ └── jsqlparser.jar │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── database │ │ ├── design │ │ ├── Activator.java │ │ ├── IDatabaseViewpointConstants.java │ │ ├── services │ │ │ ├── DatabaseEEFPropertiesServices.java │ │ │ ├── DatabaseServices.java │ │ │ ├── EcoreServices.java │ │ │ └── label │ │ │ │ ├── DatabaseEditLabelServices.java │ │ │ │ └── DatabaseLabelServices.java │ │ └── wizards │ │ │ ├── DatabaseModelWizardInitialObjectCreationPage.java │ │ │ ├── NewDatabaseModelWizard.java │ │ │ └── NewTypesLibraryModelWizard.java │ │ ├── triggers │ │ ├── DeleteColumnChangeTrigger.java │ │ └── ViewQueryChangeTrigger.java │ │ └── view │ │ └── parser │ │ ├── ColObject.java │ │ ├── ViewContentFinder.java │ │ └── ViewContentProvider.java ├── entity │ ├── features │ │ └── org.obeonetwork.dsl.entity.design.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.entity.design.test │ │ ├── .project │ │ ├── ApplicationName.ctx │ │ ├── InitalWorkspace.ctx │ │ ├── LaunchAllEntityTests.suite │ │ ├── MaximizedWindows.ctx │ │ ├── NoErrorInErrorLog.verification │ │ ├── TestingEntitiesDiagramToolsBidirectionalRelation.test │ │ ├── TestingEntitiesDiagramToolsEntity.test │ │ ├── TestingEntitiesDiagramToolsEnumeration.test │ │ ├── TestingEntitiesDiagramToolsExternalEntities.test │ │ ├── TestingEntitiesDiagramToolsExternalEntitiesUsability.test │ │ ├── TestingEntitiesDiagramToolsNamespace.test │ │ ├── TestingEntitiesDiagramToolsRelation.test │ │ ├── TestingEntitiesDiagramToolsUsability.test │ │ ├── TestingEntitiesDiagramToolsUsabilityReconnect.test │ │ ├── TestingEntitiesNamespaceHierarchyExternalNamespaces.test │ │ ├── TestingEntititiesNamespacesHierarchyTools.test │ │ ├── TestingEntityTable.test │ │ ├── pom.xml │ │ └── rcptt.properties │ │ ├── org.obeonetwork.dsl.entity.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.acceleo │ │ ├── build.properties │ │ ├── description │ │ │ ├── entity.classdiagramconf │ │ │ └── entity.odesign │ │ ├── icons │ │ │ └── full │ │ │ │ ├── obj16 │ │ │ │ └── EntityModelFile.gif │ │ │ │ └── wizban │ │ │ │ └── NewEntity.gif │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── entity │ │ │ └── design │ │ │ ├── Activator.java │ │ │ └── wizards │ │ │ └── NewEntityModelWizard.java │ │ └── org.obeonetwork.dsl.entity.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.pde.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ ├── ISD - Entity Designer-toc.xml │ │ ├── ISD - Entity Designer.html │ │ ├── ISD - Entity Designer.textile │ │ └── pics │ │ │ ├── EntityRepresentationsOnEntities.png │ │ │ ├── EntityViewsViewpointSelection.png │ │ │ ├── SafranEntityModelCreated.png │ │ │ ├── SafranEntityWizard01.png │ │ │ ├── SafranEntityWizard02.png │ │ │ ├── entities │ │ │ ├── Create attribute.png │ │ │ ├── Create bidi composition.png │ │ │ ├── Create bidi relation.png │ │ │ ├── Create composition.png │ │ │ ├── Create entity from dto.png │ │ │ ├── Create entity.png │ │ │ ├── Create enumeration.png │ │ │ ├── Create external.png │ │ │ ├── Create inheritance.png │ │ │ ├── Create literal.png │ │ │ ├── Create namespace from DTO.png │ │ │ ├── Create namespace.png │ │ │ ├── Create relation.png │ │ │ ├── Dlg entity from dto.png │ │ │ ├── Dlg entity namespace from dto.png │ │ │ └── Entities_diagram.png │ │ │ ├── hierarchy │ │ │ ├── Create namespace from other.png │ │ │ ├── Create namespace.png │ │ │ ├── namespaces_hierarchy.png │ │ │ └── namespaces_hierarchy_dependencies.png │ │ │ └── table │ │ │ └── Entity table.png │ │ ├── plugin.xml │ │ └── pom.xml ├── environment │ ├── features │ │ ├── org.obeonetwork.dsl.environment.binding.design.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ ├── org.obeonetwork.dsl.environment.binding.dialect.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ ├── org.obeonetwork.dsl.environment.design.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ ├── org.obeonetwork.dsl.environment.design.migration.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ └── org.obeonetwork.dsl.environment.design.services.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.environment.binding.design.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ │ ├── ISD - IS Databinding-toc.xml │ │ │ ├── ISD - IS Databinding.html │ │ │ ├── ISD - IS Databinding.textile │ │ │ └── pics │ │ │ │ ├── ISDatabindingViewpointSelection.png │ │ │ │ ├── diagram │ │ │ │ ├── BindExistingElement.png │ │ │ │ ├── BindingDiagram.png │ │ │ │ ├── CreateDiagram.png │ │ │ │ └── NewBinding.png │ │ │ │ └── editor │ │ │ │ ├── BindingEditor.png │ │ │ │ ├── VueArborescente.png │ │ │ │ ├── ZoneCentrale.png │ │ │ │ └── ZoneInferieure.png │ │ ├── plugin.xml │ │ └── pom.xml │ │ ├── org.obeonetwork.dsl.environment.binding.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── description │ │ │ └── binding.odesign │ │ ├── icons │ │ │ └── BindingInfo.gif │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── environment │ │ │ └── binding │ │ │ └── design │ │ │ ├── Activator.java │ │ │ └── service │ │ │ └── BindingService.java │ │ ├── org.obeonetwork.dsl.environment.binding.dialect.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── .gitignore │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── BindingEditor.gif │ │ │ │ ├── DBindingEdge.gif │ │ │ │ ├── DBindingEditor.gif │ │ │ │ ├── DBindingEditorCreationDescription.gif │ │ │ │ ├── DBindingEditorDescription.gif │ │ │ │ └── DBoundElement.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── BoundableElementChildrenDefinitions.exsd │ │ ├── src-gen │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── environment │ │ │ │ └── bindingdialect │ │ │ │ ├── description │ │ │ │ └── provider │ │ │ │ │ ├── DBindingEditorCreationDescriptionItemProvider.java │ │ │ │ │ ├── DBindingEditorDescriptionItemProvider.java │ │ │ │ │ └── DescriptionItemProviderAdapterFactory.java │ │ │ │ └── provider │ │ │ │ ├── BindingdialectEditPlugin.java │ │ │ │ ├── BindingdialectItemProviderAdapterFactory.java │ │ │ │ ├── DBindingEdgeItemProvider.java │ │ │ │ ├── DBindingEditorItemProvider.java │ │ │ │ └── DBoundElementItemProvider.java │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── environment │ │ │ └── binding │ │ │ └── dialect │ │ │ └── ui │ │ │ ├── dialect │ │ │ ├── BindingDialectUI.java │ │ │ └── BindingDialectUIServices.java │ │ │ ├── editor │ │ │ ├── BindingGroupDetails.java │ │ │ ├── BindingTreeEditor.java │ │ │ ├── BindingTreeEditorManager.java │ │ │ ├── Messages.java │ │ │ ├── messages.properties │ │ │ └── undoredo │ │ │ │ ├── CustomRedoActionHandler.java │ │ │ │ ├── CustomUndoActionHandler.java │ │ │ │ └── UndoRedoActionHandler.java │ │ │ └── treemapper │ │ │ ├── BindingTreeMapper.java │ │ │ ├── BindingTreeSemanticSupport.java │ │ │ ├── TreeRoot.java │ │ │ ├── commands │ │ │ ├── CreateMappingCommand.java │ │ │ ├── CreateMappingsCommand.java │ │ │ ├── DeleteMappingCommand.java │ │ │ └── UpdateMappingExpressionCommand.java │ │ │ └── provider │ │ │ ├── DBoundElementContentProvider.java │ │ │ ├── DBoundElementLabelProvider.java │ │ │ ├── TreeDataProvider.java │ │ │ └── extensionpoint │ │ │ ├── BoundableElementChildrenContributionsManager.java │ │ │ └── IBoundableElementChildren.java │ │ ├── org.obeonetwork.dsl.environment.binding.dialect │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── .gitignore │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── bindingdialect.ecore │ │ │ └── bindingdialect.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── environment │ │ │ │ └── bindingdialect │ │ │ │ ├── BindingdialectFactory.java │ │ │ │ ├── BindingdialectPackage.java │ │ │ │ ├── DBindingEdge.java │ │ │ │ ├── DBindingEditor.java │ │ │ │ ├── DBoundElement.java │ │ │ │ ├── description │ │ │ │ ├── DBindingEditorCreationDescription.java │ │ │ │ ├── DBindingEditorDescription.java │ │ │ │ ├── DescriptionFactory.java │ │ │ │ ├── DescriptionPackage.java │ │ │ │ ├── impl │ │ │ │ │ ├── DBindingEditorCreationDescriptionImpl.java │ │ │ │ │ ├── DBindingEditorDescriptionImpl.java │ │ │ │ │ ├── DescriptionFactoryImpl.java │ │ │ │ │ └── DescriptionPackageImpl.java │ │ │ │ └── util │ │ │ │ │ ├── DescriptionAdapterFactory.java │ │ │ │ │ └── DescriptionSwitch.java │ │ │ │ ├── impl │ │ │ │ ├── BindingdialectFactoryImpl.java │ │ │ │ ├── BindingdialectPackageImpl.java │ │ │ │ ├── DBindingEdgeImpl.java │ │ │ │ ├── DBindingEditorImpl.java │ │ │ │ └── DBoundElementImpl.java │ │ │ │ └── util │ │ │ │ ├── BindingdialectAdapterFactory.java │ │ │ │ ├── BindingdialectResourceFactoryImpl.java │ │ │ │ ├── BindingdialectResourceImpl.java │ │ │ │ └── BindingdialectSwitch.java │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── environment │ │ │ └── binding │ │ │ └── dialect │ │ │ ├── BindingDialect.java │ │ │ ├── BindingDialectServices.java │ │ │ └── properties │ │ │ ├── DBindingEditorCreationDescriptionDescriptionFilter.java │ │ │ └── DBindingEditorCreationDescriptionDescriptionPropertySection.java │ │ ├── org.obeonetwork.dsl.environment.design.doc │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.core.resources.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ │ ├── ISD - Environment tooling-toc.xml │ │ │ ├── ISD - Environment tooling.html │ │ │ ├── ISD - Environment tooling.textile │ │ │ └── pics │ │ │ │ ├── AddMetadataFromMetadataDefinitionDialog.png │ │ │ │ ├── Environment-ModelCreationWizard-01.png │ │ │ │ ├── Environment-ModelCreationWizard-02.png │ │ │ │ ├── ErrorLog.png │ │ │ │ ├── ManageEnvironmentResourcesActions.png │ │ │ │ ├── ManageEnvironmentResourcesDialog.png │ │ │ │ ├── ManageEnvironmentResourcesWarningDialog.png │ │ │ │ ├── ModelingProject_AirdUnfold.png │ │ │ │ ├── ModelingProject_SemanticUnfold.png │ │ │ │ ├── ModelingProject_Structure.png │ │ │ │ ├── NewRepresentationMenu.png │ │ │ │ ├── PartialViewDiagram.png │ │ │ │ ├── PartialViewDiagram_ToolbarDeleteTool.png │ │ │ │ ├── PartialViewDiagram_ToolbarVisibilityMode.png │ │ │ │ ├── SynchronizedDiagram.png │ │ │ │ └── UnsynchronizedMenu.png │ │ ├── plugin.xml │ │ └── pom.xml │ │ ├── org.obeonetwork.dsl.environment.design.migration │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── environment │ │ │ └── design │ │ │ └── migration │ │ │ ├── EClassLocation.java │ │ │ └── ISMigrationParticipant.java │ │ ├── org.obeonetwork.dsl.environment.design.services │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── etool16 │ │ │ │ ├── add.gif │ │ │ │ ├── delete.gif │ │ │ │ ├── down.gif │ │ │ │ ├── edit.gif │ │ │ │ └── up.gif │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ ├── eclipse │ │ │ └── wb │ │ │ │ └── swt │ │ │ │ └── SWTResourceManager.java │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── environment │ │ │ └── design │ │ │ ├── services │ │ │ ├── DeleteServices.java │ │ │ ├── DesignServices.java │ │ │ ├── EnvironmentLabelServices.java │ │ │ ├── PropertiesServices.java │ │ │ ├── ReferencesService.java │ │ │ ├── RepresentationCreationPolicyRegistry.java │ │ │ ├── TypesServices.java │ │ │ └── UIServices.java │ │ │ └── ui │ │ │ ├── ChooseTypesAndReferencesPage.java │ │ │ ├── CreateStructuredTypesFromOthersWizard.java │ │ │ ├── RGBSystemColorUtil.java │ │ │ ├── VersionService.java │ │ │ └── providers │ │ │ ├── ArrayTreeContentProvider.java │ │ │ ├── ReferenceLabelProvider.java │ │ │ └── StructuredTypesContentProvider.java │ │ ├── org.obeonetwork.dsl.environment.design.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── environmentResourceContribution │ │ │ │ └── TestEnvironment.environment │ │ │ └── metadatadefResourceContribution │ │ │ │ └── sample.metadatadef │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── environment │ │ │ └── design │ │ │ └── tests │ │ │ ├── Activator.java │ │ │ ├── EnvironmentResourceManagementTest.java │ │ │ ├── ISPropertiesTabsRegistryInstallTest.java │ │ │ └── MetadataDefinitionsManagementTest.java │ │ ├── org.obeonetwork.dsl.environment.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.acceleo │ │ ├── build.properties │ │ ├── description │ │ │ └── environment.odesign │ │ ├── icons │ │ │ ├── full │ │ │ │ ├── obj16 │ │ │ │ │ ├── EnvironmentModelFile.gif │ │ │ │ │ └── MetaDataDefinition.gif │ │ │ │ ├── tool │ │ │ │ │ ├── PartialView.gif │ │ │ │ │ └── search.gif │ │ │ │ └── wizban │ │ │ │ │ └── NewEnvironment.gif │ │ │ ├── sample.png │ │ │ └── sample@2x.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── partialView.exsd │ │ └── src │ │ │ └── org │ │ │ ├── eclipse │ │ │ └── wb │ │ │ │ └── swt │ │ │ │ └── SWTResourceManager.java │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── environment │ │ │ └── design │ │ │ ├── Activator.java │ │ │ ├── actions │ │ │ ├── EObjectSelectionWizardAction.java │ │ │ ├── ISObjectSelectionWizardAction.java │ │ │ └── PaneBasedReferenceEditionWizardAction.java │ │ │ ├── extension │ │ │ ├── StructuredTypeChildrenContribution.java │ │ │ └── StructuredTypeLabelsSwitch.java │ │ │ ├── internal │ │ │ ├── EnvironmentRow.java │ │ │ └── commands │ │ │ │ ├── OverridenSetCommand.java │ │ │ │ └── UnsetCrossReferenceCommand.java │ │ │ ├── ui │ │ │ ├── dialog │ │ │ │ ├── EnvironmentResourcesDialog.java │ │ │ │ └── EnvironmentUsedElementResourceWarning.java │ │ │ ├── handlers │ │ │ │ └── OpenEnvResourcesDialog.java │ │ │ ├── menu │ │ │ │ ├── PartialViewCreationAction.java │ │ │ │ ├── PartialViewExtension.java │ │ │ │ └── PartialViewMenuFactory.java │ │ │ └── testers │ │ │ │ └── IsModelingPrjOrAirdPropertyTester.java │ │ │ ├── views │ │ │ └── ISPropertiesTabsRegistry.java │ │ │ └── wizards │ │ │ ├── ISObjectSelectionWizard.java │ │ │ ├── ISObjectSelectionWizardPage.java │ │ │ ├── ISObjectTreeItemWrapper.java │ │ │ ├── NewEnvironmentModelWizard.java │ │ │ └── NewMetaDataDefinitionsModelWizard.java │ │ └── org.obeonetwork.dsl.environment.properties │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── description │ │ └── environment-properties.odesign │ │ ├── icons │ │ └── full16 │ │ │ ├── Add_16x16.gif │ │ │ ├── ArrowDown_16x16.gif │ │ │ ├── ArrowUp_16x16.gif │ │ │ ├── Delete_16x16.gif │ │ │ └── Edit_16x16.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ └── metadataHelpProvider.exsd │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── environment │ │ └── properties │ │ ├── Activator.java │ │ ├── internal │ │ ├── TableColumnsLabelProvider.java │ │ ├── TableReferenceContentProvider.java │ │ ├── link │ │ │ └── resolver │ │ │ │ └── MetadataEnvironmentPropertiesLinkResolver.java │ │ └── services │ │ │ └── EnvironmentServices.java │ │ ├── providers │ │ └── IMetaDataHelpProvider.java │ │ └── ui │ │ └── eef │ │ └── widget │ │ ├── ButtonSelectionListener.java │ │ ├── TableController.java │ │ ├── TableLifecycleManager.java │ │ └── TableLifecycleManagerProvider.java ├── graal │ ├── features │ │ └── org.obeonetwork.graal.design.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.graal.design.test │ │ ├── .project │ │ ├── ApplicationName.ctx │ │ ├── InitEBookStore.ctx │ │ ├── InitWorkspace.ctx │ │ ├── LaunchAllGraalTests.suite │ │ ├── MaximizeWindow.ctx │ │ ├── NoErrorInErrorLog.verification │ │ ├── TestingActionsPlanTools.test │ │ ├── TestingActorsGraphTools.test │ │ ├── TestingDomainClassesNamespaceHierarchyExternalNamespaces.test │ │ ├── TestingRequirementsTaskTracabilityMatrixTools.test │ │ ├── TestingRequirementsUseCaseTracabilityMatrixTools.test │ │ ├── TestingTasksGraphTools.test │ │ ├── TestingUseCaseDiagramTools.test │ │ ├── TestingUseCasesMainViewTools.test │ │ ├── TestingUserStoriesTableTools.test │ │ ├── pom.xml │ │ └── rcptt.properties │ │ └── org.obeonetwork.graal.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── description │ │ ├── graal.classdiagramconf │ │ ├── graal.odesign │ │ └── requirements.odesign │ │ ├── icons │ │ ├── Add.gif │ │ ├── Delete.gif │ │ ├── Edit.gif │ │ ├── Highlight.gif │ │ ├── NoHighlight.gif │ │ ├── UserStoryView.gif │ │ └── full │ │ │ ├── obj16 │ │ │ └── GraalModelFile.gif │ │ │ └── wizban │ │ │ └── NewGraal.gif │ │ ├── images │ │ ├── Actor.svg │ │ ├── UseCase.svg │ │ ├── abort_node.svg │ │ ├── appli_action.png │ │ ├── appli_event.png │ │ ├── final_node.svg │ │ ├── inherits.png │ │ ├── initial_node.svg │ │ ├── shape_graal_base.svg │ │ ├── shape_graal_blue.svg │ │ ├── shape_graal_green.svg │ │ ├── task.png │ │ ├── tasks_group.svg │ │ ├── user_action.png │ │ ├── user_view.png │ │ └── works_on.gif │ │ ├── model │ │ ├── graal-featureextensions.ecore │ │ └── graal-featureextensions.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ └── org │ │ │ └── obeonetwork │ │ │ └── graal │ │ │ └── design │ │ │ └── graalfeatureextensions │ │ │ ├── GraalfeatureextensionsFactory.java │ │ │ ├── GraalfeatureextensionsPackage.java │ │ │ ├── UIConfiguration.java │ │ │ ├── impl │ │ │ ├── GraalfeatureextensionsFactoryImpl.java │ │ │ ├── GraalfeatureextensionsPackageImpl.java │ │ │ └── UIConfigurationImpl.java │ │ │ └── util │ │ │ ├── GraalfeatureextensionsAdapterFactory.java │ │ │ ├── GraalfeatureextensionsResourceFactoryImpl.java │ │ │ ├── GraalfeatureextensionsResourceImpl.java │ │ │ └── GraalfeatureextensionsSwitch.java │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── graal │ │ └── design │ │ ├── Activator.java │ │ ├── command │ │ ├── LinkStory.java │ │ ├── UnlinkStory.java │ │ └── UpdateStoryActivationStatus.java │ │ ├── extension │ │ ├── GraalFeatureExtension.java │ │ └── GraalFeatureExtensionServices.java │ │ ├── services │ │ ├── actor │ │ │ └── ActorUtils.java │ │ ├── configuration │ │ │ └── UIConfigurationServices.java │ │ ├── extensions │ │ │ └── properties │ │ │ │ └── ExtensionsPropertiesServices.java │ │ ├── group │ │ │ ├── GroupAction.java │ │ │ └── UngroupAction.java │ │ ├── requirements │ │ │ └── RequirementsUtils.java │ │ ├── task │ │ │ ├── ActionsPlanUtils.java │ │ │ ├── CreateUseRelationshipAction.java │ │ │ └── TaskUtils.java │ │ ├── usability │ │ │ ├── DisplayLabelServices.java │ │ │ └── EditLabelServices.java │ │ ├── use │ │ │ └── UseReferencesServices.java │ │ ├── usecase │ │ │ ├── CreateUseCaseAction.java │ │ │ └── RemoveFromUseCaseAction.java │ │ └── util │ │ │ ├── DeleteUtils.java │ │ │ └── MessageServices.java │ │ ├── ui │ │ ├── decoration │ │ │ ├── AbstractUserStoryDecorator.java │ │ │ ├── UserStoryDecoratorProvider.java │ │ │ ├── UserStoryEdgeDecorator.java │ │ │ └── UserStoryNodeDecorator.java │ │ ├── dialog │ │ │ ├── CreateUseRelationshipDialog.java │ │ │ └── UserStoryDialog.java │ │ ├── eef │ │ │ ├── CustomEEFLabelProvider.java │ │ │ ├── CustomUserStoryPropertiesEditionPartForm.java │ │ │ └── UserStoryTabPropertiesEditionSection.java │ │ ├── providers │ │ │ ├── RootElement.java │ │ │ └── TasksContentProvider.java │ │ └── view │ │ │ ├── UserStoriesView.java │ │ │ ├── command │ │ │ ├── AddUserStoryCommand.java │ │ │ ├── DeleteUserStoriesCommand.java │ │ │ ├── EditUserStoryCommand.java │ │ │ ├── HighlightUserStoryCommand.java │ │ │ └── impl │ │ │ │ ├── AddUserStoryHandler.java │ │ │ │ ├── DeleteUserStoriesHandler.java │ │ │ │ ├── EditUserStoryHandler.java │ │ │ │ ├── HighlightUserStoryHandler.java │ │ │ │ └── tester │ │ │ │ ├── AbstractUserStoryTester.java │ │ │ │ ├── AddUserStoryTester.java │ │ │ │ ├── DeleteUserStoryTester.java │ │ │ │ ├── EditUserStoryTester.java │ │ │ │ └── HighlightUserStoryTester.java │ │ │ ├── explorer │ │ │ └── system │ │ │ │ ├── SystemTreeContentLabelProvider.java │ │ │ │ ├── SystemTreeContentProvider.java │ │ │ │ └── SystemTreeContentViewerComparator.java │ │ │ └── util │ │ │ ├── UserStoriesCheckStateProvider.java │ │ │ ├── UserStoriesContentProvider.java │ │ │ ├── UserStoriesViewHelper.java │ │ │ ├── UserStoryLabelProvider.java │ │ │ └── ViewpointMultiSelectionListener.java │ │ └── wizards │ │ └── NewGraalModelWizard.java ├── interaction │ ├── features │ │ └── org.obeonetwork.dsl.interaction.design.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.interaction.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── .gitignore │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── description │ │ │ └── interaction.odesign │ │ ├── icons │ │ │ ├── delete.gif │ │ │ ├── full │ │ │ │ ├── obj16 │ │ │ │ │ └── InteractionModelFile.gif │ │ │ │ └── wizban │ │ │ │ │ └── NewInteraction.gif │ │ │ ├── lock-by-me.gif │ │ │ └── lock-by-others.gif │ │ ├── images │ │ │ ├── createSequenceDiagram.gif │ │ │ ├── eol.png │ │ │ └── state_invariant.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── interaction │ │ │ └── design │ │ │ ├── Activator.java │ │ │ ├── services │ │ │ ├── DeleteServices.java │ │ │ └── InteractionServices.java │ │ │ ├── ui │ │ │ └── extension │ │ │ │ ├── InteractionSessionExtension.java │ │ │ │ ├── actions │ │ │ │ ├── CreateSequenceDiagramAction.java │ │ │ │ ├── DeleteInteractionHandler.java │ │ │ │ ├── IsInteractionPropertyTester.java │ │ │ │ └── NewSequenceDiagramMenuAction.java │ │ │ │ └── providers │ │ │ │ ├── InteractionAnalysisContextMenuActionProvider.java │ │ │ │ ├── InteractionAnalysisTreeProvider.java │ │ │ │ ├── InteractionParentSelectionContentProvider.java │ │ │ │ └── InteractionParentSelectionLabelProvider.java │ │ │ └── wizards │ │ │ └── NewInteractionModelWizard.java │ │ └── org.obeonetwork.dsl.interaction.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.pde.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ ├── ISD - Interaction tooling-toc.xml │ │ ├── ISD - Interaction tooling.html │ │ ├── ISD - Interaction tooling.textile │ │ └── pics │ │ │ ├── CreationMenu.png │ │ │ ├── Diagram.png │ │ │ ├── DiagramInExplorer.png │ │ │ ├── Interaction-ModelCreationWizard-01.png │ │ │ ├── Interaction-ModelCreationWizard-02.png │ │ │ └── tools │ │ │ ├── AsyncCall.png │ │ │ ├── Call.png │ │ │ ├── CombinedFragment.png │ │ │ ├── Create.png │ │ │ ├── Destroy.png │ │ │ ├── Execution.png │ │ │ ├── InteractionUse.png │ │ │ ├── Operand.png │ │ │ ├── Participant.png │ │ │ ├── Return.png │ │ │ ├── StateInvariant.png │ │ │ └── SyncCall.png │ │ ├── plugin.xml │ │ └── pom.xml ├── is │ ├── features │ │ └── org.obeonetwork.dsl.feature.is.design │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.is.design.generator │ │ └── .project │ │ └── org.obeonetwork.dsl.is.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── description │ │ ├── images │ │ │ ├── BlankPixel.gif │ │ │ ├── ReferenceEnd.gif │ │ │ ├── cinematic │ │ │ │ └── ExternalScreen.gif │ │ │ ├── containment.gif │ │ │ ├── entity │ │ │ │ ├── Composition.gif │ │ │ │ ├── ExternalEntity.gif │ │ │ │ ├── Inheritance.gif │ │ │ │ ├── Mapping_Table_Per_Class_Hierarchy.gif │ │ │ │ ├── Mapping_Table_Per_Subclass.gif │ │ │ │ └── Relation.gif │ │ │ ├── environment │ │ │ │ ├── BindingInfo.gif │ │ │ │ ├── Composition.gif │ │ │ │ ├── Inheritance.gif │ │ │ │ └── Relation.gif │ │ │ ├── shortcut.gif │ │ │ └── swtwidgets │ │ │ │ ├── gallery-canvas.png │ │ │ │ ├── gallery-check.png │ │ │ │ ├── gallery-combo.png │ │ │ │ ├── gallery-label.png │ │ │ │ ├── gallery-link.png │ │ │ │ ├── gallery-list.png │ │ │ │ ├── gallery-progressbar.png │ │ │ │ ├── gallery-push.png │ │ │ │ ├── gallery-radio.png │ │ │ │ ├── gallery-slider.png │ │ │ │ ├── gallery-table.png │ │ │ │ ├── gallery-textmulti.png │ │ │ │ ├── gallery-textsingle.png │ │ │ │ └── gallery-toggle.png │ │ └── is.odesign │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── is │ │ └── design │ │ ├── Activator.java │ │ ├── IsdUISessionFactory.java │ │ └── ui │ │ ├── providers │ │ └── EnvironmentEditPartProvider.java │ │ └── selector │ │ ├── CreateTablesAndTreesLocallyDAnalysisSelector.java │ │ └── UpdateDAnalysisSelectorSessionListener.java ├── requirement │ ├── features │ │ └── org.obeonetwork.dsl.requirement.design.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.requirement.design.test │ │ ├── .project │ │ ├── InitEBookStore.ctx │ │ ├── InitWorkspace.ctx │ │ ├── LaunchAllRequirementTools.suite │ │ ├── MaximizeWindow.ctx │ │ ├── NoErrorInErrorLog.verification │ │ ├── TestingRequirementsTableTools.test │ │ ├── TestingRequirementsTraceabilityMatrixTools.test │ │ ├── pom.xml │ │ └── rcptt.properties │ │ ├── org.obeonetwork.dsl.requirement.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── description │ │ │ └── requirement.odesign │ │ ├── icons │ │ │ └── full │ │ │ │ ├── obj16 │ │ │ │ └── RequirementModelFile.gif │ │ │ │ └── wizban │ │ │ │ └── NewRequirement.gif │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── blacklistedRequirementDecorator.exsd │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── requirement │ │ │ ├── design │ │ │ ├── Activator.java │ │ │ ├── comparators │ │ │ │ ├── CategoryComparator.java │ │ │ │ └── RequirementComparator.java │ │ │ ├── provider │ │ │ │ ├── CategoriesTreeContentProvider.java │ │ │ │ └── RequirementLabelProvider.java │ │ │ ├── selection │ │ │ │ └── CategorySelectionDialog.java │ │ │ ├── services │ │ │ │ ├── RequirementDecoratorBlacklist.java │ │ │ │ └── RequirementsServices.java │ │ │ └── wizards │ │ │ │ └── NewRequirementModelWizard.java │ │ │ ├── filters │ │ │ ├── CategoryTabPropertiesEditionSection.java │ │ │ ├── RepositoryTabPropertiesEditionSection.java │ │ │ └── RequirementTabPropertiesEditionSection.java │ │ │ └── parts │ │ │ └── forms │ │ │ ├── CustomAdvancedPropertiesEditionPartForm.java │ │ │ ├── CustomCategoryPropertiesEditionPartForm.java │ │ │ ├── CustomEEFLabelProvider.java │ │ │ ├── CustomRepositoryPropertiesEditionPartForm.java │ │ │ └── CustomRequirementPropertiesEditionPartForm.java │ │ └── org.obeonetwork.dsl.requirement.validation │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── requirement │ │ └── validation │ │ ├── Activator.java │ │ ├── RequirementsShouldBeTested.java │ │ ├── ValidateRequirementsHandler.java │ │ ├── ValidationDelegateClientSelector.java │ │ └── rules │ │ └── UniqueIdConstraint.java ├── soa │ ├── features │ │ └── org.obeonetwork.dsl.soa.design.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.soa.design.test │ │ ├── .project │ │ ├── ApplicationName.ctx │ │ ├── InitalWorkspace.ctx │ │ ├── LaunchAllSOATests.suite │ │ ├── MaximizedWindows.ctx │ │ ├── NoErrorInErrorLog.verification │ │ ├── TestingComponentContractDiagramTools.test │ │ ├── TestingDTODiagramToolsBidirectionalRelation.test │ │ ├── TestingDTODiagramToolsDTO.test │ │ ├── TestingDTODiagramToolsEnumeration.test │ │ ├── TestingDTODiagramToolsExternalDTO.test │ │ ├── TestingDTODiagramToolsExternalEntitiesUsability.test │ │ ├── TestingDTODiagramToolsNamespace.test │ │ ├── TestingDTODiagramToolsRelation.test │ │ ├── TestingDTODiagramToolsUsability.test │ │ ├── TestingDTONamespaceHierarchyExternalNamespaces.test │ │ ├── TestingDTONamespacesHierarchyTools.test │ │ ├── TestingSOADiagramTools.test │ │ ├── pom.xml │ │ └── rcptt.properties │ │ ├── org.obeonetwork.dsl.soa.design │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.acceleo │ │ ├── build.properties │ │ ├── description │ │ │ ├── soa.classdiagramconf │ │ │ └── soa.odesign │ │ ├── icons │ │ │ └── full │ │ │ │ ├── obj16 │ │ │ │ ├── SoaModelFile.gif │ │ │ │ └── pages.png │ │ │ │ ├── others │ │ │ │ ├── add.gif │ │ │ │ ├── delete.gif │ │ │ │ ├── down.gif │ │ │ │ └── up.gif │ │ │ │ └── wizban │ │ │ │ └── NewSoa.gif │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── mediaTypes.exsd │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── soa │ │ │ └── design │ │ │ ├── Activator.java │ │ │ ├── adapters │ │ │ └── SecuritySchemeTypeAdapter.java │ │ │ ├── dialogs │ │ │ ├── Messages.java │ │ │ ├── NewFlowDialog.java │ │ │ ├── NewSecuritySchemeDialog.java │ │ │ ├── messages.properties │ │ │ └── supports │ │ │ │ ├── AbstractScopeEditingSupport.java │ │ │ │ ├── ScopeDescriptionEditingSupport.java │ │ │ │ └── ScopeNameEditingSupport.java │ │ │ ├── services │ │ │ ├── EcoreService.java │ │ │ ├── Messages.java │ │ │ ├── OpenApiService.java │ │ │ ├── SOALabelService.java │ │ │ ├── SOAService.java │ │ │ ├── SOAValidators.java │ │ │ └── messages.properties │ │ │ ├── triggers │ │ │ ├── CreateOrRemoveInputParameterChangeTrigger.java │ │ │ ├── OperationRestExpositionChangeTrigger.java │ │ │ └── RemoveSecuritySchemeChangeTrigger.java │ │ │ └── wizards │ │ │ └── NewSoaModelWizard.java │ │ └── org.obeonetwork.dsl.soa.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.pde.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ ├── ISD - SOA Designer-toc.xml │ │ ├── ISD - SOA Designer.html │ │ ├── ISD - SOA Designer.textile │ │ └── pics │ │ │ ├── SOA_Components_NewRepresentation.png │ │ │ ├── SOA_ModelCreationWizardResult_01.png │ │ │ ├── SOA_ModelCreationWizard_01.png │ │ │ ├── SOA_ModelCreationWizard_02.png │ │ │ ├── SOA_ViewpointSelection.png │ │ │ ├── contract │ │ │ ├── ComponentContract_Diagram.png │ │ │ ├── ComponentContract_MetaType_Layer.png │ │ │ ├── Palette_CreateFault.png │ │ │ ├── Palette_CreateInput.png │ │ │ ├── Palette_CreateOperation.png │ │ │ ├── Palette_CreateOutput.png │ │ │ ├── Palette_CreateProvided.png │ │ │ └── Palette_CreateRequired.png │ │ │ ├── dto │ │ │ ├── DTO_Diagram.png │ │ │ ├── DTO_Diagram_ExternalDTOs.png │ │ │ ├── Palette_CreateAttribute.png │ │ │ ├── Palette_CreateBidirectionalComposition.png │ │ │ ├── Palette_CreateBidirectionalRelation.png │ │ │ ├── Palette_CreateComposition.png │ │ │ ├── Palette_CreateDTO.png │ │ │ ├── Palette_CreateDTOFromEntity.png │ │ │ ├── Palette_CreateEnumeration.png │ │ │ ├── Palette_CreateExternalDTO.png │ │ │ ├── Palette_CreateExternalDTO_Dialog.png │ │ │ ├── Palette_CreateInheritance.png │ │ │ ├── Palette_CreateLiteral.png │ │ │ ├── Palette_CreateNamespace.png │ │ │ ├── Palette_CreateNamespaceFromEntity.png │ │ │ ├── Palette_CreateNamespaceFromEntityNamespace.png │ │ │ ├── Palette_CreateNamespaceFromEntityNamespace_Dialog.png │ │ │ └── Palette_CreateRelation.png │ │ │ ├── etool16 │ │ │ ├── add.gif │ │ │ ├── delete.gif │ │ │ ├── down.gif │ │ │ ├── edit.gif │ │ │ ├── layers_DropDown.png │ │ │ └── up.gif │ │ │ ├── exposition │ │ │ ├── Diagram_Operation_Decorated_Pagination.PNG │ │ │ ├── Diagram_Operation_Decorated_SecurityScheme.png │ │ │ ├── Dialog_SecurityScheme_Creation.png │ │ │ ├── Dialog_SecurityScheme_Selection.png │ │ │ ├── Dialog_SelectStatus_FaultParameter.png │ │ │ ├── Dialog_SelectStatus_OutputParameter.png │ │ │ ├── Dialog_SwaggerExport.png │ │ │ ├── Icon_Operation.gif │ │ │ ├── Icon_OperationPublic.gif │ │ │ ├── Icon_OperationRest.gif │ │ │ ├── Icon_OperationSoap.gif │ │ │ ├── Icon_Operation_Secu.png │ │ │ ├── Icon_SecurityScheme.gif │ │ │ ├── Icon_SecuritySchemeFromService.gif │ │ │ ├── Menu_SwaggerConvert.png │ │ │ ├── Menu_SwaggerImport.png │ │ │ ├── Menu_SwaggerPreview.png │ │ │ ├── ModelExplorer_SOA_Hierarchy.png │ │ │ ├── Properties_Component_Exposition_Tab.png │ │ │ ├── Properties_Component_SecuritySchemes_Tab.png │ │ │ ├── Properties_Component_UserInfo.PNG │ │ │ ├── Properties_InputParameter_Exposition_Tab_PassingMode_BODY.png │ │ │ ├── Properties_InputParameter_Exposition_Tab_PassingMode_PATH.png │ │ │ ├── Properties_InputParameter_Exposition_Tab_PassingMode_PATH_WithError.png │ │ │ ├── Properties_InputParameter_Exposition_Tab_PassingMode_QUERY.png │ │ │ ├── Properties_Operation_Exposition_Tab.png │ │ │ ├── Properties_Operation_Operation_Tab.png │ │ │ ├── Properties_Operation_Operation_Tab_Security.png │ │ │ ├── Properties_Operation_Pagination.PNG │ │ │ ├── Properties_Operation_Pagination_Extension.PNG │ │ │ ├── Properties_OutputParameter_Exposition_Tab.png │ │ │ ├── Properties_Parameter_Exposition_EditMediaTypeDialog.png │ │ │ ├── Properties_Parameter_Exposition_SelectMediaTypeStatusDialog.png │ │ │ ├── Properties_Parameter_Exposition_Tab_MediaTypes.png │ │ │ ├── Properties_SecurityScheme.png │ │ │ ├── Properties_SecurityScheme_Selection.png │ │ │ ├── Properties_Service_Exposition_Tab.png │ │ │ └── SwaggerPreview.png │ │ │ ├── hierarchy │ │ │ ├── Palette_CreateNamespace.png │ │ │ ├── Palette_CreateNamespaceFromOther.png │ │ │ ├── namespaces_hierarchy.png │ │ │ └── namespaces_hierarchy_dependencies.png │ │ │ ├── propertiesextension │ │ │ ├── properties_extension_edit.png │ │ │ └── properties_extensions_list.png │ │ │ ├── securityschemes │ │ │ ├── Dialog_Flow_Edition.png │ │ │ ├── Dialog_Flow_Edition_OpenID.png │ │ │ ├── Dialog_SecurityScheme_Creation.png │ │ │ ├── Dialog_SecurityScheme_Edition_ApiKey.png │ │ │ ├── Dialog_SecurityScheme_Edition_HTTP.png │ │ │ ├── Dialog_SecurityScheme_Edition_OAuth2.png │ │ │ └── Dialog_SecurityScheme_Edition_OpenID.png │ │ │ └── soa │ │ │ ├── Palette_CreateComponent.png │ │ │ ├── Palette_CreateExternal.png │ │ │ ├── Palette_CreateProvided.png │ │ │ ├── Palette_CreateRequired.png │ │ │ ├── Palette_CreateWire.png │ │ │ └── SOA_Diagram.png │ │ ├── plugin.xml │ │ └── pom.xml └── statemachine │ ├── features │ └── org.obeonetwork.dsl.statemachine.design.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ └── pom.xml │ └── plugins │ ├── org.obeonetwork.dsl.statemachine.design.test │ ├── .project │ ├── ApplicationName.ctx │ ├── InitalWorkspace.ctx │ ├── LaunchAllStateMachineTests.suite │ ├── MaximizedWindows.ctx │ ├── NoErrorInErrorLog.verification │ ├── TestingStateMachineDiagramTools.test │ ├── pom.xml │ └── rcptt.properties │ ├── org.obeonetwork.dsl.statemachine.design │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── .gitignore │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── description │ │ └── statemachine.odesign │ ├── icons │ │ ├── FlowNode.png │ │ ├── Package.png │ │ ├── StateFinalNode.png │ │ ├── StateInitNode.png │ │ ├── StateMachine.gif │ │ ├── delete.gif │ │ ├── final_state.svg │ │ ├── full │ │ │ ├── obj16 │ │ │ │ └── StateMachineModelFile.gif │ │ │ └── wizban │ │ │ │ └── NewStateMachine.gif │ │ ├── initial_state.svg │ │ ├── lifeline.png │ │ ├── lock-by-me.gif │ │ └── lock-by-others.gif │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── statemachine │ │ └── design │ │ ├── Activator.java │ │ ├── services │ │ └── StateMachineServices.java │ │ ├── ui │ │ └── extension │ │ │ ├── StateMachineSessionExtension.java │ │ │ ├── actions │ │ │ ├── CreateStateMachineDiagramAction.java │ │ │ ├── DeleteStateMachineHandler.java │ │ │ ├── IsStateMachinePropertyTester.java │ │ │ └── NewStateMachineDiagramMenuAction.java │ │ │ └── providers │ │ │ ├── StateMachineAnalysisContextMenuActionProvider.java │ │ │ ├── StateMachineAnalysisTreeProvider.java │ │ │ ├── StateMachineParentSelectionContentProvider.java │ │ │ └── StateMachineParentSelectionLabelProvider.java │ │ └── wizards │ │ └── NewStateMachineModelWizard.java │ └── org.obeonetwork.dsl.statemachine.doc │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── doc │ ├── ISD - State Machine tooling-toc.xml │ ├── ISD - State Machine tooling.html │ ├── ISD - State Machine tooling.textile │ └── pics │ │ ├── CreationMenu.png │ │ ├── DiagramInExplorer.png │ │ ├── StateMachine-ModelCreationWizard-01.png │ │ ├── StateMachine-ModelCreationWizard-02.png │ │ ├── statemachine.png │ │ └── tools │ │ ├── FinalState.png │ │ ├── InitialState.png │ │ ├── Region.png │ │ ├── State.png │ │ └── Transition.png │ ├── plugin.xml │ └── pom.xml ├── is-designer ├── branding │ ├── features │ │ ├── org.obeonetwork.is.designer.branding.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ └── org.obeonetwork.is.designer.ui.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.is.designer.branding │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.ini │ │ ├── about.properties │ │ ├── build.properties │ │ ├── helpData.xml │ │ ├── icons │ │ │ ├── about.gif │ │ │ ├── aboutpage.bmp │ │ │ ├── logo_128.gif │ │ │ ├── logo_16.gif │ │ │ ├── logo_32.gif │ │ │ └── logo_64.gif │ │ ├── mksplash.sh │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_customization.ini │ │ ├── pom.xml │ │ └── splash.bmp │ │ └── org.obeonetwork.is.designer.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── is │ │ └── designer │ │ ├── Activator.java │ │ └── contribution │ │ ├── Messages.java │ │ ├── StatusBarBrandingControlContribution.java │ │ └── messages.properties └── releng │ ├── org.obeonetwork.is.designer.parent │ ├── .project │ ├── pom.xml │ └── target_platform │ │ ├── isdesigner.target │ │ ├── isdesigner.tpd │ │ ├── isrepository.target │ │ └── isrepository.tpd │ ├── org.obeonetwork.is.designer.product.feature │ ├── .project │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── pom.xml │ ├── org.obeonetwork.is.designer.product │ ├── .project │ ├── category.xml │ ├── icons │ │ ├── about.gif │ │ ├── icon_isdesigner.icns │ │ ├── logo_128.gif │ │ ├── logo_128.png │ │ ├── logo_16.gif │ │ ├── logo_16.png │ │ ├── logo_256.gif │ │ ├── logo_256.png │ │ ├── logo_32.gif │ │ ├── logo_32.png │ │ ├── logo_48.gif │ │ ├── logo_48.png │ │ ├── logo_512.gif │ │ ├── logo_512.png │ │ ├── logo_64.gif │ │ ├── logo_64.png │ │ └── logo_64.xpm │ ├── index.html │ ├── isdesigner.p2.inf │ ├── isdesigner.product │ ├── plugin_customization.ini │ ├── pom.xml │ └── site.xml │ └── org.obeonetwork.is.designer.rcptt.parent │ ├── .project │ └── pom.xml ├── m2doc ├── cinematic │ ├── features │ │ └── org.obeonetwork.cinematic.m2doc.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.cinematic.m2doc.services.test │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── cinematic │ │ │ └── m2doc │ │ │ └── services │ │ │ └── test │ │ │ └── CinematicServiceTest.java │ │ └── org.obeonetwork.cinematic.m2doc.services │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── docs.css │ │ │ └── js │ │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.js │ │ │ │ └── jquery │ │ │ │ └── jquery-1.7.1.js │ │ ├── pages │ │ │ ├── index.html │ │ │ ├── m2doc_services_abortstate.html │ │ │ ├── m2doc_services_abstractpackage.html │ │ │ ├── m2doc_services_abstractviewelement.html │ │ │ ├── m2doc_services_actionstate.html │ │ │ ├── m2doc_services_annotation.html │ │ │ ├── m2doc_services_asynceventstate.html │ │ │ ├── m2doc_services_cinematicroot.html │ │ │ ├── m2doc_services_decisionstate.html │ │ │ ├── m2doc_services_eobject.html │ │ │ ├── m2doc_services_finalstate.html │ │ │ ├── m2doc_services_flow.html │ │ │ ├── m2doc_services_flowaction.html │ │ │ ├── m2doc_services_flowevent.html │ │ │ ├── m2doc_services_flowstate.html │ │ │ ├── m2doc_services_initialstate.html │ │ │ ├── m2doc_services_layout.html │ │ │ ├── m2doc_services_metadatadefinition.html │ │ │ ├── m2doc_services_obeodsmobject.html │ │ │ ├── m2doc_services_package.html │ │ │ ├── m2doc_services_requirement.html │ │ │ ├── m2doc_services_style.html │ │ │ ├── m2doc_services_subflowstate.html │ │ │ ├── m2doc_services_toolkit.html │ │ │ ├── m2doc_services_transition.html │ │ │ ├── m2doc_services_viewaction.html │ │ │ ├── m2doc_services_viewcontainer.html │ │ │ ├── m2doc_services_viewcontainerreference.html │ │ │ ├── m2doc_services_viewelement.html │ │ │ ├── m2doc_services_viewevent.html │ │ │ ├── m2doc_services_viewstate.html │ │ │ ├── m2doc_services_viewstyle.html │ │ │ ├── m2doc_services_widget.html │ │ │ └── m2doc_services_widgeteventtype.html │ │ └── toc.xml │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── cinematic │ │ └── m2doc │ │ ├── extension │ │ ├── MList.java │ │ └── MListImpl.java │ │ └── services │ │ └── CinematicServices.java ├── database │ ├── features │ │ └── org.obeonetwork.database.m2doc.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.database.m2doc.services.test │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── Oracle-11g.typeslibrary │ │ │ ├── referentiel-mld.database │ │ │ ├── referentiel-oracle.database │ │ │ ├── safran832.database │ │ │ ├── serie-mld.database │ │ │ └── serie-oracle.database │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── database │ │ │ └── m2doc │ │ │ └── services │ │ │ ├── ColumnServicesTest.java │ │ │ ├── DatabaseServicesTest.java │ │ │ ├── Safran832Test.java │ │ │ ├── SequenceServicesTest.java │ │ │ ├── TableServicesTest.java │ │ │ └── common │ │ │ └── AbstractTest.java │ │ └── org.obeonetwork.database.m2doc.services │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── docs.css │ │ │ └── js │ │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.js │ │ │ │ └── jquery │ │ │ │ └── jquery-1.7.1.js │ │ ├── pages │ │ │ ├── Column_services.html │ │ │ ├── Constraint_services.html │ │ │ ├── DataBase_services.html │ │ │ ├── Database_package.html │ │ │ ├── ForeignKeyElement_services.html │ │ │ ├── ForeignKey_services.html │ │ │ ├── IndexElement_services.html │ │ │ ├── Index_services.html │ │ │ ├── PrimaryKey_services.html │ │ │ ├── Schema_services.html │ │ │ ├── Sequence_services.html │ │ │ ├── Table_services.html │ │ │ ├── ViewElement_services.html │ │ │ ├── View_services.html │ │ │ ├── index.html │ │ │ ├── m2doc_services_abstracttable.html │ │ │ ├── m2doc_services_column.html │ │ │ ├── m2doc_services_constraint.html │ │ │ ├── m2doc_services_database.html │ │ │ ├── m2doc_services_databaseelement.html │ │ │ ├── m2doc_services_eobject.html │ │ │ ├── m2doc_services_foreignkey.html │ │ │ ├── m2doc_services_foreignkeyelement.html │ │ │ ├── m2doc_services_identifiable.html │ │ │ ├── m2doc_services_index.html │ │ │ ├── m2doc_services_indexelement.html │ │ │ ├── m2doc_services_namedelement.html │ │ │ ├── m2doc_services_obeodsmobject.html │ │ │ ├── m2doc_services_primarykey.html │ │ │ ├── m2doc_services_schema.html │ │ │ ├── m2doc_services_sequence.html │ │ │ ├── m2doc_services_table.html │ │ │ ├── m2doc_services_tablecontainer.html │ │ │ ├── m2doc_services_typeslibraryuser.html │ │ │ ├── m2doc_services_view.html │ │ │ ├── m2doc_services_viewcolumn.html │ │ │ ├── m2doc_services_viewelement.html │ │ │ └── m2doc_services_viewtable.html │ │ ├── source │ │ │ ├── database.modeldoc │ │ │ └── databaseDescription.modeldoc │ │ └── toc.xml │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── database │ │ └── m2doc │ │ ├── Activator.java │ │ └── services │ │ ├── ColumnServices.java │ │ ├── DataBaseServices.java │ │ ├── ForeignKeyElementServices.java │ │ ├── IndexElementServices.java │ │ ├── IndexServices.java │ │ ├── SchemaServices.java │ │ ├── SequenceServices.java │ │ ├── TableContainerServices.java │ │ └── TableServices.java ├── entity │ ├── feature │ │ └── org.obeonetwork.dsl.entity.m2doc.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.entity.m2doc.services.test │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── entity │ │ │ └── m2doc │ │ │ └── services │ │ │ └── test │ │ │ ├── EntityServiceTest.java │ │ │ └── EnvironmentServiceTest.java │ │ └── org.obeonetwork.dsl.entity.m2doc.services │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── docs.css │ │ │ └── js │ │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.js │ │ │ │ └── jquery │ │ │ │ └── jquery-1.7.1.js │ │ ├── pages │ │ │ ├── index.html │ │ │ ├── m2doc_services_entity.html │ │ │ ├── m2doc_services_entityfilter.html │ │ │ ├── m2doc_services_externalcriterion.html │ │ │ ├── m2doc_services_finder.html │ │ │ ├── m2doc_services_internalcriterion.html │ │ │ ├── m2doc_services_namespace.html │ │ │ └── m2doc_services_root.html │ │ └── toc.xml │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── entity │ │ └── m2doc │ │ └── services │ │ └── EntityServices.java ├── environment │ ├── feature │ │ └── org.obeonetwork.dsl.environment.m2doc.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.environment.m2doc.services.test │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── environment │ │ │ └── m2doc │ │ │ └── services │ │ │ └── test │ │ │ └── EnvironmentServiceTest.java │ │ └── org.obeonetwork.dsl.environment.m2doc.services │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── docs.css │ │ │ └── js │ │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.js │ │ │ │ └── jquery │ │ │ │ └── jquery-1.7.1.js │ │ ├── pages │ │ │ ├── index.html │ │ │ ├── m2doc_services_annotation.html │ │ │ ├── m2doc_services_attribute.html │ │ │ ├── m2doc_services_bindingelement.html │ │ │ ├── m2doc_services_bindinginfo.html │ │ │ ├── m2doc_services_bindingreference.html │ │ │ ├── m2doc_services_bindingregistry.html │ │ │ ├── m2doc_services_dto.html │ │ │ ├── m2doc_services_enumeration.html │ │ │ ├── m2doc_services_environment.html │ │ │ ├── m2doc_services_filtercontainer.html │ │ │ ├── m2doc_services_interdsmlink.html │ │ │ ├── m2doc_services_literal.html │ │ │ ├── m2doc_services_metadatacontainer.html │ │ │ ├── m2doc_services_metadatadefinition.html │ │ │ ├── m2doc_services_metadatadefinitions.html │ │ │ ├── m2doc_services_namespace.html │ │ │ ├── m2doc_services_namespacescontainer.html │ │ │ ├── m2doc_services_primitivetype.html │ │ │ ├── m2doc_services_priority.html │ │ │ ├── m2doc_services_prioritydefinition.html │ │ │ ├── m2doc_services_property.html │ │ │ ├── m2doc_services_reference.html │ │ │ ├── m2doc_services_structuredtype.html │ │ │ └── m2doc_services_typesdefinition.html │ │ └── toc.xml │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── environment │ │ └── m2doc │ │ └── services │ │ └── EnvironmentServices.java ├── graal │ ├── features │ │ └── org.obeonetwork.dsl.graal.m2doc.feature │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── org.eclipse.core.resources.prefs │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.graal.m2doc.services.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── DomainClass │ │ │ │ ├── AnnotationNotPresent.graal │ │ │ │ ├── AnnotationPresent.graal │ │ │ │ ├── AnnotationPresentMultipleTimes.graal │ │ │ │ ├── AnnotationWithEmptyMetadataContainer.graal │ │ │ │ └── AnnotationWithNoMetadataContainer.graal │ │ │ └── UseCase │ │ │ │ ├── AllKindsOfReferences.graal │ │ │ │ ├── DirectlyReferencedDomainClasses.graal │ │ │ │ ├── Entities.entity │ │ │ │ ├── NamespacesAndSubnamespaces.graal │ │ │ │ ├── NoDomainClasses.graal │ │ │ │ ├── NoDuplicates.graal │ │ │ │ ├── OtherStructuredTypes.graal │ │ │ │ ├── ReferencedByNamespacesDomainClasses.graal │ │ │ │ ├── ReferencedByTypesDomainClasses.graal │ │ │ │ └── SortIgnoringAccents.graal │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── graal │ │ │ └── m2doc │ │ │ └── services │ │ │ └── tests │ │ │ ├── AbstractTest.java │ │ │ ├── DomainClassServicesTest.java │ │ │ ├── EnvironmentServiceTest.java │ │ │ └── UseCaseServicesTest.java │ │ └── org.obeonetwork.dsl.graal.m2doc.services │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── docs.css │ │ │ └── js │ │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.js │ │ │ │ └── jquery │ │ │ │ └── jquery-1.7.1.js │ │ ├── pages │ │ │ ├── AbortNode_services.html │ │ │ ├── Actor_services.html │ │ │ ├── AppliAction_services.html │ │ │ ├── AppliEvent_services.html │ │ │ ├── DomainClass_services.html │ │ │ ├── FinalNode_services.html │ │ │ ├── InitialNode_services.html │ │ │ ├── Loop_services.html │ │ │ ├── Operator_services.html │ │ │ ├── System_services.html │ │ │ ├── TaskReference_services.html │ │ │ ├── Task_services.html │ │ │ ├── TasksGroup_services.html │ │ │ ├── Transition_services.html │ │ │ ├── UseCase_services.html │ │ │ ├── UserAction_services.html │ │ │ ├── UserStory_services.html │ │ │ ├── UserView_services.html │ │ │ ├── graal.html │ │ │ ├── index.html │ │ │ ├── m2doc_services_abortnode.html │ │ │ ├── m2doc_services_actor.html │ │ │ ├── m2doc_services_annotation.html │ │ │ ├── m2doc_services_appliaction.html │ │ │ ├── m2doc_services_applievent.html │ │ │ ├── m2doc_services_call.html │ │ │ ├── m2doc_services_domainclass.html │ │ │ ├── m2doc_services_eobject.html │ │ │ ├── m2doc_services_finalnode.html │ │ │ ├── m2doc_services_initialnode.html │ │ │ ├── m2doc_services_loop.html │ │ │ ├── m2doc_services_namespace.html │ │ │ ├── m2doc_services_obeodsmobject.html │ │ │ ├── m2doc_services_operator.html │ │ │ ├── m2doc_services_system.html │ │ │ ├── m2doc_services_task.html │ │ │ ├── m2doc_services_taskreference.html │ │ │ ├── m2doc_services_tasksgroup.html │ │ │ ├── m2doc_services_transition.html │ │ │ ├── m2doc_services_usecase.html │ │ │ ├── m2doc_services_useraction.html │ │ │ ├── m2doc_services_userstory.html │ │ │ ├── m2doc_services_userstoryelement.html │ │ │ └── m2doc_services_userview.html │ │ └── toc.xml │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── graal │ │ └── m2doc │ │ └── services │ │ ├── Activator.java │ │ ├── DomainClassServices.java │ │ ├── TaskServices.java │ │ ├── TransitionServices.java │ │ ├── UseCaseServices.java │ │ └── UserStoryElementServices.java ├── requirement │ ├── features │ │ └── org.obeonetwork.dsl.requirement.m2doc.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.requirement.m2doc.services.test │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── requirement │ │ │ └── service │ │ │ └── test │ │ │ ├── Activator.java │ │ │ └── RequiremelntServicesTest.java │ │ └── org.obeonetwork.dsl.requirement.m2doc.services │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── docs.css │ │ │ └── js │ │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.js │ │ │ │ └── jquery │ │ │ │ └── jquery-1.7.1.js │ │ ├── pages │ │ │ ├── index.html │ │ │ ├── m2doc_services_category.html │ │ │ ├── m2doc_services_eobject.html │ │ │ ├── m2doc_services_repository.html │ │ │ └── m2doc_services_requirement.html │ │ └── toc.xml │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── requirement │ │ └── m2doc │ │ └── services │ │ ├── Activator.java │ │ └── RequirementServices.java ├── soa │ ├── feature │ │ └── org.obeonetwork.dsl.soa.m2doc.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.soa.m2doc.services.test │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── soa │ │ │ └── m2doc │ │ │ └── services │ │ │ └── test │ │ │ ├── EnvironmentServiceTest.java │ │ │ └── SOAServicesTest.java │ │ └── org.obeonetwork.dsl.soa.m2doc.services │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── docs.css │ │ │ └── js │ │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.js │ │ │ │ └── jquery │ │ │ │ └── jquery-1.7.1.js │ │ ├── pages │ │ │ ├── index.html │ │ │ ├── m2doc_services_binding.html │ │ │ ├── m2doc_services_component.html │ │ │ ├── m2doc_services_contact.html │ │ │ ├── m2doc_services_example.html │ │ │ ├── m2doc_services_flow.html │ │ │ ├── m2doc_services_implementationcomponent.html │ │ │ ├── m2doc_services_information.html │ │ │ ├── m2doc_services_interface.html │ │ │ ├── m2doc_services_license.html │ │ │ ├── m2doc_services_mediatype.html │ │ │ ├── m2doc_services_operation.html │ │ │ ├── m2doc_services_parameter.html │ │ │ ├── m2doc_services_parameterrestdata.html │ │ │ ├── m2doc_services_propertiesextension.html │ │ │ ├── m2doc_services_scope.html │ │ │ ├── m2doc_services_securityapplication.html │ │ │ ├── m2doc_services_securityscheme.html │ │ │ ├── m2doc_services_server.html │ │ │ ├── m2doc_services_service.html │ │ │ ├── m2doc_services_system.html │ │ │ └── m2doc_services_wire.html │ │ └── toc.xml │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── soa │ │ └── m2doc │ │ └── services │ │ └── SOAServices.java └── tools │ └── org.obeonetwork.m2doc.doc.generator │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── DocumentationGenerator.launch │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ └── src │ └── org │ └── obeonetwork │ └── m2doc │ └── doc │ └── generator │ ├── Activator.java │ ├── DocumentationGenerator.java │ ├── M2DocHelpContentUtils.java │ └── reflection │ ├── OEcoreUtil.java │ └── ReflectionHelper.java ├── models ├── application │ ├── features │ │ └── org.obeonetwork.dsl.application.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.application.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ ├── ctool16 │ │ │ │ └── CreateConfiguration_bindingRegistries_BindingRegistry.gif │ │ │ │ └── obj16 │ │ │ │ └── Configuration.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src-gen │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── application │ │ │ └── provider │ │ │ ├── ApplicationEditPlugin.java │ │ │ ├── ApplicationItemProviderAdapterFactory.java │ │ │ └── ConfigurationItemProvider.java │ │ ├── org.obeonetwork.dsl.application.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ ├── obj16 │ │ │ │ └── ApplicationModelFile.gif │ │ │ │ └── wizban │ │ │ │ └── NewApplication.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src-gen │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── application │ │ │ └── presentation │ │ │ ├── ApplicationActionBarContributor.java │ │ │ ├── ApplicationEditor.java │ │ │ ├── ApplicationEditorPlugin.java │ │ │ └── ApplicationModelWizard.java │ │ └── org.obeonetwork.dsl.application │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── application.ecore │ │ └── application.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src-gen │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── application │ │ ├── ApplicationFactory.java │ │ ├── ApplicationPackage.java │ │ ├── Configuration.java │ │ ├── impl │ │ ├── ApplicationFactoryImpl.java │ │ ├── ApplicationPackageImpl.java │ │ └── ConfigurationImpl.java │ │ └── util │ │ ├── ApplicationAdapterFactory.java │ │ ├── ApplicationResourceFactoryImpl.java │ │ ├── ApplicationResourceImpl.java │ │ └── ApplicationSwitch.java ├── cinematic │ ├── features │ │ └── org.obeonetwork.dsl.feature.cinematic │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ ├── plugins │ │ ├── org.obeonetwork.dsl.cinematic.doc │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── doc │ │ │ │ ├── ISD - Cinematic tooling-toc.xml │ │ │ │ ├── ISD - Cinematic tooling.html │ │ │ │ ├── ISD - Cinematic tooling.textile │ │ │ │ └── pics │ │ │ │ │ ├── Cinematic-ModelCreationWizard-01.jpg │ │ │ │ │ ├── Cinematic-ModelCreationWizard-02.png │ │ │ │ │ ├── Cinematic-ModelCreationWizard-03.jpg │ │ │ │ │ ├── Cinematic-ModelCreationWizard-04.jpg │ │ │ │ │ ├── Cinematic-ViewpointSelection.jpg │ │ │ │ │ ├── FlowDiagram │ │ │ │ │ ├── EventSelectionDialog.png │ │ │ │ │ ├── FlowDiagram-01.png │ │ │ │ │ ├── FlowDiagram-02.png │ │ │ │ │ ├── Palette-BindExistingViewContainer.png │ │ │ │ │ ├── Palette-BindNewViewContainer.png │ │ │ │ │ ├── Palette-BindViewStateAndViewContainer.png │ │ │ │ │ ├── Palette-CreateAbort.png │ │ │ │ │ ├── Palette-CreateAction.png │ │ │ │ │ ├── Palette-CreateAsyncEvent.png │ │ │ │ │ ├── Palette-CreateDecision.png │ │ │ │ │ ├── Palette-CreateExistingFlow.png │ │ │ │ │ ├── Palette-CreateFinal.png │ │ │ │ │ ├── Palette-CreateFlowEvent.png │ │ │ │ │ ├── Palette-CreateInitial.png │ │ │ │ │ ├── Palette-CreateNewFlow.png │ │ │ │ │ ├── Palette-CreateTransition.png │ │ │ │ │ ├── Palette-CreateView.png │ │ │ │ │ └── ViewContainerSelectionDialog.png │ │ │ │ │ ├── LayoutDiagram │ │ │ │ │ └── LayoutDiagram-01.png │ │ │ │ │ ├── MockupDiagram │ │ │ │ │ ├── Layout-ModelStructure.png │ │ │ │ │ ├── Mockup-DefaultLayer.png │ │ │ │ │ ├── Mockup-ExampleLayer.png │ │ │ │ │ ├── Palette-SwtToolkit.png │ │ │ │ │ ├── Palette-WebToolkit.png │ │ │ │ │ ├── ViewContainerBinding.png │ │ │ │ │ └── ViewElementBinding.png │ │ │ │ │ ├── PackageDiagram │ │ │ │ │ ├── PackageDiagram-01.png │ │ │ │ │ ├── Palette-CreateFlow.png │ │ │ │ │ ├── Palette-CreatePackage.png │ │ │ │ │ └── Palette-CreateViewContainer.png │ │ │ │ │ ├── Toolkits │ │ │ │ │ ├── Toolkit-Example-Button-Documentation.png │ │ │ │ │ ├── Toolkit-Example-Button-MetaDatas.png │ │ │ │ │ ├── Toolkit-Example-Button-MetadataHelp.png │ │ │ │ │ ├── Toolkit-Example-Button-Properties.png │ │ │ │ │ ├── Toolkit-Example-Button-Summary.png │ │ │ │ │ ├── Toolkit-Example-Button-TreeView.png │ │ │ │ │ ├── Toolkit-ModelCreationWizard-01.png │ │ │ │ │ ├── Toolkit-ModelCreationWizard-02.png │ │ │ │ │ └── Toolkits-ClassDiagram.png │ │ │ │ │ ├── UIStructure │ │ │ │ │ ├── IHM-01.png │ │ │ │ │ └── UIStructure.png │ │ │ │ │ ├── buttonToolkit.PNG │ │ │ │ │ └── obj16 │ │ │ │ │ ├── FlowEvent.gif │ │ │ │ │ ├── ViewEvent.gif │ │ │ │ │ └── WidgetEventType.gif │ │ │ ├── plugin.xml │ │ │ └── pom.xml │ │ ├── org.obeonetwork.dsl.cinematic.edit │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── icons │ │ │ │ └── full │ │ │ │ │ ├── obj16 │ │ │ │ │ ├── AbortState.gif │ │ │ │ │ ├── ActionState.gif │ │ │ │ │ ├── AsyncEventState.gif │ │ │ │ │ ├── CinematicRoot.gif │ │ │ │ │ ├── DTOBinding.gif │ │ │ │ │ ├── DTOPropertyBinding.gif │ │ │ │ │ ├── DataBinding.gif │ │ │ │ │ ├── DecisionState.gif │ │ │ │ │ ├── EntityBinding.gif │ │ │ │ │ ├── EntityPropertyBinding.gif │ │ │ │ │ ├── FinalState.gif │ │ │ │ │ ├── Flow.gif │ │ │ │ │ ├── FlowAction.gif │ │ │ │ │ ├── FlowEvent.gif │ │ │ │ │ ├── FlowEvent_old.gif │ │ │ │ │ ├── InitialState.gif │ │ │ │ │ ├── Layout.gif │ │ │ │ │ ├── MetaDataDefinition.gif │ │ │ │ │ ├── NewViewEvent.gif │ │ │ │ │ ├── Package.gif │ │ │ │ │ ├── Panel.gif │ │ │ │ │ ├── Style.gif │ │ │ │ │ ├── SubflowState.gif │ │ │ │ │ ├── Toolkit.gif │ │ │ │ │ ├── Transition.gif │ │ │ │ │ ├── ViewAction.gif │ │ │ │ │ ├── ViewContainer.gif │ │ │ │ │ ├── ViewContainerReference.gif │ │ │ │ │ ├── ViewElement.gif │ │ │ │ │ ├── ViewEvent.gif │ │ │ │ │ ├── ViewEvent_old.gif │ │ │ │ │ ├── ViewState.gif │ │ │ │ │ ├── ViewStyle.gif │ │ │ │ │ ├── Widget.gif │ │ │ │ │ ├── WidgetEventType.gif │ │ │ │ │ └── Window.gif │ │ │ │ │ └── ovr16 │ │ │ │ │ └── ViewContainerReferenceOverlay.gif │ │ │ ├── model │ │ │ │ ├── cinematic.components │ │ │ │ └── cinematic.eefgen │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ ├── src-gen │ │ │ │ ├── cinematic_properties.plugin.xml │ │ │ │ ├── flow_properties.plugin.xml │ │ │ │ ├── org │ │ │ │ │ └── obeonetwork │ │ │ │ │ │ └── dsl │ │ │ │ │ │ └── cinematic │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── CinematicRootCinematicRootPropertiesEditionComponent.java │ │ │ │ │ │ ├── CinematicRootPropertiesEditionComponent.java │ │ │ │ │ │ ├── CinematicRootToolkitsPropertiesEditionComponent.java │ │ │ │ │ │ ├── PackagePackage_PropertiesEditionComponent.java │ │ │ │ │ │ └── PackagePropertiesEditionComponent.java │ │ │ │ │ │ ├── flow │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── AbortStateAbortStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── AbortStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── ActionStateActionStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── ActionStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── AsyncEventStateAsyncEventStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── AsyncEventStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── DecisionStateDecisionStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── DecisionStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── FinalStateFinalStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── FinalStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── FlowActionFlowActionPropertiesEditionComponent.java │ │ │ │ │ │ │ ├── FlowActionPropertiesEditionComponent.java │ │ │ │ │ │ │ ├── FlowEventFlowEventPropertiesEditionComponent.java │ │ │ │ │ │ │ ├── FlowEventPropertiesEditionComponent.java │ │ │ │ │ │ │ ├── FlowFlowPropertiesEditionComponent.java │ │ │ │ │ │ │ ├── FlowPropertiesEditionComponent.java │ │ │ │ │ │ │ ├── InitialStateInitialStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── InitialStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── SubflowStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── SubflowStateSubflowStatePropertiesEditionComponent.java │ │ │ │ │ │ │ ├── TransitionPropertiesEditionComponent.java │ │ │ │ │ │ │ ├── TransitionTransitionPropertiesEditionComponent.java │ │ │ │ │ │ │ ├── ViewStatePropertiesEditionComponent.java │ │ │ │ │ │ │ └── ViewStateViewStatePropertiesEditionComponent.java │ │ │ │ │ │ ├── parts │ │ │ │ │ │ │ ├── AbortStatePropertiesEditionPart.java │ │ │ │ │ │ │ ├── ActionStatePropertiesEditionPart.java │ │ │ │ │ │ │ ├── AsyncEventStatePropertiesEditionPart.java │ │ │ │ │ │ │ ├── DecisionStatePropertiesEditionPart.java │ │ │ │ │ │ │ ├── FinalStatePropertiesEditionPart.java │ │ │ │ │ │ │ ├── FlowActionPropertiesEditionPart.java │ │ │ │ │ │ │ ├── FlowEventPropertiesEditionPart.java │ │ │ │ │ │ │ ├── FlowPropertiesEditionPart.java │ │ │ │ │ │ │ ├── FlowViewsRepository.java │ │ │ │ │ │ │ ├── InitialStatePropertiesEditionPart.java │ │ │ │ │ │ │ ├── SubflowStatePropertiesEditionPart.java │ │ │ │ │ │ │ ├── TransitionPropertiesEditionPart.java │ │ │ │ │ │ │ ├── ViewStatePropertiesEditionPart.java │ │ │ │ │ │ │ ├── forms │ │ │ │ │ │ │ │ ├── AbortStatePropertiesEditionPartForm.java │ │ │ │ │ │ │ │ ├── ActionStatePropertiesEditionPartForm.java │ │ │ │ │ │ │ │ ├── AsyncEventStatePropertiesEditionPartForm.java │ │ │ │ │ │ │ │ ├── DecisionStatePropertiesEditionPartForm.java │ │ │ │ │ │ │ │ ├── FinalStatePropertiesEditionPartForm.java │ │ │ │ │ │ │ │ ├── FlowActionPropertiesEditionPartForm.java │ │ │ │ │ │ │ │ ├── FlowEventPropertiesEditionPartForm.java │ │ │ │ │ │ │ │ ├── FlowPropertiesEditionPartForm.java │ │ │ │ │ │ │ │ ├── InitialStatePropertiesEditionPartForm.java │ │ │ │ │ │ │ │ ├── SubflowStatePropertiesEditionPartForm.java │ │ │ │ │ │ │ │ ├── TransitionPropertiesEditionPartForm.java │ │ │ │ │ │ │ │ └── ViewStatePropertiesEditionPartForm.java │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── AbortStatePropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ ├── ActionStatePropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ ├── AsyncEventStatePropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ ├── DecisionStatePropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ ├── FinalStatePropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ ├── FlowActionPropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ ├── FlowEventPropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ ├── FlowPropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ ├── InitialStatePropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ ├── SubflowStatePropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ ├── TransitionPropertiesEditionPartImpl.java │ │ │ │ │ │ │ │ └── ViewStatePropertiesEditionPartImpl.java │ │ │ │ │ │ └── providers │ │ │ │ │ │ │ ├── AbortStatePropertiesEditionProvider.java │ │ │ │ │ │ │ ├── ActionStatePropertiesEditionProvider.java │ │ │ │ │ │ │ ├── AsyncEventStatePropertiesEditionProvider.java │ │ │ │ │ │ │ ├── DecisionStatePropertiesEditionProvider.java │ │ │ │ │ │ │ ├── FinalStatePropertiesEditionProvider.java │ │ │ │ │ │ │ ├── FlowActionPropertiesEditionProvider.java │ │ │ │ │ │ │ ├── FlowEEFAdapterFactory.java │ │ │ │ │ │ │ ├── FlowEventPropertiesEditionProvider.java │ │ │ │ │ │ │ ├── FlowMessages.java │ │ │ │ │ │ │ ├── FlowPropertiesEditionPartProvider.java │ │ │ │ │ │ │ ├── FlowPropertiesEditionProvider.java │ │ │ │ │ │ │ ├── InitialStatePropertiesEditionProvider.java │ │ │ │ │ │ │ ├── SubflowStatePropertiesEditionProvider.java │ │ │ │ │ │ │ ├── TransitionPropertiesEditionProvider.java │ │ │ │ │ │ │ ├── ViewStatePropertiesEditionProvider.java │ │ │ │ │ │ │ ├── flowMessages.properties │ │ │ │ │ │ │ └── flowMessages_fr.properties │ │ │ │ │ │ ├── parts │ │ │ │ │ │ ├── CinematicRootPropertiesEditionPart.java │ │ │ │ │ │ ├── CinematicViewsRepository.java │ │ │ │ │ │ ├── Package_PropertiesEditionPart.java │ │ │ │ │ │ ├── ToolkitsPropertiesEditionPart.java │ │ │ │ │ │ ├── forms │ │ │ │ │ │ │ ├── CinematicRootPropertiesEditionPartForm.java │ │ │ │ │ │ │ ├── Package_PropertiesEditionPartForm.java │ │ │ │ │ │ │ └── ToolkitsPropertiesEditionPartForm.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── CinematicRootPropertiesEditionPartImpl.java │ │ │ │ │ │ │ ├── Package_PropertiesEditionPartImpl.java │ │ │ │ │ │ │ └── ToolkitsPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── CinematicEEFAdapterFactory.java │ │ │ │ │ │ ├── CinematicMessages.java │ │ │ │ │ │ ├── CinematicPropertiesEditionPartProvider.java │ │ │ │ │ │ ├── CinematicRootPropertiesEditionProvider.java │ │ │ │ │ │ ├── Package_PropertiesEditionProvider.java │ │ │ │ │ │ ├── cinematicMessages.properties │ │ │ │ │ │ └── cinematicMessages_fr.properties │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ViewActionPropertiesEditionComponent.java │ │ │ │ │ │ ├── ViewActionViewActionPropertiesEditionComponent.java │ │ │ │ │ │ ├── ViewContainerPropertiesEditionComponent.java │ │ │ │ │ │ ├── ViewContainerReferencePropertiesEditionComponent.java │ │ │ │ │ │ ├── ViewContainerReferenceViewContainerReferencePropertiesEditionComponent.java │ │ │ │ │ │ ├── ViewContainerViewContainerPropertiesEditionComponent.java │ │ │ │ │ │ ├── ViewElementPropertiesEditionComponent.java │ │ │ │ │ │ ├── ViewElementViewElementPropertiesEditionComponent.java │ │ │ │ │ │ ├── ViewEventPropertiesEditionComponent.java │ │ │ │ │ │ └── ViewEventViewEventPropertiesEditionComponent.java │ │ │ │ │ │ ├── parts │ │ │ │ │ │ ├── ViewActionPropertiesEditionPart.java │ │ │ │ │ │ ├── ViewContainerPropertiesEditionPart.java │ │ │ │ │ │ ├── ViewContainerReferencePropertiesEditionPart.java │ │ │ │ │ │ ├── ViewElementPropertiesEditionPart.java │ │ │ │ │ │ ├── ViewEventPropertiesEditionPart.java │ │ │ │ │ │ ├── ViewViewsRepository.java │ │ │ │ │ │ ├── forms │ │ │ │ │ │ │ ├── ViewActionPropertiesEditionPartForm.java │ │ │ │ │ │ │ ├── ViewContainerPropertiesEditionPartForm.java │ │ │ │ │ │ │ ├── ViewContainerReferencePropertiesEditionPartForm.java │ │ │ │ │ │ │ ├── ViewElementPropertiesEditionPartForm.java │ │ │ │ │ │ │ └── ViewEventPropertiesEditionPartForm.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── ViewActionPropertiesEditionPartImpl.java │ │ │ │ │ │ │ ├── ViewContainerPropertiesEditionPartImpl.java │ │ │ │ │ │ │ ├── ViewContainerReferencePropertiesEditionPartImpl.java │ │ │ │ │ │ │ ├── ViewElementPropertiesEditionPartImpl.java │ │ │ │ │ │ │ └── ViewEventPropertiesEditionPartImpl.java │ │ │ │ │ │ └── providers │ │ │ │ │ │ ├── ViewActionPropertiesEditionProvider.java │ │ │ │ │ │ ├── ViewContainerPropertiesEditionProvider.java │ │ │ │ │ │ ├── ViewContainerReferencePropertiesEditionProvider.java │ │ │ │ │ │ ├── ViewEEFAdapterFactory.java │ │ │ │ │ │ ├── ViewElementPropertiesEditionProvider.java │ │ │ │ │ │ ├── ViewEventPropertiesEditionProvider.java │ │ │ │ │ │ ├── ViewMessages.java │ │ │ │ │ │ ├── ViewPropertiesEditionPartProvider.java │ │ │ │ │ │ ├── viewMessages.properties │ │ │ │ │ │ └── viewMessages_fr.properties │ │ │ │ └── view_properties.plugin.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── cinematic │ │ │ │ ├── filters │ │ │ │ ├── AbortStateTabPropertiesEditionSection.java │ │ │ │ ├── ActionStateTabPropertiesEditionSection.java │ │ │ │ ├── AsyncEventStateTabPropertiesEditionSection.java │ │ │ │ ├── CinematicRootTabPropertiesEditionSection.java │ │ │ │ ├── DecisionStateTabPropertiesEditionSection.java │ │ │ │ ├── FinalStateTabPropertiesEditionSection.java │ │ │ │ ├── FlowActionTabPropertiesEditionSection.java │ │ │ │ ├── FlowEventTabPropertiesEditionSection.java │ │ │ │ ├── FlowTabPropertiesEditionSection.java │ │ │ │ ├── InitialStateTabPropertiesEditionSection.java │ │ │ │ ├── PackageTabPropertiesEditionSection.java │ │ │ │ ├── SubflowStateTabPropertiesEditionSection.java │ │ │ │ ├── TransitionTabPropertiesEditionSection.java │ │ │ │ ├── ViewActionTabPropertiesEditionSection.java │ │ │ │ ├── ViewContainerReferenceTabPropertiesEditionSection.java │ │ │ │ ├── ViewContainerTabPropertiesEditionSection.java │ │ │ │ ├── ViewElementTabPropertiesEditionSection.java │ │ │ │ ├── ViewEventTabPropertiesEditionSection.java │ │ │ │ └── ViewStateTabPropertiesEditionSection.java │ │ │ │ ├── flow │ │ │ │ └── provider │ │ │ │ │ ├── AbortStateItemProvider.java │ │ │ │ │ ├── ActionStateItemProvider.java │ │ │ │ │ ├── AsyncEventStateItemProvider.java │ │ │ │ │ ├── DecisionStateItemProvider.java │ │ │ │ │ ├── FinalStateItemProvider.java │ │ │ │ │ ├── FlowActionItemProvider.java │ │ │ │ │ ├── FlowEventItemProvider.java │ │ │ │ │ ├── FlowItemProvider.java │ │ │ │ │ ├── FlowItemProviderAdapterFactory.java │ │ │ │ │ ├── FlowStateItemProvider.java │ │ │ │ │ ├── InitialStateItemProvider.java │ │ │ │ │ ├── NamedFlowStateItemProvider.java │ │ │ │ │ ├── SubflowStateItemProvider.java │ │ │ │ │ ├── TransitionItemProvider.java │ │ │ │ │ └── ViewStateItemProvider.java │ │ │ │ ├── provider │ │ │ │ ├── AbstractPackageItemProvider.java │ │ │ │ ├── CinematicEditPlugin.java │ │ │ │ ├── CinematicElementItemProvider.java │ │ │ │ ├── CinematicItemProviderAdapterFactory.java │ │ │ │ ├── CinematicRootItemProvider.java │ │ │ │ ├── EventItemProvider.java │ │ │ │ ├── NamedElementItemProvider.java │ │ │ │ └── PackageItemProvider.java │ │ │ │ ├── toolkits │ │ │ │ └── provider │ │ │ │ │ ├── MetaDataDefinitionItemProvider.java │ │ │ │ │ ├── StyleItemProvider.java │ │ │ │ │ ├── ToolkitItemProvider.java │ │ │ │ │ ├── ToolkitsItemProviderAdapterFactory.java │ │ │ │ │ ├── WidgetEventTypeItemProvider.java │ │ │ │ │ └── WidgetItemProvider.java │ │ │ │ └── view │ │ │ │ └── provider │ │ │ │ ├── AbstractViewElementItemProvider.java │ │ │ │ ├── LayoutItemProvider.java │ │ │ │ ├── ViewActionItemProvider.java │ │ │ │ ├── ViewContainerItemProvider.java │ │ │ │ ├── ViewContainerReferenceItemProvider.java │ │ │ │ ├── ViewElementItemProvider.java │ │ │ │ ├── ViewEventItemProvider.java │ │ │ │ ├── ViewItemProviderAdapterFactory.java │ │ │ │ ├── ViewStyleItemProvider.java │ │ │ │ └── spec │ │ │ │ ├── LayoutItemProviderSpec.java │ │ │ │ └── ViewStyleItemProviderSpec.java │ │ ├── org.obeonetwork.dsl.cinematic.editor │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── icons │ │ │ │ └── full │ │ │ │ │ ├── obj16 │ │ │ │ │ ├── CinematicModelFile.gif │ │ │ │ │ ├── FlowModelFile.gif │ │ │ │ │ ├── ToolkitsModelFile.gif │ │ │ │ │ └── ViewModelFile.gif │ │ │ │ │ └── wizban │ │ │ │ │ ├── NewCinematic.gif │ │ │ │ │ ├── NewFlow.gif │ │ │ │ │ ├── NewToolkits.gif │ │ │ │ │ └── NewView.gif │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── cinematic │ │ │ │ ├── flow │ │ │ │ └── presentation │ │ │ │ │ ├── FlowActionBarContributor.java │ │ │ │ │ ├── FlowEditor.java │ │ │ │ │ └── FlowModelWizard.java │ │ │ │ ├── presentation │ │ │ │ ├── CinematicActionBarContributor.java │ │ │ │ ├── CinematicEditor.java │ │ │ │ └── CinematicEditorPlugin.java │ │ │ │ ├── toolkits │ │ │ │ └── presentation │ │ │ │ │ ├── ToolkitsActionBarContributor.java │ │ │ │ │ └── ToolkitsEditor.java │ │ │ │ └── view │ │ │ │ └── presentation │ │ │ │ ├── ViewActionBarContributor.java │ │ │ │ └── ViewEditor.java │ │ └── org.obeonetwork.dsl.cinematic │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── decorators │ │ │ ├── ArrowDown.svg │ │ │ ├── ArrowLeft.svg │ │ │ ├── ArrowRight.svg │ │ │ ├── ArrowUp.svg │ │ │ ├── CheckboxChecked.svg │ │ │ ├── CheckboxUnchecked.svg │ │ │ ├── DropDownArrow.svg │ │ │ ├── ImagePlaceholder.svg │ │ │ ├── Lock.svg │ │ │ ├── MinimizeClose.svg │ │ │ ├── RadioChecked.svg │ │ │ └── RadioUnchecked.svg │ │ │ ├── icons │ │ │ ├── Button.gif │ │ │ ├── Checkbox.gif │ │ │ ├── Combo.gif │ │ │ ├── Image.gif │ │ │ ├── Label.gif │ │ │ ├── Link.gif │ │ │ ├── Page.gif │ │ │ ├── Panel.gif │ │ │ ├── Password.gif │ │ │ ├── Radio.gif │ │ │ ├── Table.gif │ │ │ ├── Text.gif │ │ │ ├── Textarea.gif │ │ │ └── Window.gif │ │ │ ├── model │ │ │ ├── cinematic.ecore │ │ │ └── cinematic.genmodel │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ ├── representations.aird │ │ │ ├── schema │ │ │ └── org.obeonetwork.dsl.cinematic.providedToolkit.exsd │ │ │ ├── src │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── cinematic │ │ │ │ ├── AbstractPackage.java │ │ │ │ ├── CinematicElement.java │ │ │ │ ├── CinematicFactory.java │ │ │ │ ├── CinematicPackage.java │ │ │ │ ├── CinematicRoot.java │ │ │ │ ├── Event.java │ │ │ │ ├── NamedElement.java │ │ │ │ ├── Package.java │ │ │ │ ├── flow │ │ │ │ ├── AbortState.java │ │ │ │ ├── ActionState.java │ │ │ │ ├── AsyncEventState.java │ │ │ │ ├── DecisionState.java │ │ │ │ ├── FinalState.java │ │ │ │ ├── Flow.java │ │ │ │ ├── FlowAction.java │ │ │ │ ├── FlowEvent.java │ │ │ │ ├── FlowFactory.java │ │ │ │ ├── FlowPackage.java │ │ │ │ ├── FlowState.java │ │ │ │ ├── InitialState.java │ │ │ │ ├── NamedFlowState.java │ │ │ │ ├── SubflowState.java │ │ │ │ ├── Transition.java │ │ │ │ ├── ViewState.java │ │ │ │ ├── impl │ │ │ │ │ ├── AbortStateImpl.java │ │ │ │ │ ├── ActionStateImpl.java │ │ │ │ │ ├── AsyncEventStateImpl.java │ │ │ │ │ ├── DecisionStateImpl.java │ │ │ │ │ ├── FinalStateImpl.java │ │ │ │ │ ├── FlowActionImpl.java │ │ │ │ │ ├── FlowEventImpl.java │ │ │ │ │ ├── FlowFactoryImpl.java │ │ │ │ │ ├── FlowImpl.java │ │ │ │ │ ├── FlowPackageImpl.java │ │ │ │ │ ├── FlowStateImpl.java │ │ │ │ │ ├── InitialStateImpl.java │ │ │ │ │ ├── NamedFlowStateImpl.java │ │ │ │ │ ├── SubflowStateImpl.java │ │ │ │ │ ├── TransitionImpl.java │ │ │ │ │ └── ViewStateImpl.java │ │ │ │ ├── spec │ │ │ │ │ └── SubflowStateSpec.java │ │ │ │ └── util │ │ │ │ │ ├── FlowAdapterFactory.java │ │ │ │ │ ├── FlowResourceFactoryImpl.java │ │ │ │ │ ├── FlowResourceImpl.java │ │ │ │ │ └── FlowSwitch.java │ │ │ │ ├── impl │ │ │ │ ├── AbstractPackageImpl.java │ │ │ │ ├── CinematicElementImpl.java │ │ │ │ ├── CinematicFactoryImpl.java │ │ │ │ ├── CinematicPackageImpl.java │ │ │ │ ├── CinematicRootImpl.java │ │ │ │ ├── EventImpl.java │ │ │ │ ├── NamedElementImpl.java │ │ │ │ └── PackageImpl.java │ │ │ │ ├── toolkits │ │ │ │ ├── CardinalPosition.java │ │ │ │ ├── HorizontalAlignment.java │ │ │ │ ├── MetaDataDefinition.java │ │ │ │ ├── Style.java │ │ │ │ ├── Toolkit.java │ │ │ │ ├── ToolkitsFactory.java │ │ │ │ ├── ToolkitsPackage.java │ │ │ │ ├── Widget.java │ │ │ │ ├── WidgetEventType.java │ │ │ │ ├── impl │ │ │ │ │ ├── MetaDataDefinitionImpl.java │ │ │ │ │ ├── StyleImpl.java │ │ │ │ │ ├── ToolkitImpl.java │ │ │ │ │ ├── ToolkitsFactoryImpl.java │ │ │ │ │ ├── ToolkitsPackageImpl.java │ │ │ │ │ ├── WidgetEventTypeImpl.java │ │ │ │ │ └── WidgetImpl.java │ │ │ │ ├── spec │ │ │ │ │ └── WidgetSpec.java │ │ │ │ └── util │ │ │ │ │ ├── ToolkitsAdapterFactory.java │ │ │ │ │ ├── ToolkitsProvider.java │ │ │ │ │ ├── ToolkitsResourceFactoryImpl.java │ │ │ │ │ ├── ToolkitsResourceImpl.java │ │ │ │ │ └── ToolkitsSwitch.java │ │ │ │ ├── util │ │ │ │ ├── CinematicAdapterFactory.java │ │ │ │ ├── CinematicResourceFactoryImpl.java │ │ │ │ ├── CinematicResourceImpl.java │ │ │ │ └── CinematicSwitch.java │ │ │ │ └── view │ │ │ │ ├── AbstractViewElement.java │ │ │ │ ├── Layout.java │ │ │ │ ├── LayoutDirection.java │ │ │ │ ├── ViewAction.java │ │ │ │ ├── ViewContainer.java │ │ │ │ ├── ViewContainerReference.java │ │ │ │ ├── ViewElement.java │ │ │ │ ├── ViewEvent.java │ │ │ │ ├── ViewFactory.java │ │ │ │ ├── ViewHorizontalAlignment.java │ │ │ │ ├── ViewPackage.java │ │ │ │ ├── ViewStyle.java │ │ │ │ ├── impl │ │ │ │ ├── AbstractViewElementImpl.java │ │ │ │ ├── LayoutImpl.java │ │ │ │ ├── ViewActionImpl.java │ │ │ │ ├── ViewContainerImpl.java │ │ │ │ ├── ViewContainerReferenceImpl.java │ │ │ │ ├── ViewElementImpl.java │ │ │ │ ├── ViewEventImpl.java │ │ │ │ ├── ViewFactoryImpl.java │ │ │ │ ├── ViewPackageImpl.java │ │ │ │ └── ViewStyleImpl.java │ │ │ │ ├── spec │ │ │ │ ├── ViewContainerReferenceSpec.java │ │ │ │ ├── ViewContainerSpec.java │ │ │ │ └── ViewElementSpec.java │ │ │ │ └── util │ │ │ │ ├── ViewAdapterFactory.java │ │ │ │ ├── ViewResourceFactoryImpl.java │ │ │ │ ├── ViewResourceImpl.java │ │ │ │ └── ViewSwitch.java │ │ │ └── toolkits │ │ │ ├── SWT.cinematic_toolkits │ │ │ └── Web.cinematic_toolkits │ └── tests │ │ └── org.obeonetwork.dsl.cinematic.tests │ │ ├── .project │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ └── model │ │ └── default.cinematic ├── database │ ├── features │ │ ├── org.obeonetwork.dsl.database.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ └── org.obeonetwork.dsl.typelibrary.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.database.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── AbstractTable.gif │ │ │ │ ├── Column.gif │ │ │ │ ├── ColumnAndForeignKey.gif │ │ │ │ ├── ColumnAndPrimaryAndForeignKey.gif │ │ │ │ ├── ColumnAndPrimaryKey.gif │ │ │ │ ├── Constraint.gif │ │ │ │ ├── DataBase.gif │ │ │ │ ├── ForeignKey.gif │ │ │ │ ├── ForeignKeyElement.gif │ │ │ │ ├── Index.gif │ │ │ │ ├── IndexElement.gif │ │ │ │ ├── PrimaryKey.gif │ │ │ │ ├── Schema.gif │ │ │ │ ├── Sequence.gif │ │ │ │ ├── Table.gif │ │ │ │ ├── View.gif │ │ │ │ ├── ViewColumn.gif │ │ │ │ ├── ViewElement.gif │ │ │ │ └── ViewTable.gif │ │ ├── model │ │ │ ├── database.components │ │ │ └── database.eefgen │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ ├── database_properties.plugin.xml │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── database │ │ │ │ ├── components │ │ │ │ ├── ColumnPropertiesEditionComponent.java │ │ │ │ ├── ConstraintPropertiesEditionComponent.java │ │ │ │ ├── DataBasePropertiesEditionComponent.java │ │ │ │ ├── ForeignKeyElementPropertiesEditionComponent.java │ │ │ │ ├── ForeignKeyPropertiesEditionComponent.java │ │ │ │ ├── IndexElementPropertiesEditionComponent.java │ │ │ │ ├── IndexPropertiesEditionComponent.java │ │ │ │ ├── PrimaryKeyPropertiesEditionComponent.java │ │ │ │ ├── SchemaPropertiesEditionComponent.java │ │ │ │ ├── SequencePropertiesEditionComponent.java │ │ │ │ ├── TableConstraintsPropertiesEditionComponent.java │ │ │ │ ├── TableForeignKeysPropertiesEditionComponent.java │ │ │ │ ├── TableIndexesPropertiesEditionComponent.java │ │ │ │ ├── TablePrimaryKeyPropertiesEditionComponent.java │ │ │ │ ├── TablePropertiesEditionComponent.java │ │ │ │ ├── TableTablePropertiesEditionComponent.java │ │ │ │ └── ViewPropertiesEditionComponent.java │ │ │ │ ├── parts │ │ │ │ ├── ColumnPropertiesEditionPart.java │ │ │ │ ├── ConstraintPropertiesEditionPart.java │ │ │ │ ├── ConstraintsPropertiesEditionPart.java │ │ │ │ ├── DataBasePropertiesEditionPart.java │ │ │ │ ├── DatabaseViewsRepository.java │ │ │ │ ├── ForeignKeyElementPropertiesEditionPart.java │ │ │ │ ├── ForeignKeyPropertiesEditionPart.java │ │ │ │ ├── ForeignKeysPropertiesEditionPart.java │ │ │ │ ├── IndexElementPropertiesEditionPart.java │ │ │ │ ├── IndexPropertiesEditionPart.java │ │ │ │ ├── IndexesPropertiesEditionPart.java │ │ │ │ ├── PrimaryKeyPropertiesEditionPart.java │ │ │ │ ├── SchemaPropertiesEditionPart.java │ │ │ │ ├── SequencePropertiesEditionPart.java │ │ │ │ ├── TablePropertiesEditionPart.java │ │ │ │ ├── ViewPropertiesEditionPart.java │ │ │ │ ├── forms │ │ │ │ │ ├── ColumnPropertiesEditionPartForm.java │ │ │ │ │ ├── ConstraintPropertiesEditionPartForm.java │ │ │ │ │ ├── ConstraintsPropertiesEditionPartForm.java │ │ │ │ │ ├── DataBasePropertiesEditionPartForm.java │ │ │ │ │ ├── ForeignKeyElementPropertiesEditionPartForm.java │ │ │ │ │ ├── ForeignKeyPropertiesEditionPartForm.java │ │ │ │ │ ├── ForeignKeysPropertiesEditionPartForm.java │ │ │ │ │ ├── IndexElementPropertiesEditionPartForm.java │ │ │ │ │ ├── IndexPropertiesEditionPartForm.java │ │ │ │ │ ├── IndexesPropertiesEditionPartForm.java │ │ │ │ │ ├── PrimaryKeyPropertiesEditionPartForm.java │ │ │ │ │ ├── SchemaPropertiesEditionPartForm.java │ │ │ │ │ ├── SequencePropertiesEditionPartForm.java │ │ │ │ │ ├── TablePropertiesEditionPartForm.java │ │ │ │ │ └── ViewPropertiesEditionPartForm.java │ │ │ │ └── impl │ │ │ │ │ ├── ColumnPropertiesEditionPartImpl.java │ │ │ │ │ ├── ConstraintPropertiesEditionPartImpl.java │ │ │ │ │ ├── ConstraintsPropertiesEditionPartImpl.java │ │ │ │ │ ├── DataBasePropertiesEditionPartImpl.java │ │ │ │ │ ├── ForeignKeyElementPropertiesEditionPartImpl.java │ │ │ │ │ ├── ForeignKeyPropertiesEditionPartImpl.java │ │ │ │ │ ├── ForeignKeysPropertiesEditionPartImpl.java │ │ │ │ │ ├── IndexElementPropertiesEditionPartImpl.java │ │ │ │ │ ├── IndexPropertiesEditionPartImpl.java │ │ │ │ │ ├── IndexesPropertiesEditionPartImpl.java │ │ │ │ │ ├── PrimaryKeyPropertiesEditionPartImpl.java │ │ │ │ │ ├── SchemaPropertiesEditionPartImpl.java │ │ │ │ │ ├── SequencePropertiesEditionPartImpl.java │ │ │ │ │ ├── TablePropertiesEditionPartImpl.java │ │ │ │ │ └── ViewPropertiesEditionPartImpl.java │ │ │ │ └── providers │ │ │ │ ├── ColumnPropertiesEditionProvider.java │ │ │ │ ├── ConstraintPropertiesEditionProvider.java │ │ │ │ ├── DataBasePropertiesEditionProvider.java │ │ │ │ ├── DatabaseEEFAdapterFactory.java │ │ │ │ ├── DatabaseMessages.java │ │ │ │ ├── DatabasePropertiesEditionPartProvider.java │ │ │ │ ├── ForeignKeyElementPropertiesEditionProvider.java │ │ │ │ ├── ForeignKeyPropertiesEditionProvider.java │ │ │ │ ├── IndexElementPropertiesEditionProvider.java │ │ │ │ ├── IndexPropertiesEditionProvider.java │ │ │ │ ├── PrimaryKeyPropertiesEditionProvider.java │ │ │ │ ├── SchemaPropertiesEditionProvider.java │ │ │ │ ├── SequencePropertiesEditionProvider.java │ │ │ │ ├── TablePropertiesEditionProvider.java │ │ │ │ ├── ViewPropertiesEditionProvider.java │ │ │ │ ├── databaseMessages.properties │ │ │ │ └── databaseMessages_fr.properties │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ ├── components │ │ │ └── CustomColumnPropertiesEditionComponent.java │ │ │ ├── filters │ │ │ ├── ColumnTabPropertiesEditionSection.java │ │ │ ├── ConstraintTabPropertiesEditionSection.java │ │ │ ├── DataBaseTabPropertiesEditionSection.java │ │ │ ├── ForeignKeyElementTabPropertiesEditionSection.java │ │ │ ├── ForeignKeyTabPropertiesEditionSection.java │ │ │ ├── IndexElementTabPropertiesEditionSection.java │ │ │ ├── IndexTabPropertiesEditionSection.java │ │ │ ├── PrimaryKeyForTableTabPropertiesEditionSection.java │ │ │ ├── PrimaryKeyTabPropertiesEditionSection.java │ │ │ ├── SchemaTabPropertiesEditionSection.java │ │ │ ├── SequenceTabPropertiesEditionSection.java │ │ │ ├── TableTabPropertiesEditionSection.java │ │ │ └── ViewTabPropertiesEditionSection.java │ │ │ ├── parts │ │ │ ├── forms │ │ │ │ ├── CustomPrimaryKeyPropertiesEditionPartForm.java │ │ │ │ └── DelegatedEEFEditorSettings.java │ │ │ └── impl │ │ │ │ └── CustomPrimaryKeyPropertiesEditionPartImpl.java │ │ │ ├── provider │ │ │ ├── AbstractTableItemProvider.java │ │ │ ├── ColumnItemProvider.java │ │ │ ├── ConstraintItemProvider.java │ │ │ ├── DataBaseItemProvider.java │ │ │ ├── DatabaseEditPlugin.java │ │ │ ├── DatabaseElementItemProvider.java │ │ │ ├── DatabaseItemProviderAdapterFactory.java │ │ │ ├── ForeignKeyElementItemProvider.java │ │ │ ├── ForeignKeyItemProvider.java │ │ │ ├── IndexElementItemProvider.java │ │ │ ├── IndexItemProvider.java │ │ │ ├── NamedElementItemProvider.java │ │ │ ├── PrimaryKeyItemProvider.java │ │ │ ├── SchemaItemProvider.java │ │ │ ├── SequenceItemProvider.java │ │ │ ├── TableContainerItemProvider.java │ │ │ ├── TableItemProvider.java │ │ │ ├── ViewColumnItemProvider.java │ │ │ ├── ViewElementItemProvider.java │ │ │ ├── ViewItemProvider.java │ │ │ └── ViewTableItemProvider.java │ │ │ └── providers │ │ │ ├── CustomColumnPropertiesEditionProvider.java │ │ │ ├── CustomDatabaseEEFAdapterFactory.java │ │ │ └── CustomDatabasePropertiesEditionPartProvider.java │ │ ├── org.obeonetwork.dsl.database.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ ├── obj16 │ │ │ │ └── DatabaseModelFile.gif │ │ │ │ └── wizban │ │ │ │ └── NewDatabase.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ └── presentation │ │ │ ├── DatabaseActionBarContributor.java │ │ │ ├── DatabaseEditor.java │ │ │ ├── DatabaseEditorPlugin.java │ │ │ └── DatabaseModelWizard.java │ │ ├── org.obeonetwork.dsl.database.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── docs │ │ │ └── How to execute tests.md │ │ ├── libs │ │ │ ├── logback-classic-1.2.3.jar │ │ │ ├── logback-core-1.2.3.jar │ │ │ └── snakeyaml-1.18.jar │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── Oracle_Northwind_DropTables.sql │ │ │ ├── Oracle_Northwind_Init.sql │ │ │ ├── Oracle_Northwind_Init_for_Oracle_11.sql │ │ │ ├── h2-db │ │ │ │ ├── thibaultblf_h2_1.3.176 │ │ │ │ │ └── test.h2.db │ │ │ │ ├── thibaultblf_h2_1.4.196 │ │ │ │ │ └── test.mv.db │ │ │ │ ├── thibaultblf_h2_1.4.197 │ │ │ │ │ └── test.mv.db │ │ │ │ ├── thibaultblf_h2_1.4.198 │ │ │ │ │ └── test.mv.db │ │ │ │ ├── thibaultblf_h2_1.4.199 │ │ │ │ │ └── test.mv.db │ │ │ │ └── thibaultblf_h2_1.4.200 │ │ │ │ │ └── test.mv.db │ │ │ ├── h2_outputRef.database │ │ │ ├── mariadb_outputRef.database │ │ │ ├── mssql_outputRef.database │ │ │ ├── mysql_outputRef.database │ │ │ ├── mysql_outputRef.database.old │ │ │ ├── northwind-liquibase.xml │ │ │ ├── oracle_outputRef.database │ │ │ ├── postgres │ │ │ │ └── postgres_9.6-alpine.database │ │ │ ├── postgres_outputRef.database │ │ │ ├── thibaultblf_h2_1.3.176 │ │ │ │ └── h2_outputRef.database │ │ │ ├── thibaultblf_h2_1.4.196 │ │ │ │ └── h2_outputRef.database │ │ │ ├── thibaultblf_h2_1.4.197 │ │ │ │ └── h2_outputRef.database │ │ │ ├── thibaultblf_h2_1.4.198 │ │ │ │ └── h2_outputRef.database │ │ │ ├── thibaultblf_h2_1.4.199 │ │ │ │ └── h2_outputRef.database │ │ │ └── thibaultblf_h2_1.4.200 │ │ │ │ └── h2_outputRef.database │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ └── tests │ │ │ ├── AbstractDockerTests.java │ │ │ ├── AbstractTests.java │ │ │ ├── Activator.java │ │ │ ├── eef │ │ │ └── EefTests.java │ │ │ ├── h2 │ │ │ ├── H2DockerTests.java │ │ │ └── H2Tests.java │ │ │ ├── mariadb │ │ │ ├── MariaDBDockerTests.java │ │ │ └── MariaDBTests.java │ │ │ ├── mssql │ │ │ ├── SqlServerDockerTests.java │ │ │ └── SqlServerTests.java │ │ │ ├── mysql │ │ │ ├── MySQLDockerTests.java │ │ │ └── MySQLTests.java │ │ │ ├── oracle │ │ │ ├── OracleDockerTests.java │ │ │ └── OracleTests.java │ │ │ ├── postgres │ │ │ ├── PostGreStatementBuilderTest.java │ │ │ └── PostgresDockerTests.java │ │ │ └── utils │ │ │ └── TestUtils.java │ │ ├── org.obeonetwork.dsl.database │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── database.ecore │ │ │ └── database.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── representations.aird │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ ├── AbstractTable.java │ │ │ ├── Column.java │ │ │ ├── Constraint.java │ │ │ ├── DataBase.java │ │ │ ├── DatabaseElement.java │ │ │ ├── DatabaseFactory.java │ │ │ ├── DatabasePackage.java │ │ │ ├── ForeignKey.java │ │ │ ├── ForeignKeyElement.java │ │ │ ├── Index.java │ │ │ ├── IndexElement.java │ │ │ ├── NamedElement.java │ │ │ ├── PrimaryKey.java │ │ │ ├── Schema.java │ │ │ ├── Sequence.java │ │ │ ├── Table.java │ │ │ ├── TableContainer.java │ │ │ ├── View.java │ │ │ ├── ViewColumn.java │ │ │ ├── ViewElement.java │ │ │ ├── ViewTable.java │ │ │ ├── impl │ │ │ ├── AbstractTableImpl.java │ │ │ ├── ColumnImpl.java │ │ │ ├── ConstraintImpl.java │ │ │ ├── DataBaseImpl.java │ │ │ ├── DatabaseElementImpl.java │ │ │ ├── DatabaseFactoryImpl.java │ │ │ ├── DatabasePackageImpl.java │ │ │ ├── ForeignKeyElementImpl.java │ │ │ ├── ForeignKeyImpl.java │ │ │ ├── IndexElementImpl.java │ │ │ ├── IndexImpl.java │ │ │ ├── NamedElementImpl.java │ │ │ ├── PrimaryKeyImpl.java │ │ │ ├── SchemaImpl.java │ │ │ ├── SequenceImpl.java │ │ │ ├── TableContainerImpl.java │ │ │ ├── TableImpl.java │ │ │ ├── ViewColumnImpl.java │ │ │ ├── ViewElementImpl.java │ │ │ ├── ViewImpl.java │ │ │ └── ViewTableImpl.java │ │ │ ├── query │ │ │ ├── ForeignKeyQuery.java │ │ │ └── IndexQuery.java │ │ │ ├── spec │ │ │ ├── ColumnSpec.java │ │ │ ├── DatabaseConstants.java │ │ │ └── ViewSpec.java │ │ │ └── util │ │ │ ├── DatabaseAdapterFactory.java │ │ │ ├── DatabaseResourceFactoryImpl.java │ │ │ ├── DatabaseResourceImpl.java │ │ │ └── DatabaseSwitch.java │ │ ├── org.obeonetwork.dsl.typeslibrary.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── ComplexNamedType.gif │ │ │ │ ├── NativeType.gif │ │ │ │ ├── NativeTypesLibrary.gif │ │ │ │ ├── SimpleNamedType.gif │ │ │ │ ├── TypeInstance.gif │ │ │ │ ├── UserDefinedTypeRef.gif │ │ │ │ └── UserDefinedTypesLibrary.gif │ │ ├── model │ │ │ ├── typeslibrary.components │ │ │ └── typeslibrary.eefgen │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ ├── org │ │ │ │ └── obeonetwork │ │ │ │ │ └── dsl │ │ │ │ │ └── typeslibrary │ │ │ │ │ ├── components │ │ │ │ │ ├── ComplexNamedTypePropertiesEditionComponent.java │ │ │ │ │ ├── NativeTypePropertiesEditionComponent.java │ │ │ │ │ ├── NativeTypesLibraryPropertiesEditionComponent.java │ │ │ │ │ ├── SimpleNamedTypePropertiesEditionComponent.java │ │ │ │ │ ├── TypeInstancePropertiesEditionComponent.java │ │ │ │ │ ├── UserDefinedTypeRefPropertiesEditionComponent.java │ │ │ │ │ └── UserDefinedTypesLibraryPropertiesEditionComponent.java │ │ │ │ │ ├── parts │ │ │ │ │ ├── ComplexNamedTypePropertiesEditionPart.java │ │ │ │ │ ├── NativeTypePropertiesEditionPart.java │ │ │ │ │ ├── NativeTypesLibraryPropertiesEditionPart.java │ │ │ │ │ ├── SimpleNamedTypePropertiesEditionPart.java │ │ │ │ │ ├── TypeInstancePropertiesEditionPart.java │ │ │ │ │ ├── TypeslibraryViewsRepository.java │ │ │ │ │ ├── UserDefinedTypeRefPropertiesEditionPart.java │ │ │ │ │ ├── UserDefinedTypesLibraryPropertiesEditionPart.java │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── ComplexNamedTypePropertiesEditionPartForm.java │ │ │ │ │ │ ├── NativeTypePropertiesEditionPartForm.java │ │ │ │ │ │ ├── NativeTypesLibraryPropertiesEditionPartForm.java │ │ │ │ │ │ ├── SimpleNamedTypePropertiesEditionPartForm.java │ │ │ │ │ │ ├── TypeInstancePropertiesEditionPartForm.java │ │ │ │ │ │ ├── UserDefinedTypeRefPropertiesEditionPartForm.java │ │ │ │ │ │ └── UserDefinedTypesLibraryPropertiesEditionPartForm.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── ComplexNamedTypePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── NativeTypePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── NativeTypesLibraryPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── SimpleNamedTypePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── TypeInstancePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── UserDefinedTypeRefPropertiesEditionPartImpl.java │ │ │ │ │ │ └── UserDefinedTypesLibraryPropertiesEditionPartImpl.java │ │ │ │ │ └── providers │ │ │ │ │ ├── ComplexNamedTypePropertiesEditionProvider.java │ │ │ │ │ ├── NativeTypePropertiesEditionProvider.java │ │ │ │ │ ├── NativeTypesLibraryPropertiesEditionProvider.java │ │ │ │ │ ├── SimpleNamedTypePropertiesEditionProvider.java │ │ │ │ │ ├── TypeInstancePropertiesEditionProvider.java │ │ │ │ │ ├── TypeslibraryEEFAdapterFactory.java │ │ │ │ │ ├── TypeslibraryMessages.java │ │ │ │ │ ├── TypeslibraryPropertiesEditionPartProvider.java │ │ │ │ │ ├── UserDefinedTypeRefPropertiesEditionProvider.java │ │ │ │ │ ├── UserDefinedTypesLibraryPropertiesEditionProvider.java │ │ │ │ │ ├── typeslibraryMessages.properties │ │ │ │ │ └── typeslibraryMessages_fr.properties │ │ │ └── typeslibrary_properties.plugin.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── typeslibrary │ │ │ ├── components │ │ │ └── CustomTypeInstancePropertiesEditionComponent.java │ │ │ ├── filters │ │ │ ├── ComplexNamedTypeTabPropertiesEditionSection.java │ │ │ ├── NativeTypeTabPropertiesEditionSection.java │ │ │ ├── NativeTypesLibraryTabPropertiesEditionSection.java │ │ │ ├── SimpleNamedTypeTabPropertiesEditionSection.java │ │ │ ├── TypeInstanceTabPropertiesEditionSection.java │ │ │ ├── TypesLibraryTabPropertiesEditionSection.java │ │ │ ├── UserDefinedTypeRefTabPropertiesEditionSection.java │ │ │ └── UserDefinedTypesLibraryTabPropertiesEditionSection.java │ │ │ ├── policies │ │ │ ├── CustomEditingPolicy.java │ │ │ └── CustomPropertiesEditingProvider.java │ │ │ ├── provider │ │ │ ├── ComplexNamedTypeItemProvider.java │ │ │ ├── NativeTypeItemProvider.java │ │ │ ├── NativeTypesLibraryItemProvider.java │ │ │ ├── SimpleNamedTypeItemProvider.java │ │ │ ├── TypeInstanceItemProvider.java │ │ │ ├── TypeItemProvider.java │ │ │ ├── TypesLibraryEditPlugin.java │ │ │ ├── TypesLibraryItemProviderAdapterFactory.java │ │ │ ├── TypesLibraryUserItemProvider.java │ │ │ ├── UserDefinedTypeItemProvider.java │ │ │ ├── UserDefinedTypeRefItemProvider.java │ │ │ └── UserDefinedTypesLibraryItemProvider.java │ │ │ └── providers │ │ │ ├── CustomTypeInstancePropertiesEditionProvider.java │ │ │ └── CustomTypeslibraryEEFAdapterFactory.java │ │ ├── org.obeonetwork.dsl.typeslibrary.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ └── TypesLibraryModelFile.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── typeslibrary │ │ │ └── presentation │ │ │ ├── TypesLibraryActionBarContributor.java │ │ │ ├── TypesLibraryEditor.java │ │ │ └── TypesLibraryEditorPlugin.java │ │ └── org.obeonetwork.dsl.typeslibrary │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── typeslibrary.aird │ │ ├── typeslibrary.ecore │ │ └── typeslibrary.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── resources │ │ ├── H2.typeslibrary │ │ ├── LogicalModel.typeslibrary │ │ ├── MariaDB.typeslibrary │ │ ├── MySQL.typeslibrary │ │ ├── Oracle.typeslibrary │ │ ├── Postgres-9.typeslibrary │ │ ├── Postgres.typeslibrary │ │ └── SQLServer.typeslibrary │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── typeslibrary │ │ ├── ComplexNamedType.java │ │ ├── NativeType.java │ │ ├── NativeTypeKind.java │ │ ├── NativeTypesLibrary.java │ │ ├── SimpleNamedType.java │ │ ├── Type.java │ │ ├── TypeInstance.java │ │ ├── TypesLibrary.java │ │ ├── TypesLibraryFactory.java │ │ ├── TypesLibraryKind.java │ │ ├── TypesLibraryPackage.java │ │ ├── TypesLibraryUser.java │ │ ├── UserDefinedType.java │ │ ├── UserDefinedTypeRef.java │ │ ├── UserDefinedTypesLibrary.java │ │ ├── impl │ │ ├── ComplexNamedTypeImpl.java │ │ ├── NativeTypeImpl.java │ │ ├── NativeTypesLibraryImpl.java │ │ ├── SimpleNamedTypeImpl.java │ │ ├── TypeImpl.java │ │ ├── TypeInstanceImpl.java │ │ ├── TypesLibraryFactoryImpl.java │ │ ├── TypesLibraryPackageImpl.java │ │ ├── TypesLibraryUserImpl.java │ │ ├── UserDefinedTypeImpl.java │ │ ├── UserDefinedTypeRefImpl.java │ │ └── UserDefinedTypesLibraryImpl.java │ │ └── util │ │ ├── TypesLibraryAdapterFactory.java │ │ ├── TypesLibraryResourceFactoryImpl.java │ │ ├── TypesLibraryResourceImpl.java │ │ ├── TypesLibrarySwitch.java │ │ └── TypesLibraryUtil.java ├── ecorebinding │ ├── features │ │ └── org.obeonetwork.dsl.ecorebinding.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.ecorebinding.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ ├── ctool16 │ │ │ │ ├── CreateBClass_bFeature_BFeature.gif │ │ │ │ ├── CreateBClass_bFeatures_BFeature.gif │ │ │ │ ├── CreateBClass_bOperations_BOperation.gif │ │ │ │ ├── CreateBClassifier_bTypeParameters_BTypeParameter.gif │ │ │ │ ├── CreateBEnum_bEnumLiterals_BEnumLiteral.gif │ │ │ │ ├── CreateBModel_bPackages_BPackage.gif │ │ │ │ ├── CreateBOperation_bParameters_BParameter.gif │ │ │ │ ├── CreateBOperation_bTypeParameters_BTypeParameter.gif │ │ │ │ ├── CreateBPackage_bClass_BClass.gif │ │ │ │ ├── CreateBPackage_bClasses_BClass.gif │ │ │ │ ├── CreateBPackage_bDataType_BDataType.gif │ │ │ │ ├── CreateBPackage_bDataType_BEnum.gif │ │ │ │ ├── CreateBPackage_bDataTypes_BDataType.gif │ │ │ │ ├── CreateBPackage_bDataTypes_BEnum.gif │ │ │ │ ├── CreateBPackage_bEnums_BEnum.gif │ │ │ │ └── CreateBPackage_nestedBPackages_BPackage.gif │ │ │ │ └── obj16 │ │ │ │ ├── BClass.gif │ │ │ │ ├── BClassifier.gif │ │ │ │ ├── BDataType.gif │ │ │ │ ├── BEnum.gif │ │ │ │ ├── BEnumLiteral.gif │ │ │ │ ├── BFeature.gif │ │ │ │ ├── BModel.gif │ │ │ │ ├── BOperation.gif │ │ │ │ ├── BPackage.gif │ │ │ │ ├── BParameter.gif │ │ │ │ ├── BTypeParameter.gif │ │ │ │ └── BTypedElement.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src-gen │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── ecorebinding │ │ │ └── provider │ │ │ ├── BClassItemProvider.java │ │ │ ├── BClassifierItemProvider.java │ │ │ ├── BDataTypeItemProvider.java │ │ │ ├── BEnumItemProvider.java │ │ │ ├── BEnumLiteralItemProvider.java │ │ │ ├── BFeatureItemProvider.java │ │ │ ├── BModelItemProvider.java │ │ │ ├── BOperationItemProvider.java │ │ │ ├── BPackageItemProvider.java │ │ │ ├── BParameterItemProvider.java │ │ │ ├── BTypeParameterItemProvider.java │ │ │ ├── BTypedElementItemProvider.java │ │ │ ├── EcorebindingEditPlugin.java │ │ │ └── EcorebindingItemProviderAdapterFactory.java │ │ ├── org.obeonetwork.dsl.ecorebinding.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ ├── obj16 │ │ │ │ └── EcorebindingModelFile.gif │ │ │ │ └── wizban │ │ │ │ └── NewEcorebinding.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── ecorebinding │ │ │ │ └── presentation │ │ │ │ ├── EcorebindingActionBarContributor.java │ │ │ │ ├── EcorebindingEditor.java │ │ │ │ ├── EcorebindingEditorPlugin.java │ │ │ │ └── EcorebindingModelWizard.java │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── ecorebinding │ │ │ └── presentation │ │ │ ├── EcoreSelectionWizardPage.java │ │ │ └── EcorebindingModelWizardSpec.java │ │ └── org.obeonetwork.dsl.ecorebinding │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── ecorebinding.ecore │ │ └── ecorebinding.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src-gen │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── ecorebinding │ │ ├── BBase.java │ │ ├── BClass.java │ │ ├── BClassifier.java │ │ ├── BDataType.java │ │ ├── BEnum.java │ │ ├── BEnumLiteral.java │ │ ├── BFeature.java │ │ ├── BModel.java │ │ ├── BOperation.java │ │ ├── BPackage.java │ │ ├── BParameter.java │ │ ├── BTypeParameter.java │ │ ├── BTypedElement.java │ │ ├── EcorebindingFactory.java │ │ ├── EcorebindingPackage.java │ │ ├── impl │ │ ├── BClassImpl.java │ │ ├── BClassifierImpl.java │ │ ├── BDataTypeImpl.java │ │ ├── BEnumImpl.java │ │ ├── BEnumLiteralImpl.java │ │ ├── BFeatureImpl.java │ │ ├── BModelImpl.java │ │ ├── BOperationImpl.java │ │ ├── BPackageImpl.java │ │ ├── BParameterImpl.java │ │ ├── BTypeParameterImpl.java │ │ ├── BTypedElementImpl.java │ │ ├── EcorebindingFactoryImpl.java │ │ └── EcorebindingPackageImpl.java │ │ └── util │ │ ├── EcorebindingAdapterFactory.java │ │ └── EcorebindingSwitch.java ├── entity │ ├── features │ │ └── org.obeonetwork.dsl.feature.entity │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.entity.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── Attribute.gif │ │ │ │ ├── Block.gif │ │ │ │ ├── Composition.gif │ │ │ │ ├── Criterion.gif │ │ │ │ ├── DataType.gif │ │ │ │ ├── Entity.gif │ │ │ │ ├── EntityFilter.gif │ │ │ │ ├── ExternalCriterion.gif │ │ │ │ ├── Finder.gif │ │ │ │ ├── Inheritance.gif │ │ │ │ ├── InternalCriterion.gif │ │ │ │ ├── Reference.gif │ │ │ │ └── Root.gif │ │ ├── models │ │ │ ├── entity.components │ │ │ └── entity.eefgen │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ ├── entity_properties.plugin.xml │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── entity │ │ │ │ ├── components │ │ │ │ ├── EntityEntityPropertiesEditionComponent.java │ │ │ │ ├── EntityPersistencePropertiesEditionComponent.java │ │ │ │ ├── EntityPropertiesEditionComponent.java │ │ │ │ ├── ExternalCriterionExternalCriterionPropertiesEditionComponent.java │ │ │ │ ├── ExternalCriterionPropertiesEditionComponent.java │ │ │ │ ├── FinderFinderPropertiesEditionComponent.java │ │ │ │ ├── FinderPropertiesEditionComponent.java │ │ │ │ ├── InternalCriterionInternalCriterionPropertiesEditionComponent.java │ │ │ │ ├── InternalCriterionPropertiesEditionComponent.java │ │ │ │ ├── RootPropertiesEditionComponent.java │ │ │ │ └── RootRootPropertiesEditionComponent.java │ │ │ │ ├── parts │ │ │ │ ├── EntityAdvancedPropertiesEditionPart.java │ │ │ │ ├── EntityPropertiesEditionPart.java │ │ │ │ ├── EntityViewsRepository.java │ │ │ │ ├── ExternalCriterionPropertiesEditionPart.java │ │ │ │ ├── FinderPropertiesEditionPart.java │ │ │ │ ├── InternalCriterionPropertiesEditionPart.java │ │ │ │ ├── PersistencePropertiesEditionPart.java │ │ │ │ ├── RootPropertiesEditionPart.java │ │ │ │ ├── forms │ │ │ │ │ ├── EntityPropertiesEditionPartForm.java │ │ │ │ │ ├── ExternalCriterionPropertiesEditionPartForm.java │ │ │ │ │ ├── FinderPropertiesEditionPartForm.java │ │ │ │ │ ├── InternalCriterionPropertiesEditionPartForm.java │ │ │ │ │ ├── PersistencePropertiesEditionPartForm.java │ │ │ │ │ └── RootPropertiesEditionPartForm.java │ │ │ │ └── impl │ │ │ │ │ ├── EntityPropertiesEditionPartImpl.java │ │ │ │ │ ├── ExternalCriterionPropertiesEditionPartImpl.java │ │ │ │ │ ├── FinderPropertiesEditionPartImpl.java │ │ │ │ │ ├── InternalCriterionPropertiesEditionPartImpl.java │ │ │ │ │ ├── PersistencePropertiesEditionPartImpl.java │ │ │ │ │ └── RootPropertiesEditionPartImpl.java │ │ │ │ └── providers │ │ │ │ ├── EntityEEFAdapterFactory.java │ │ │ │ ├── EntityMessages.java │ │ │ │ ├── EntityPropertiesEditionPartProvider.java │ │ │ │ ├── EntityPropertiesEditionProvider.java │ │ │ │ ├── ExternalCriterionPropertiesEditionProvider.java │ │ │ │ ├── FinderPropertiesEditionProvider.java │ │ │ │ ├── InternalCriterionPropertiesEditionProvider.java │ │ │ │ ├── RootPropertiesEditionProvider.java │ │ │ │ ├── entityMessages.properties │ │ │ │ └── entityMessages_fr.properties │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── entity │ │ │ ├── extensionUtilities │ │ │ └── provider │ │ │ │ ├── EntityFilterItemProvider.java │ │ │ │ └── ExtensionUtilitiesItemProviderAdapterFactory.java │ │ │ ├── filters │ │ │ ├── EntityTabPropertiesEditionSection.java │ │ │ ├── ExternalCriterionTabPropertiesEditionSection.java │ │ │ ├── FinderTabPropertiesEditionSection.java │ │ │ ├── InternalCriterionTabPropertiesEditionSection.java │ │ │ └── RootTabPropertiesEditionSection.java │ │ │ └── provider │ │ │ ├── CriterionItemProvider.java │ │ │ ├── EntityEditPlugin.java │ │ │ ├── EntityItemProvider.java │ │ │ ├── EntityItemProviderAdapterFactory.java │ │ │ ├── ExternalCriterionItemProvider.java │ │ │ ├── FinderItemProvider.java │ │ │ ├── InternalCriterionItemProvider.java │ │ │ └── RootItemProvider.java │ │ ├── org.obeonetwork.dsl.entity.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── EntityModelFile.gif │ │ │ │ └── ExtensionUtilitiesModelFile.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── entity │ │ │ ├── extensionUtilities │ │ │ └── presentation │ │ │ │ ├── ExtensionUtilitiesActionBarContributor.java │ │ │ │ └── ExtensionUtilitiesEditor.java │ │ │ └── presentation │ │ │ ├── EntityActionBarContributor.java │ │ │ ├── EntityEditor.java │ │ │ └── EntityEditorPlugin.java │ │ └── org.obeonetwork.dsl.entity │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── entity.aird │ │ ├── entity.ecore │ │ ├── entity.genmodel │ │ └── icons │ │ │ └── entity │ │ │ ├── Attribute.gif │ │ │ ├── Block.gif │ │ │ ├── Classifier.gif │ │ │ ├── Composition.gif │ │ │ ├── Criterion.gif │ │ │ ├── DataType.gif │ │ │ ├── Entity.gif │ │ │ ├── Finder.gif │ │ │ ├── Inheritance.gif │ │ │ ├── Reference.gif │ │ │ └── Root.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── entity │ │ ├── Criterion.java │ │ ├── Entity.java │ │ ├── EntityFactory.java │ │ ├── EntityPackage.java │ │ ├── ExternalCriterion.java │ │ ├── Finder.java │ │ ├── InheritanceKind.java │ │ ├── InternalCriterion.java │ │ ├── Root.java │ │ ├── extensionUtilities │ │ ├── EntityFilter.java │ │ ├── ExtensionUtilitiesFactory.java │ │ ├── ExtensionUtilitiesPackage.java │ │ ├── impl │ │ │ ├── EntityFilterImpl.java │ │ │ ├── ExtensionUtilitiesFactoryImpl.java │ │ │ └── ExtensionUtilitiesPackageImpl.java │ │ └── util │ │ │ ├── ExtensionUtilitiesAdapterFactory.java │ │ │ └── ExtensionUtilitiesSwitch.java │ │ ├── impl │ │ ├── CriterionImpl.java │ │ ├── EntityFactoryImpl.java │ │ ├── EntityImpl.java │ │ ├── EntityPackageImpl.java │ │ ├── ExternalCriterionImpl.java │ │ ├── FinderImpl.java │ │ ├── InternalCriterionImpl.java │ │ └── RootImpl.java │ │ ├── migration │ │ └── EntityMigrationHelper.java │ │ └── util │ │ ├── EntityAdapterFactory.java │ │ ├── EntityResourceFactoryImpl.java │ │ ├── EntityResourceImpl.java │ │ └── EntitySwitch.java ├── environment │ ├── features │ │ └── org.obeonetwork.dsl.feature.environment │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.environment.common │ │ ├── .project │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── obeo.environment │ │ │ └── obeo.metadatadef │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ └── pom.xml │ │ ├── org.obeonetwork.dsl.environment.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── Annotation.gif │ │ │ │ ├── AnnotationLink.gif │ │ │ │ ├── Attribute.gif │ │ │ │ ├── BindingElement.gif │ │ │ │ ├── BindingInfo.gif │ │ │ │ ├── BindingReference.gif │ │ │ │ ├── BindingRegistry.gif │ │ │ │ ├── Composition.gif │ │ │ │ ├── DTO.gif │ │ │ │ ├── Empty_Namespace.gif │ │ │ │ ├── Enumeration.gif │ │ │ │ ├── Environment.gif │ │ │ │ ├── FilterContainer.gif │ │ │ │ ├── Inheritance.gif │ │ │ │ ├── InterDSMLink.gif │ │ │ │ ├── Literal.gif │ │ │ │ ├── MetaDataContainer.gif │ │ │ │ ├── MetaDataDefinition.gif │ │ │ │ ├── MetaDataDefinitions.gif │ │ │ │ ├── Namespace.gif │ │ │ │ ├── PrimitiveType.gif │ │ │ │ ├── Priority.gif │ │ │ │ ├── PriorityDefinition.gif │ │ │ │ ├── Reference.gif │ │ │ │ └── TypesDefinition.gif │ │ ├── model │ │ │ ├── environment.components │ │ │ └── environment.eefgen │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── IChildDescriptionProvider.exsd │ │ ├── specific │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── environment │ │ │ │ ├── components │ │ │ │ └── ReferenceOppositePropertiesEditionComponentSpec.java │ │ │ │ ├── edit │ │ │ │ └── specific │ │ │ │ │ ├── extensions │ │ │ │ │ └── IChildDescriptorProvider.java │ │ │ │ │ └── policies │ │ │ │ │ ├── CustomEditingPolicy.java │ │ │ │ │ └── CustomPropertiesEditingProvider.java │ │ │ │ └── providers │ │ │ │ ├── EnvironmentEEFAdapterFactorySpec.java │ │ │ │ └── ReferencePropertiesEditionProviderSpec.java │ │ ├── src-gen │ │ │ ├── environment_properties.plugin.xml │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── environment │ │ │ │ ├── components │ │ │ │ ├── AnnotationPropertiesEditionComponent.java │ │ │ │ ├── AttributeAttributePropertiesEditionComponent.java │ │ │ │ ├── AttributePropertiesEditionComponent.java │ │ │ │ ├── BindingElementBindingElementPropertiesEditionComponent.java │ │ │ │ ├── BindingElementPropertiesEditionComponent.java │ │ │ │ ├── BindingInfoBindingInfoPropertiesEditionComponent.java │ │ │ │ ├── BindingInfoPropertiesEditionComponent.java │ │ │ │ ├── BindingReferenceBindingReferencePropertiesEditionComponent.java │ │ │ │ ├── BindingReferencePropertiesEditionComponent.java │ │ │ │ ├── DtoDtoPropertiesEditionComponent.java │ │ │ │ ├── DtoPropertiesEditionComponent.java │ │ │ │ ├── EnumerationEnumerationPropertiesEditionComponent.java │ │ │ │ ├── EnumerationPropertiesEditionComponent.java │ │ │ │ ├── EnvironmentEnvironmentPropertiesEditionComponent.java │ │ │ │ ├── EnvironmentPropertiesEditionComponent.java │ │ │ │ ├── FilterContainerFilterContainerPropertiesEditionComponent.java │ │ │ │ ├── FilterContainerPropertiesEditionComponent.java │ │ │ │ ├── InterDSMLinkInterDSMLinkPropertiesEditionComponent.java │ │ │ │ ├── InterDSMLinkPropertiesEditionComponent.java │ │ │ │ ├── LiteralLiteralPropertiesEditionComponent.java │ │ │ │ ├── LiteralPropertiesEditionComponent.java │ │ │ │ ├── MetadataCptPropertiesEditionComponent.java │ │ │ │ ├── NamespaceNamespacePropertiesEditionComponent.java │ │ │ │ ├── NamespacePropertiesEditionComponent.java │ │ │ │ ├── PrimitiveTypePrimitiveTypePropertiesEditionComponent.java │ │ │ │ ├── PrimitiveTypePropertiesEditionComponent.java │ │ │ │ ├── PriorityDefinitionPriorityDefinitionPropertiesEditionComponent.java │ │ │ │ ├── PriorityDefinitionPropertiesEditionComponent.java │ │ │ │ ├── PriorityPriorityPropertiesEditionComponent.java │ │ │ │ ├── PriorityPropertiesEditionComponent.java │ │ │ │ ├── ReferenceOppositePropertiesEditionComponent.java │ │ │ │ ├── ReferencePropertiesEditionComponent.java │ │ │ │ ├── ReferenceReferencePropertiesEditionComponent.java │ │ │ │ ├── TypesDefinitionPropertiesEditionComponent.java │ │ │ │ └── TypesDefinitionTypesDefinitionPropertiesEditionComponent.java │ │ │ │ ├── parts │ │ │ │ ├── AnnotationPropertiesEditionPart.java │ │ │ │ ├── AttributePropertiesEditionPart.java │ │ │ │ ├── BindingElementPropertiesEditionPart.java │ │ │ │ ├── BindingInfoPropertiesEditionPart.java │ │ │ │ ├── BindingReferencePropertiesEditionPart.java │ │ │ │ ├── DtoPropertiesEditionPart.java │ │ │ │ ├── EnumerationPropertiesEditionPart.java │ │ │ │ ├── EnvironmentPropertiesEditionPart.java │ │ │ │ ├── EnvironmentViewsRepository.java │ │ │ │ ├── FilterContainerPropertiesEditionPart.java │ │ │ │ ├── InterDSMLinkPropertiesEditionPart.java │ │ │ │ ├── LiteralPropertiesEditionPart.java │ │ │ │ ├── MetadatasPropertiesEditionPart.java │ │ │ │ ├── NamespacePropertiesEditionPart.java │ │ │ │ ├── OppositePropertiesEditionPart.java │ │ │ │ ├── PrimitiveTypePropertiesEditionPart.java │ │ │ │ ├── PriorityDefinitionPropertiesEditionPart.java │ │ │ │ ├── PriorityPropertiesEditionPart.java │ │ │ │ ├── ReferencePropertiesEditionPart.java │ │ │ │ ├── TypesDefinitionPropertiesEditionPart.java │ │ │ │ ├── forms │ │ │ │ │ ├── AnnotationPropertiesEditionPartForm.java │ │ │ │ │ ├── AttributePropertiesEditionPartForm.java │ │ │ │ │ ├── BindingElementPropertiesEditionPartForm.java │ │ │ │ │ ├── BindingInfoPropertiesEditionPartForm.java │ │ │ │ │ ├── BindingReferencePropertiesEditionPartForm.java │ │ │ │ │ ├── DtoPropertiesEditionPartForm.java │ │ │ │ │ ├── EnumerationPropertiesEditionPartForm.java │ │ │ │ │ ├── EnvironmentPropertiesEditionPartForm.java │ │ │ │ │ ├── FilterContainerPropertiesEditionPartForm.java │ │ │ │ │ ├── InterDSMLinkPropertiesEditionPartForm.java │ │ │ │ │ ├── LiteralPropertiesEditionPartForm.java │ │ │ │ │ ├── MetadatasPropertiesEditionPartForm.java │ │ │ │ │ ├── NamespacePropertiesEditionPartForm.java │ │ │ │ │ ├── OppositePropertiesEditionPartForm.java │ │ │ │ │ ├── PrimitiveTypePropertiesEditionPartForm.java │ │ │ │ │ ├── PriorityDefinitionPropertiesEditionPartForm.java │ │ │ │ │ ├── PriorityPropertiesEditionPartForm.java │ │ │ │ │ ├── ReferencePropertiesEditionPartForm.java │ │ │ │ │ └── TypesDefinitionPropertiesEditionPartForm.java │ │ │ │ └── impl │ │ │ │ │ ├── AnnotationPropertiesEditionPartImpl.java │ │ │ │ │ ├── AttributePropertiesEditionPartImpl.java │ │ │ │ │ ├── BindingElementPropertiesEditionPartImpl.java │ │ │ │ │ ├── BindingInfoPropertiesEditionPartImpl.java │ │ │ │ │ ├── BindingReferencePropertiesEditionPartImpl.java │ │ │ │ │ ├── DtoPropertiesEditionPartImpl.java │ │ │ │ │ ├── EnumerationPropertiesEditionPartImpl.java │ │ │ │ │ ├── EnvironmentPropertiesEditionPartImpl.java │ │ │ │ │ ├── FilterContainerPropertiesEditionPartImpl.java │ │ │ │ │ ├── InterDSMLinkPropertiesEditionPartImpl.java │ │ │ │ │ ├── LiteralPropertiesEditionPartImpl.java │ │ │ │ │ ├── MetadatasPropertiesEditionPartImpl.java │ │ │ │ │ ├── NamespacePropertiesEditionPartImpl.java │ │ │ │ │ ├── OppositePropertiesEditionPartImpl.java │ │ │ │ │ ├── PrimitiveTypePropertiesEditionPartImpl.java │ │ │ │ │ ├── PriorityDefinitionPropertiesEditionPartImpl.java │ │ │ │ │ ├── PriorityPropertiesEditionPartImpl.java │ │ │ │ │ ├── ReferencePropertiesEditionPartImpl.java │ │ │ │ │ └── TypesDefinitionPropertiesEditionPartImpl.java │ │ │ │ └── providers │ │ │ │ ├── AnnotationPropertiesEditionProvider.java │ │ │ │ ├── AttributePropertiesEditionProvider.java │ │ │ │ ├── BindingElementPropertiesEditionProvider.java │ │ │ │ ├── BindingInfoPropertiesEditionProvider.java │ │ │ │ ├── BindingReferencePropertiesEditionProvider.java │ │ │ │ ├── DtoPropertiesEditionProvider.java │ │ │ │ ├── EnumerationPropertiesEditionProvider.java │ │ │ │ ├── EnvironmentEEFAdapterFactory.java │ │ │ │ ├── EnvironmentMessages.java │ │ │ │ ├── EnvironmentPropertiesEditionPartProvider.java │ │ │ │ ├── EnvironmentPropertiesEditionProvider.java │ │ │ │ ├── FilterContainerPropertiesEditionProvider.java │ │ │ │ ├── InterDSMLinkPropertiesEditionProvider.java │ │ │ │ ├── LiteralPropertiesEditionProvider.java │ │ │ │ ├── MetadataCptPropertiesEditionProvider.java │ │ │ │ ├── NamespacePropertiesEditionProvider.java │ │ │ │ ├── PrimitiveTypePropertiesEditionProvider.java │ │ │ │ ├── PriorityDefinitionPropertiesEditionProvider.java │ │ │ │ ├── PriorityPropertiesEditionProvider.java │ │ │ │ ├── ReferencePropertiesEditionProvider.java │ │ │ │ ├── TypesDefinitionPropertiesEditionProvider.java │ │ │ │ ├── environmentMessages.properties │ │ │ │ └── environmentMessages_fr.properties │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── environment │ │ │ ├── filters │ │ │ ├── AnnotationTabPropertiesEditionSection.java │ │ │ ├── AttributeTabPropertiesEditionSection.java │ │ │ ├── BindingElementTabPropertiesEditionSection.java │ │ │ ├── BindingInfoTabPropertiesEditionSection.java │ │ │ ├── BindingReferenceTabPropertiesEditionSection.java │ │ │ ├── DtoTabPropertiesEditionSection.java │ │ │ ├── EnumerationTabPropertiesEditionSection.java │ │ │ ├── EnvironmentTabPropertiesEditionSection.java │ │ │ ├── FilterContainerTabPropertiesEditionSection.java │ │ │ ├── InterDSMLinkTabPropertiesEditionSection.java │ │ │ ├── LiteralTabPropertiesEditionSection.java │ │ │ ├── MetadataTabPropertiesEditionSection.java │ │ │ ├── NamespaceTabPropertiesEditionSection.java │ │ │ ├── OppositeTabPropertiesEditionSection.java │ │ │ ├── PrimitiveTypeTabPropertiesEditionSection.java │ │ │ ├── PriorityDefinitionTabPropertiesEditionSection.java │ │ │ ├── PriorityTabPropertiesEditionSection.java │ │ │ ├── ReferenceTabPropertiesEditionSection.java │ │ │ └── TypesDefinitionTabPropertiesEditionSection.java │ │ │ ├── metadatadef │ │ │ └── provider │ │ │ │ ├── MetaDataDefinitionItemProvider.java │ │ │ │ ├── MetaDataDefinitionsItemProvider.java │ │ │ │ └── MetadatadefItemProviderAdapterFactory.java │ │ │ └── provider │ │ │ ├── ActionItemProvider.java │ │ │ ├── AnnotationItemProvider.java │ │ │ ├── AttributeItemProvider.java │ │ │ ├── BehaviourItemProvider.java │ │ │ ├── BindingElementItemProvider.java │ │ │ ├── BindingInfoItemProvider.java │ │ │ ├── BindingReferenceItemProvider.java │ │ │ ├── BindingRegistryItemProvider.java │ │ │ ├── ConstrainableElementItemProvider.java │ │ │ ├── ContainerItemProvider.java │ │ │ ├── DTOItemProvider.java │ │ │ ├── DataTypeItemProvider.java │ │ │ ├── EnumerationItemProvider.java │ │ │ ├── EnvironmentEditPlugin.java │ │ │ ├── EnvironmentItemProvider.java │ │ │ ├── EnvironmentItemProviderAdapterFactory.java │ │ │ ├── FilterContainerItemProvider.java │ │ │ ├── FilterItemProvider.java │ │ │ ├── InterDSMLinkItemProvider.java │ │ │ ├── LiteralItemProvider.java │ │ │ ├── MetaDataContainerItemProvider.java │ │ │ ├── MetaDataItemProvider.java │ │ │ ├── NamespaceItemProvider.java │ │ │ ├── NamespacesContainerItemProvider.java │ │ │ ├── ObeoDSMObjectItemProvider.java │ │ │ ├── PrimitiveTypeItemProvider.java │ │ │ ├── PriorityDefinitionItemProvider.java │ │ │ ├── PriorityItemProvider.java │ │ │ ├── PropertyItemProvider.java │ │ │ ├── ReferenceItemProvider.java │ │ │ ├── StructuredTypeItemProvider.java │ │ │ ├── TypeItemProvider.java │ │ │ └── TypesDefinitionItemProvider.java │ │ ├── org.obeonetwork.dsl.environment.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ ├── obj16 │ │ │ │ ├── EnvironmentModelFile.gif │ │ │ │ └── MetadatadefModelFile.gif │ │ │ │ └── wizban │ │ │ │ └── NewMetadatadef.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── environment │ │ │ ├── metadatadef │ │ │ └── presentation │ │ │ │ ├── MetadatadefActionBarContributor.java │ │ │ │ ├── MetadatadefEditor.java │ │ │ │ └── MetadatadefModelWizard.java │ │ │ └── presentation │ │ │ ├── EnvironmentActionBarContributor.java │ │ │ ├── EnvironmentEditor.java │ │ │ └── EnvironmentEditorPlugin.java │ │ └── org.obeonetwork.dsl.environment │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── environment.aird │ │ ├── environment.ecore │ │ ├── environment.genmodel │ │ └── icons │ │ │ └── fr │ │ │ └── obeo │ │ │ └── dsl │ │ │ └── environment │ │ │ ├── Enumeration.gif │ │ │ ├── Environment.gif │ │ │ ├── Field.gif │ │ │ ├── InterDSMLink.gif │ │ │ └── PrimitiveType.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ ├── providedEnvironmentModel.exsd │ │ └── providedMetaDataDefinitionsModels.exsd │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── environment │ │ ├── Action.java │ │ ├── Annotation.java │ │ ├── Attribute.java │ │ ├── Behaviour.java │ │ ├── BindingElement.java │ │ ├── BindingInfo.java │ │ ├── BindingReference.java │ │ ├── BindingRegistry.java │ │ ├── BoundableElement.java │ │ ├── ConstrainableElement.java │ │ ├── DTO.java │ │ ├── DataType.java │ │ ├── Enumeration.java │ │ ├── Environment.java │ │ ├── EnvironmentFactory.java │ │ ├── EnvironmentPackage.java │ │ ├── Filter.java │ │ ├── FilterContainer.java │ │ ├── InterDSMLink.java │ │ ├── Literal.java │ │ ├── MetaData.java │ │ ├── MetaDataContainer.java │ │ ├── MultiplicityKind.java │ │ ├── Namespace.java │ │ ├── NamespacesContainer.java │ │ ├── ObeoDSMObject.java │ │ ├── PrimitiveType.java │ │ ├── PrimitiveTypeKind.java │ │ ├── Priority.java │ │ ├── PriorityDefinition.java │ │ ├── PriorityKind.java │ │ ├── Property.java │ │ ├── Reference.java │ │ ├── StructuredType.java │ │ ├── Type.java │ │ ├── TypesDefinition.java │ │ ├── impl │ │ ├── ActionImpl.java │ │ ├── AnnotationImpl.java │ │ ├── AttributeImpl.java │ │ ├── BehaviourImpl.java │ │ ├── BindingElementImpl.java │ │ ├── BindingInfoImpl.java │ │ ├── BindingReferenceImpl.java │ │ ├── BindingRegistryImpl.java │ │ ├── ConstrainableElementImpl.java │ │ ├── DTOImpl.java │ │ ├── DataTypeImpl.java │ │ ├── EnumerationImpl.java │ │ ├── EnvironmentFactoryImpl.java │ │ ├── EnvironmentImpl.java │ │ ├── EnvironmentPackageImpl.java │ │ ├── FilterContainerImpl.java │ │ ├── FilterImpl.java │ │ ├── InterDSMLinkImpl.java │ │ ├── LiteralImpl.java │ │ ├── MetaDataContainerImpl.java │ │ ├── MetaDataImpl.java │ │ ├── NamespaceImpl.java │ │ ├── NamespacesContainerImpl.java │ │ ├── ObeoDSMObjectImpl.java │ │ ├── PrimitiveTypeImpl.java │ │ ├── PriorityDefinitionImpl.java │ │ ├── PriorityImpl.java │ │ ├── PropertyImpl.java │ │ ├── ReferenceImpl.java │ │ ├── StructuredTypeImpl.java │ │ ├── TypeImpl.java │ │ └── TypesDefinitionImpl.java │ │ ├── metadatadef │ │ ├── MetaDataDefinition.java │ │ ├── MetaDataDefinitions.java │ │ ├── MetadatadefFactory.java │ │ ├── MetadatadefPackage.java │ │ ├── impl │ │ │ ├── MetaDataDefinitionImpl.java │ │ │ ├── MetaDataDefinitionsImpl.java │ │ │ ├── MetadatadefFactoryImpl.java │ │ │ └── MetadatadefPackageImpl.java │ │ └── util │ │ │ ├── MetaDataDefinitionsResourceUtil.java │ │ │ ├── MetadatadefAdapterFactory.java │ │ │ ├── MetadatadefSwitch.java │ │ │ └── ProvidedMetaDataDefinitionsModelsService.java │ │ ├── migration │ │ └── EnvironmentMigrationHelper.java │ │ ├── session │ │ └── EnvironmentSessionManagerListener.java │ │ ├── spec │ │ └── ReferenceSpec.java │ │ └── util │ │ ├── ComposedSwitchWithFallback.java │ │ ├── EnvironmentAdapterFactory.java │ │ ├── EnvironmentResourceFactoryImpl.java │ │ ├── EnvironmentResourceImpl.java │ │ ├── EnvironmentSwitch.java │ │ ├── EnvironmentUtil.java │ │ └── ProvidedModelsService.java ├── graal │ ├── features │ │ └── org.obeonetwork.graal.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ ├── plugins │ │ ├── org.obeonetwork.graal.doc │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── doc │ │ │ │ ├── ISD - Graal tooling-toc.xml │ │ │ │ ├── ISD - Graal tooling.html │ │ │ │ ├── ISD - Graal tooling.textile │ │ │ │ └── pics │ │ │ │ │ ├── GraalGraphsOnSystem.png │ │ │ │ │ ├── GraalSystemContentExplorerStructure.png │ │ │ │ │ ├── GraalViewpointSelection.png │ │ │ │ │ ├── SafranGraalModelCreated.png │ │ │ │ │ ├── SafranGraalWizard01.png │ │ │ │ │ ├── SafranGraalWizard02.png │ │ │ │ │ ├── diagrams │ │ │ │ │ ├── actionsplan │ │ │ │ │ │ ├── ActionsPlan.png │ │ │ │ │ │ ├── abortnode.png │ │ │ │ │ │ ├── aborttransition.png │ │ │ │ │ │ ├── and.png │ │ │ │ │ │ ├── appliaction.png │ │ │ │ │ │ ├── applievent.png │ │ │ │ │ │ ├── existingtask.png │ │ │ │ │ │ ├── finalnode.png │ │ │ │ │ │ ├── initialnode.png │ │ │ │ │ │ ├── interrupttransition.png │ │ │ │ │ │ ├── loop.png │ │ │ │ │ │ ├── newtask.png │ │ │ │ │ │ ├── or.png │ │ │ │ │ │ ├── transition.png │ │ │ │ │ │ ├── useraction.png │ │ │ │ │ │ ├── userview.png │ │ │ │ │ │ └── xor.png │ │ │ │ │ ├── actorsgraph │ │ │ │ │ │ ├── ActorsGraph.png │ │ │ │ │ │ ├── actor.png │ │ │ │ │ │ └── inherits.png │ │ │ │ │ ├── domainclasses │ │ │ │ │ │ ├── Create attribute.png │ │ │ │ │ │ ├── Create bidi composition.png │ │ │ │ │ │ ├── Create bidi relation.png │ │ │ │ │ │ ├── Create composition.png │ │ │ │ │ │ ├── Create domain class.png │ │ │ │ │ │ ├── Create enumeration.png │ │ │ │ │ │ ├── Create external.png │ │ │ │ │ │ ├── Create inheritance.png │ │ │ │ │ │ ├── Create literal.png │ │ │ │ │ │ ├── Create namespace.png │ │ │ │ │ │ ├── Create relation.png │ │ │ │ │ │ ├── DomainClassesDiagram.png │ │ │ │ │ │ ├── namespacesHierarchy.png │ │ │ │ │ │ └── namespacesHierarchyDependencies.png │ │ │ │ │ ├── grouptasksgraph │ │ │ │ │ │ ├── Group Tasks Graph.png │ │ │ │ │ │ └── Import existing task.png │ │ │ │ │ ├── tasksgraph │ │ │ │ │ │ ├── Attach actor.png │ │ │ │ │ │ ├── Attach actor2.png │ │ │ │ │ │ ├── Create group.png │ │ │ │ │ │ ├── Create system.png │ │ │ │ │ │ ├── Create task.png │ │ │ │ │ │ ├── Create use.png │ │ │ │ │ │ ├── Tasks Graph.png │ │ │ │ │ │ ├── Tasks_Graph.png │ │ │ │ │ │ └── Tasks_Graph_Actors_layer.png │ │ │ │ │ ├── usecasediagram │ │ │ │ │ │ ├── UseCaseDiagram.png │ │ │ │ │ │ ├── attachactor.png │ │ │ │ │ │ ├── existingtask.png │ │ │ │ │ │ ├── newtask.png │ │ │ │ │ │ ├── use.png │ │ │ │ │ │ └── workson.png │ │ │ │ │ └── usecasesmainview │ │ │ │ │ │ ├── UseCasesMainView.png │ │ │ │ │ │ ├── extend.png │ │ │ │ │ │ ├── include.png │ │ │ │ │ │ └── usecase.png │ │ │ │ │ ├── requirements │ │ │ │ │ ├── New task traceability.png │ │ │ │ │ ├── New use case traceability.png │ │ │ │ │ ├── Task traceability matrix.png │ │ │ │ │ └── Use case traceability matrix.png │ │ │ │ │ └── userstories │ │ │ │ │ ├── User Stories.png │ │ │ │ │ ├── check1.png │ │ │ │ │ ├── check2.png │ │ │ │ │ ├── checkstate1.png │ │ │ │ │ ├── checkstate2.png │ │ │ │ │ ├── checkstate3.png │ │ │ │ │ ├── create.png │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── dialogcreate.png │ │ │ │ │ ├── display.png │ │ │ │ │ ├── displayuserstory.png │ │ │ │ │ └── update.png │ │ │ ├── plugin.xml │ │ │ └── pom.xml │ │ ├── org.obeonetwork.graal.edit │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── icons │ │ │ │ └── full │ │ │ │ │ └── obj16 │ │ │ │ │ ├── Abort.gif │ │ │ │ │ ├── AbortNode.gif │ │ │ │ │ ├── AbstractTask.gif │ │ │ │ │ ├── Activity.gif │ │ │ │ │ ├── Actor.gif │ │ │ │ │ ├── And.gif │ │ │ │ │ ├── AppliAction.gif │ │ │ │ │ ├── AppliEvent.gif │ │ │ │ │ ├── DomainClass.gif │ │ │ │ │ ├── DomainModelRegistry.gif │ │ │ │ │ ├── FinalNode.gif │ │ │ │ │ ├── InitialNode.gif │ │ │ │ │ ├── Interrupt.gif │ │ │ │ │ ├── Loop.gif │ │ │ │ │ ├── MapAppliActionToActionState.gif │ │ │ │ │ ├── MapAppliEventToAsyncEventState.gif │ │ │ │ │ ├── MapTaskToFlow.gif │ │ │ │ │ ├── MapUserActionToViewElement.gif │ │ │ │ │ ├── MapUserViewToViewState.gif │ │ │ │ │ ├── Namespace.gif │ │ │ │ │ ├── Operator.gif │ │ │ │ │ ├── Or.gif │ │ │ │ │ ├── System.gif │ │ │ │ │ ├── Task.gif │ │ │ │ │ ├── TaskReference.gif │ │ │ │ │ ├── TasksGroup.gif │ │ │ │ │ ├── Transition.gif │ │ │ │ │ ├── UIConfiguration.gif │ │ │ │ │ ├── Use.gif │ │ │ │ │ ├── UseCase.gif │ │ │ │ │ ├── UserAction.gif │ │ │ │ │ ├── UserStory.gif │ │ │ │ │ ├── UserView.gif │ │ │ │ │ └── Xor.gif │ │ │ ├── model │ │ │ │ ├── graal.components │ │ │ │ └── graal.eefgen │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ ├── src-gen │ │ │ │ ├── graal_properties.plugin.xml │ │ │ │ └── org │ │ │ │ │ └── obeonetwork │ │ │ │ │ └── graal │ │ │ │ │ ├── components │ │ │ │ │ ├── AbortNodeAbortNodePropertiesEditionComponent.java │ │ │ │ │ ├── AbortNodePropertiesEditionComponent.java │ │ │ │ │ ├── ActorActorPropertiesEditionComponent.java │ │ │ │ │ ├── ActorPropertiesEditionComponent.java │ │ │ │ │ ├── AppliActionAppliActionPropertiesEditionComponent.java │ │ │ │ │ ├── AppliActionPropertiesEditionComponent.java │ │ │ │ │ ├── AppliEventAppliEventPropertiesEditionComponent.java │ │ │ │ │ ├── AppliEventPropertiesEditionComponent.java │ │ │ │ │ ├── DomainClassDomainClassPropertiesEditionComponent.java │ │ │ │ │ ├── DomainClassPersistencePropertiesEditionComponent.java │ │ │ │ │ ├── DomainClassPropertiesEditionComponent.java │ │ │ │ │ ├── FinalNodeFinalNodePropertiesEditionComponent.java │ │ │ │ │ ├── FinalNodePropertiesEditionComponent.java │ │ │ │ │ ├── InitialNodeInitialNodePropertiesEditionComponent.java │ │ │ │ │ ├── InitialNodePropertiesEditionComponent.java │ │ │ │ │ ├── LoopLoopPropertiesEditionComponent.java │ │ │ │ │ ├── LoopPropertiesEditionComponent.java │ │ │ │ │ ├── OperatorOperatorPropertiesEditionComponent.java │ │ │ │ │ ├── OperatorPropertiesEditionComponent.java │ │ │ │ │ ├── SystemPropertiesEditionComponent.java │ │ │ │ │ ├── SystemSystemPropertiesEditionComponent.java │ │ │ │ │ ├── TaskPropertiesEditionComponent.java │ │ │ │ │ ├── TaskReferencePropertiesEditionComponent.java │ │ │ │ │ ├── TaskReferenceTaskReferencePropertiesEditionComponent.java │ │ │ │ │ ├── TaskTaskPropertiesEditionComponent.java │ │ │ │ │ ├── TasksGroupPropertiesEditionComponent.java │ │ │ │ │ ├── TasksGroupTasksGroupPropertiesEditionComponent.java │ │ │ │ │ ├── TransitionPropertiesEditionComponent.java │ │ │ │ │ ├── TransitionTransitionPropertiesEditionComponent.java │ │ │ │ │ ├── UseCasePropertiesEditionComponent.java │ │ │ │ │ ├── UseCaseUseCasePropertiesEditionComponent.java │ │ │ │ │ ├── UserActionPropertiesEditionComponent.java │ │ │ │ │ ├── UserActionUserActionPropertiesEditionComponent.java │ │ │ │ │ ├── UserStoryPropertiesEditionComponent.java │ │ │ │ │ ├── UserStoryUserStoryPropertiesEditionComponent.java │ │ │ │ │ ├── UserViewPropertiesEditionComponent.java │ │ │ │ │ └── UserViewUserViewPropertiesEditionComponent.java │ │ │ │ │ ├── parts │ │ │ │ │ ├── AbortNodePropertiesEditionPart.java │ │ │ │ │ ├── ActorPropertiesEditionPart.java │ │ │ │ │ ├── AppliActionPropertiesEditionPart.java │ │ │ │ │ ├── AppliEventPropertiesEditionPart.java │ │ │ │ │ ├── DomainClassPropertiesEditionPart.java │ │ │ │ │ ├── FinalNodePropertiesEditionPart.java │ │ │ │ │ ├── GraalViewsRepository.java │ │ │ │ │ ├── InitialNodePropertiesEditionPart.java │ │ │ │ │ ├── LoopPropertiesEditionPart.java │ │ │ │ │ ├── OperatorPropertiesEditionPart.java │ │ │ │ │ ├── PersistencePropertiesEditionPart.java │ │ │ │ │ ├── SystemPropertiesEditionPart.java │ │ │ │ │ ├── TaskPropertiesEditionPart.java │ │ │ │ │ ├── TaskReferencePropertiesEditionPart.java │ │ │ │ │ ├── TasksGroupPropertiesEditionPart.java │ │ │ │ │ ├── TransitionPropertiesEditionPart.java │ │ │ │ │ ├── UseCasePropertiesEditionPart.java │ │ │ │ │ ├── UserActionPropertiesEditionPart.java │ │ │ │ │ ├── UserStoryPropertiesEditionPart.java │ │ │ │ │ ├── UserViewPropertiesEditionPart.java │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── AbortNodePropertiesEditionPartForm.java │ │ │ │ │ │ ├── ActorPropertiesEditionPartForm.java │ │ │ │ │ │ ├── AppliActionPropertiesEditionPartForm.java │ │ │ │ │ │ ├── AppliEventPropertiesEditionPartForm.java │ │ │ │ │ │ ├── DomainClassPropertiesEditionPartForm.java │ │ │ │ │ │ ├── FinalNodePropertiesEditionPartForm.java │ │ │ │ │ │ ├── InitialNodePropertiesEditionPartForm.java │ │ │ │ │ │ ├── LoopPropertiesEditionPartForm.java │ │ │ │ │ │ ├── OperatorPropertiesEditionPartForm.java │ │ │ │ │ │ ├── PersistencePropertiesEditionPartForm.java │ │ │ │ │ │ ├── SystemPropertiesEditionPartForm.java │ │ │ │ │ │ ├── TaskPropertiesEditionPartForm.java │ │ │ │ │ │ ├── TaskReferencePropertiesEditionPartForm.java │ │ │ │ │ │ ├── TasksGroupPropertiesEditionPartForm.java │ │ │ │ │ │ ├── TransitionPropertiesEditionPartForm.java │ │ │ │ │ │ ├── UseCasePropertiesEditionPartForm.java │ │ │ │ │ │ ├── UserActionPropertiesEditionPartForm.java │ │ │ │ │ │ ├── UserStoryPropertiesEditionPartForm.java │ │ │ │ │ │ └── UserViewPropertiesEditionPartForm.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AbortNodePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── ActorPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── AppliActionPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── AppliEventPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── DomainClassPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── FinalNodePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── InitialNodePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── LoopPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── OperatorPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── PersistencePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── SystemPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── TaskPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── TaskReferencePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── TasksGroupPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── TransitionPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── UseCasePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── UserActionPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── UserStoryPropertiesEditionPartImpl.java │ │ │ │ │ │ └── UserViewPropertiesEditionPartImpl.java │ │ │ │ │ └── providers │ │ │ │ │ ├── AbortNodePropertiesEditionProvider.java │ │ │ │ │ ├── ActorPropertiesEditionProvider.java │ │ │ │ │ ├── AppliActionPropertiesEditionProvider.java │ │ │ │ │ ├── AppliEventPropertiesEditionProvider.java │ │ │ │ │ ├── DomainClassPropertiesEditionProvider.java │ │ │ │ │ ├── FinalNodePropertiesEditionProvider.java │ │ │ │ │ ├── GraalEEFAdapterFactory.java │ │ │ │ │ ├── GraalMessages.java │ │ │ │ │ ├── GraalPropertiesEditionPartProvider.java │ │ │ │ │ ├── InitialNodePropertiesEditionProvider.java │ │ │ │ │ ├── LoopPropertiesEditionProvider.java │ │ │ │ │ ├── OperatorPropertiesEditionProvider.java │ │ │ │ │ ├── SystemPropertiesEditionProvider.java │ │ │ │ │ ├── TaskPropertiesEditionProvider.java │ │ │ │ │ ├── TaskReferencePropertiesEditionProvider.java │ │ │ │ │ ├── TasksGroupPropertiesEditionProvider.java │ │ │ │ │ ├── TransitionPropertiesEditionProvider.java │ │ │ │ │ ├── UseCasePropertiesEditionProvider.java │ │ │ │ │ ├── UserActionPropertiesEditionProvider.java │ │ │ │ │ ├── UserStoryPropertiesEditionProvider.java │ │ │ │ │ ├── UserViewPropertiesEditionProvider.java │ │ │ │ │ ├── graalMessages.properties │ │ │ │ │ └── graalMessages_fr.properties │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── graal │ │ │ │ ├── filters │ │ │ │ ├── AbortNodeTabPropertiesEditionSection.java │ │ │ │ ├── ActorTabPropertiesEditionSection.java │ │ │ │ ├── AppliActionTabPropertiesEditionSection.java │ │ │ │ ├── AppliEventTabPropertiesEditionSection.java │ │ │ │ ├── DomainClassTabPropertiesEditionSection.java │ │ │ │ ├── FinalNodeTabPropertiesEditionSection.java │ │ │ │ ├── InitialNodeTabPropertiesEditionSection.java │ │ │ │ ├── LoopTabPropertiesEditionSection.java │ │ │ │ ├── OperatorTabPropertiesEditionSection.java │ │ │ │ ├── SystemTabPropertiesEditionSection.java │ │ │ │ ├── TaskReferenceTabPropertiesEditionSection.java │ │ │ │ ├── TaskTabPropertiesEditionSection.java │ │ │ │ ├── TasksGroupTabPropertiesEditionSection.java │ │ │ │ ├── TransitionTabPropertiesEditionSection.java │ │ │ │ ├── UseCaseTabPropertiesEditionSection.java │ │ │ │ ├── UserActionTabPropertiesEditionSection.java │ │ │ │ ├── UserStoryTabPropertiesEditionSection.java │ │ │ │ └── UserViewTabPropertiesEditionSection.java │ │ │ │ └── provider │ │ │ │ ├── AbortNodeItemProvider.java │ │ │ │ ├── AbstractTaskItemProvider.java │ │ │ │ ├── ActivityItemProvider.java │ │ │ │ ├── ActorItemProvider.java │ │ │ │ ├── AppliActionItemProvider.java │ │ │ │ ├── AppliEventItemProvider.java │ │ │ │ ├── DomainClassItemProvider.java │ │ │ │ ├── DomainModelRegistryItemProvider.java │ │ │ │ ├── FinalNodeItemProvider.java │ │ │ │ ├── GraalEditPlugin.java │ │ │ │ ├── GraalItemProviderAdapterFactory.java │ │ │ │ ├── GraalObjectItemProvider.java │ │ │ │ ├── InitialNodeItemProvider.java │ │ │ │ ├── LoopItemProvider.java │ │ │ │ ├── NamedElementItemProvider.java │ │ │ │ ├── NamedNodeItemProvider.java │ │ │ │ ├── NodeItemProvider.java │ │ │ │ ├── OperatorItemProvider.java │ │ │ │ ├── SystemItemProvider.java │ │ │ │ ├── TaskItemProvider.java │ │ │ │ ├── TaskReferenceItemProvider.java │ │ │ │ ├── TasksContainerItemProvider.java │ │ │ │ ├── TasksGroupItemProvider.java │ │ │ │ ├── TransitionItemProvider.java │ │ │ │ ├── UseCaseItemProvider.java │ │ │ │ ├── UserActionItemProvider.java │ │ │ │ ├── UserStoryItemProvider.java │ │ │ │ ├── UserViewItemProvider.java │ │ │ │ ├── custom │ │ │ │ ├── SystemCustomContentItemProvider.java │ │ │ │ └── TransientSystemItemProvider.java │ │ │ │ └── util │ │ │ │ └── SystemContentItemProviderUtil.java │ │ ├── org.obeonetwork.graal.editor │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── icons │ │ │ │ └── full │ │ │ │ │ └── obj16 │ │ │ │ │ ├── GraalModelFile.gif │ │ │ │ │ ├── PresentationModelFile.gif │ │ │ │ │ ├── UiModelFile.gif │ │ │ │ │ └── graal.gif │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── graal │ │ │ │ └── presentation │ │ │ │ ├── GraalActionBarContributor.java │ │ │ │ ├── GraalEditor.java │ │ │ │ ├── GraalEditorPlugin.java │ │ │ │ └── GraalModelWizard.java │ │ ├── org.obeonetwork.graal.tests │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── graal │ │ │ │ └── tests │ │ │ │ ├── Activator.java │ │ │ │ └── actors │ │ │ │ └── RelatedActorsTests.java │ │ └── org.obeonetwork.graal │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── model │ │ │ ├── graal.ecore │ │ │ └── graal.genmodel │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ ├── representations.aird │ │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── graal │ │ │ ├── AbortNode.java │ │ │ ├── AbstractTask.java │ │ │ ├── Activity.java │ │ │ ├── Actor.java │ │ │ ├── AppliAction.java │ │ │ ├── AppliEvent.java │ │ │ ├── DomainClass.java │ │ │ ├── DomainModelRegistry.java │ │ │ ├── FinalNode.java │ │ │ ├── GraalFactory.java │ │ │ ├── GraalObject.java │ │ │ ├── GraalPackage.java │ │ │ ├── InitialNode.java │ │ │ ├── Loop.java │ │ │ ├── NamedElement.java │ │ │ ├── NamedNode.java │ │ │ ├── Node.java │ │ │ ├── Operator.java │ │ │ ├── OperatorKind.java │ │ │ ├── System.java │ │ │ ├── Task.java │ │ │ ├── TaskReference.java │ │ │ ├── TasksContainer.java │ │ │ ├── TasksGroup.java │ │ │ ├── Transition.java │ │ │ ├── TransitionKind.java │ │ │ ├── UseCase.java │ │ │ ├── UserAction.java │ │ │ ├── UserStory.java │ │ │ ├── UserStoryElement.java │ │ │ ├── UserView.java │ │ │ ├── impl │ │ │ ├── AbortNodeImpl.java │ │ │ ├── AbstractTaskImpl.java │ │ │ ├── ActivityImpl.java │ │ │ ├── ActorImpl.java │ │ │ ├── AppliActionImpl.java │ │ │ ├── AppliEventImpl.java │ │ │ ├── DomainClassImpl.java │ │ │ ├── DomainModelRegistryImpl.java │ │ │ ├── FinalNodeImpl.java │ │ │ ├── GraalFactoryImpl.java │ │ │ ├── GraalObjectImpl.java │ │ │ ├── GraalPackageImpl.java │ │ │ ├── InitialNodeImpl.java │ │ │ ├── LoopImpl.java │ │ │ ├── NamedElementImpl.java │ │ │ ├── NamedNodeImpl.java │ │ │ ├── NodeImpl.java │ │ │ ├── OperatorImpl.java │ │ │ ├── SystemImpl.java │ │ │ ├── TaskImpl.java │ │ │ ├── TaskReferenceImpl.java │ │ │ ├── TasksContainerImpl.java │ │ │ ├── TasksGroupImpl.java │ │ │ ├── TransitionImpl.java │ │ │ ├── UseCaseImpl.java │ │ │ ├── UserActionImpl.java │ │ │ ├── UserStoryImpl.java │ │ │ └── UserViewImpl.java │ │ │ ├── migration │ │ │ └── GraalMigrationHelper.java │ │ │ └── util │ │ │ ├── GraalAdapterFactory.java │ │ │ ├── GraalResourceFactoryImpl.java │ │ │ ├── GraalResourceImpl.java │ │ │ ├── GraalSwitch.java │ │ │ └── GraalUsageCrossReferencer.java │ └── releng │ │ └── org.obeonetwork.graal.repository │ │ ├── .project │ │ ├── category.xml │ │ ├── index.html │ │ └── pom.xml ├── interaction │ ├── features │ │ └── org.obeonetwork.dsl.feature.interaction │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.interaction.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── CallMessage.gif │ │ │ │ ├── CombinedFragment.gif │ │ │ │ ├── CompoundEnd.gif │ │ │ │ ├── CreateParticipantMessage.gif │ │ │ │ ├── DestroyParticipantMessage.gif │ │ │ │ ├── End.gif │ │ │ │ ├── Execution.gif │ │ │ │ ├── Interaction.gif │ │ │ │ ├── InteractionUse.gif │ │ │ │ ├── Message.gif │ │ │ │ ├── Operand.gif │ │ │ │ ├── Participant.gif │ │ │ │ ├── ReturnMessage.gif │ │ │ │ └── StateInvariant.gif │ │ ├── models │ │ │ ├── interaction.components │ │ │ └── interaction.eefgen │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ ├── interaction_properties.plugin.xml │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── interaction │ │ │ │ ├── components │ │ │ │ ├── CallMessageCallMessagePropertiesEditionComponent.java │ │ │ │ ├── CallMessagePropertiesEditionComponent.java │ │ │ │ ├── CombinedFragmentCombinedFragmentPropertiesEditionComponent.java │ │ │ │ ├── CombinedFragmentPropertiesEditionComponent.java │ │ │ │ ├── CreateParticipantMessageCreateParticipantMessagePropertiesEditionComponent.java │ │ │ │ ├── CreateParticipantMessagePropertiesEditionComponent.java │ │ │ │ ├── DestroyParticipantMessageDestroyParticipantMessagePropertiesEditionComponent.java │ │ │ │ ├── DestroyParticipantMessagePropertiesEditionComponent.java │ │ │ │ ├── ExecutionExecutionPropertiesEditionComponent.java │ │ │ │ ├── ExecutionPropertiesEditionComponent.java │ │ │ │ ├── InteractionInteractionPropertiesEditionComponent.java │ │ │ │ ├── InteractionPropertiesEditionComponent.java │ │ │ │ ├── InteractionUseInteractionUsePropertiesEditionComponent.java │ │ │ │ ├── InteractionUsePropertiesEditionComponent.java │ │ │ │ ├── OperandOperandPropertiesEditionComponent.java │ │ │ │ ├── OperandPropertiesEditionComponent.java │ │ │ │ ├── ParticipantParticipantPropertiesEditionComponent.java │ │ │ │ ├── ParticipantPropertiesEditionComponent.java │ │ │ │ ├── ReturnMessagePropertiesEditionComponent.java │ │ │ │ ├── ReturnMessageReturnMessagePropertiesEditionComponent.java │ │ │ │ ├── StateInvariantPropertiesEditionComponent.java │ │ │ │ └── StateInvariantStateInvariantPropertiesEditionComponent.java │ │ │ │ ├── parts │ │ │ │ ├── CallMessagePropertiesEditionPart.java │ │ │ │ ├── CombinedFragmentPropertiesEditionPart.java │ │ │ │ ├── CreateParticipantMessagePropertiesEditionPart.java │ │ │ │ ├── DestroyParticipantMessagePropertiesEditionPart.java │ │ │ │ ├── ExecutionPropertiesEditionPart.java │ │ │ │ ├── InteractionPropertiesEditionPart.java │ │ │ │ ├── InteractionUsePropertiesEditionPart.java │ │ │ │ ├── InteractionViewsRepository.java │ │ │ │ ├── OperandPropertiesEditionPart.java │ │ │ │ ├── ParticipantPropertiesEditionPart.java │ │ │ │ ├── ReturnMessagePropertiesEditionPart.java │ │ │ │ ├── StateInvariantPropertiesEditionPart.java │ │ │ │ ├── forms │ │ │ │ │ ├── CallMessagePropertiesEditionPartForm.java │ │ │ │ │ ├── CombinedFragmentPropertiesEditionPartForm.java │ │ │ │ │ ├── CreateParticipantMessagePropertiesEditionPartForm.java │ │ │ │ │ ├── DestroyParticipantMessagePropertiesEditionPartForm.java │ │ │ │ │ ├── ExecutionPropertiesEditionPartForm.java │ │ │ │ │ ├── InteractionPropertiesEditionPartForm.java │ │ │ │ │ ├── InteractionUsePropertiesEditionPartForm.java │ │ │ │ │ ├── OperandPropertiesEditionPartForm.java │ │ │ │ │ ├── ParticipantPropertiesEditionPartForm.java │ │ │ │ │ ├── ReturnMessagePropertiesEditionPartForm.java │ │ │ │ │ └── StateInvariantPropertiesEditionPartForm.java │ │ │ │ └── impl │ │ │ │ │ ├── CallMessagePropertiesEditionPartImpl.java │ │ │ │ │ ├── CombinedFragmentPropertiesEditionPartImpl.java │ │ │ │ │ ├── CreateParticipantMessagePropertiesEditionPartImpl.java │ │ │ │ │ ├── DestroyParticipantMessagePropertiesEditionPartImpl.java │ │ │ │ │ ├── ExecutionPropertiesEditionPartImpl.java │ │ │ │ │ ├── InteractionPropertiesEditionPartImpl.java │ │ │ │ │ ├── InteractionUsePropertiesEditionPartImpl.java │ │ │ │ │ ├── OperandPropertiesEditionPartImpl.java │ │ │ │ │ ├── ParticipantPropertiesEditionPartImpl.java │ │ │ │ │ ├── ReturnMessagePropertiesEditionPartImpl.java │ │ │ │ │ └── StateInvariantPropertiesEditionPartImpl.java │ │ │ │ └── providers │ │ │ │ ├── CallMessagePropertiesEditionProvider.java │ │ │ │ ├── CombinedFragmentPropertiesEditionProvider.java │ │ │ │ ├── CreateParticipantMessagePropertiesEditionProvider.java │ │ │ │ ├── DestroyParticipantMessagePropertiesEditionProvider.java │ │ │ │ ├── ExecutionPropertiesEditionProvider.java │ │ │ │ ├── InteractionEEFAdapterFactory.java │ │ │ │ ├── InteractionMessages.java │ │ │ │ ├── InteractionPropertiesEditionPartProvider.java │ │ │ │ ├── InteractionPropertiesEditionProvider.java │ │ │ │ ├── InteractionUsePropertiesEditionProvider.java │ │ │ │ ├── OperandPropertiesEditionProvider.java │ │ │ │ ├── ParticipantPropertiesEditionProvider.java │ │ │ │ ├── ReturnMessagePropertiesEditionProvider.java │ │ │ │ ├── StateInvariantPropertiesEditionProvider.java │ │ │ │ ├── interactionMessages.properties │ │ │ │ └── interactionMessages_fr.properties │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── interaction │ │ │ ├── filters │ │ │ ├── CallMessageTabPropertiesEditionSection.java │ │ │ ├── CombinedFragmentTabPropertiesEditionSection.java │ │ │ ├── CreateParticipantMessageTabPropertiesEditionSection.java │ │ │ ├── DestroyParticipantMessageTabPropertiesEditionSection.java │ │ │ ├── ExecutionTabPropertiesEditionSection.java │ │ │ ├── InteractionTabPropertiesEditionSection.java │ │ │ ├── InteractionUseTabPropertiesEditionSection.java │ │ │ ├── MetadataTabPropertiesEditionSection.java │ │ │ ├── OperandTabPropertiesEditionSection.java │ │ │ ├── ParticipantTabPropertiesEditionSection.java │ │ │ ├── ReturnMessageTabPropertiesEditionSection.java │ │ │ └── StateInvariantTabPropertiesEditionSection.java │ │ │ └── provider │ │ │ ├── CallMessageItemProvider.java │ │ │ ├── CombinedFragmentItemProvider.java │ │ │ ├── CompoundEndItemProvider.java │ │ │ ├── CreateParticipantMessageItemProvider.java │ │ │ ├── DestroyParticipantMessageItemProvider.java │ │ │ ├── EndItemProvider.java │ │ │ ├── ExecutionItemProvider.java │ │ │ ├── InteractionEditPlugin.java │ │ │ ├── InteractionFragmentItemProvider.java │ │ │ ├── InteractionItemProvider.java │ │ │ ├── InteractionItemProviderAdapterFactory.java │ │ │ ├── InteractionUseItemProvider.java │ │ │ ├── MessageItemProvider.java │ │ │ ├── NamedElementItemProvider.java │ │ │ ├── OperandItemProvider.java │ │ │ ├── ParticipantItemProvider.java │ │ │ ├── ReturnMessageItemProvider.java │ │ │ └── StateInvariantItemProvider.java │ │ ├── org.obeonetwork.dsl.interaction.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ └── InteractionModelFile.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── interaction │ │ │ └── presentation │ │ │ ├── InteractionActionBarContributor.java │ │ │ ├── InteractionEditor.java │ │ │ └── InteractionEditorPlugin.java │ │ └── org.obeonetwork.dsl.interaction │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── interaction.aird │ │ ├── interaction.ecore │ │ └── interaction.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── interaction │ │ ├── CallMessage.java │ │ ├── CombinedFragment.java │ │ ├── CompoundEnd.java │ │ ├── CreateParticipantMessage.java │ │ ├── DestroyParticipantMessage.java │ │ ├── End.java │ │ ├── Execution.java │ │ ├── Interaction.java │ │ ├── InteractionFactory.java │ │ ├── InteractionFragment.java │ │ ├── InteractionPackage.java │ │ ├── InteractionUse.java │ │ ├── Message.java │ │ ├── NamedElement.java │ │ ├── Operand.java │ │ ├── Participant.java │ │ ├── ReturnMessage.java │ │ ├── StateInvariant.java │ │ ├── impl │ │ ├── CallMessageImpl.java │ │ ├── CombinedFragmentImpl.java │ │ ├── CompoundEndImpl.java │ │ ├── CreateParticipantMessageImpl.java │ │ ├── DestroyParticipantMessageImpl.java │ │ ├── EndImpl.java │ │ ├── ExecutionImpl.java │ │ ├── InteractionFactoryImpl.java │ │ ├── InteractionFragmentImpl.java │ │ ├── InteractionImpl.java │ │ ├── InteractionPackageImpl.java │ │ ├── InteractionUseImpl.java │ │ ├── MessageImpl.java │ │ ├── NamedElementImpl.java │ │ ├── OperandImpl.java │ │ ├── ParticipantImpl.java │ │ ├── ReturnMessageImpl.java │ │ └── StateInvariantImpl.java │ │ └── util │ │ ├── InteractionAdapterFactory.java │ │ ├── InteractionResourceFactoryImpl.java │ │ ├── InteractionResourceImpl.java │ │ └── InteractionSwitch.java ├── migration │ └── plugins │ │ └── org.obeonetwork.dsl.migration.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── models │ │ ├── entity │ │ │ ├── entities │ │ │ │ ├── before.entity │ │ │ │ └── expected.entity │ │ │ ├── migrationNotNeeded │ │ │ │ ├── before.entity │ │ │ │ └── expected.entity │ │ │ └── simple │ │ │ │ ├── before.entity │ │ │ │ └── expected.entity │ │ ├── environment │ │ │ └── field2literal │ │ │ │ ├── before.environment │ │ │ │ └── expected.environment │ │ └── soa │ │ │ ├── complet │ │ │ ├── before.soa │ │ │ └── expected.soa │ │ │ ├── securityapplication │ │ │ ├── before.soa │ │ │ └── expected.soa │ │ │ ├── simple │ │ │ ├── before.soa │ │ │ └── expected.soa │ │ │ └── subsystem │ │ │ ├── before.soa │ │ │ └── expected.soa │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── migration │ │ └── tests │ │ ├── EntityMigrationTest.java │ │ ├── EnvironmentMigrationTest.java │ │ ├── MigrationTest.java │ │ └── SoaMigrationTest.java ├── overview │ ├── features │ │ └── org.obeonetwork.dsl.feature.overview │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.overview.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ └── Root.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── overview │ │ │ └── provider │ │ │ ├── OverviewEditPlugin.java │ │ │ ├── OverviewItemProviderAdapterFactory.java │ │ │ └── RootItemProvider.java │ │ ├── org.obeonetwork.dsl.overview.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ ├── obj16 │ │ │ │ └── OverviewModelFile.gif │ │ │ │ └── wizban │ │ │ │ └── NewOverview.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── specific │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── overview │ │ │ │ └── editor │ │ │ │ └── actions │ │ │ │ └── ImportResourceAction.java │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── overview │ │ │ └── presentation │ │ │ ├── OverviewActionBarContributor.java │ │ │ ├── OverviewEditor.java │ │ │ ├── OverviewEditorPlugin.java │ │ │ └── OverviewModelWizard.java │ │ └── org.obeonetwork.dsl.overview │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── overview.ecore │ │ └── overview.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ └── overviewModelDef.exsd │ │ ├── specific │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── overview │ │ │ ├── OverviewModelDef.java │ │ │ ├── OverviewModelDefExtensionDescriptor.java │ │ │ └── OverviewModelDefRegistry.java │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── overview │ │ ├── OverviewFactory.java │ │ ├── OverviewPackage.java │ │ ├── Root.java │ │ ├── impl │ │ ├── OverviewFactoryImpl.java │ │ ├── OverviewPackageImpl.java │ │ └── RootImpl.java │ │ ├── migration │ │ └── OverviewMigrationHelper.java │ │ └── util │ │ ├── OverviewAdapterFactory.java │ │ ├── OverviewResourceFactoryImpl.java │ │ ├── OverviewResourceImpl.java │ │ └── OverviewSwitch.java ├── requirement │ ├── features │ │ └── org.obeonetwork.dsl.feature.requirement │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.requirement.doc │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── doc │ │ │ ├── ISD - Requirements tooling-toc.xml │ │ │ ├── ISD - Requirements tooling.html │ │ │ ├── ISD - Requirements tooling.textile │ │ │ └── pics │ │ │ │ ├── Create Requirement Wizard - Page1.png │ │ │ │ ├── Create Requirement Wizard - Page2.png │ │ │ │ ├── DecoratorsDiagram.png │ │ │ │ ├── DecoratorsModelExplorer.png │ │ │ │ ├── DecoratorsPreferences.png │ │ │ │ ├── Link Requirements Dialog.png │ │ │ │ ├── Linked Requirements View - Actions.png │ │ │ │ ├── Linked Requirements View - Create Action.png │ │ │ │ ├── Linked Requirements View - Edit Action.png │ │ │ │ ├── Linked Requirements View - Link Action.png │ │ │ │ ├── Linked Requirements View - No children requirements.png │ │ │ │ ├── Linked Requirements View - Show children requirements.png │ │ │ │ ├── Linked Requirements View - Unlink Action.png │ │ │ │ ├── Linked Requirements View - With children requirements.png │ │ │ │ ├── Linked Requirements View.png │ │ │ │ ├── Requirement Viewpoint Selection.png │ │ │ │ ├── Requirement Viewpoint.png │ │ │ │ ├── Requirements Editor.png │ │ │ │ ├── Requirements matrix creation.png │ │ │ │ ├── RequirementsTable.png │ │ │ │ ├── SafranRequirementModelCreated.png │ │ │ │ ├── SafranRequirementWizard01.png │ │ │ │ └── SafranRequirementWizard02.png │ │ ├── plugin.xml │ │ └── pom.xml │ │ ├── org.obeonetwork.dsl.requirement.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── Category.gif │ │ │ │ ├── Repository.gif │ │ │ │ ├── Requirement.gif │ │ │ │ └── System.gif │ │ ├── model │ │ │ ├── requirement-editor.components │ │ │ ├── requirement-editor.eefgen │ │ │ ├── requirement.components │ │ │ └── requirement.eefgen │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ ├── org │ │ │ │ └── obeonetwork │ │ │ │ │ └── dsl │ │ │ │ │ └── requirement │ │ │ │ │ ├── components │ │ │ │ │ ├── CategoryPropertiesEditionComponent.java │ │ │ │ │ ├── RepositoryPropertiesEditionComponent.java │ │ │ │ │ ├── RequirementAdvancedPropertiesEditionComponent.java │ │ │ │ │ ├── RequirementPropertiesEditionComponent.java │ │ │ │ │ └── RequirementRequirementPropertiesEditionComponent.java │ │ │ │ │ ├── parts │ │ │ │ │ ├── AdvancedPropertiesEditionPart.java │ │ │ │ │ ├── CategoryPropertiesEditionPart.java │ │ │ │ │ ├── RepositoryPropertiesEditionPart.java │ │ │ │ │ ├── RequirementPropertiesEditionPart.java │ │ │ │ │ ├── RequirementViewsRepository.java │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── AdvancedPropertiesEditionPartForm.java │ │ │ │ │ │ ├── CategoryPropertiesEditionPartForm.java │ │ │ │ │ │ ├── RepositoryPropertiesEditionPartForm.java │ │ │ │ │ │ └── RequirementPropertiesEditionPartForm.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AdvancedPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── CategoryPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── RepositoryPropertiesEditionPartImpl.java │ │ │ │ │ │ └── RequirementPropertiesEditionPartImpl.java │ │ │ │ │ └── providers │ │ │ │ │ ├── CategoryPropertiesEditionProvider.java │ │ │ │ │ ├── RepositoryPropertiesEditionProvider.java │ │ │ │ │ ├── RequirementEEFAdapterFactory.java │ │ │ │ │ ├── RequirementMessages.java │ │ │ │ │ ├── RequirementPropertiesEditionPartProvider.java │ │ │ │ │ ├── RequirementPropertiesEditionProvider.java │ │ │ │ │ ├── requirementMessages.properties │ │ │ │ │ └── requirementMessages_fr.properties │ │ │ └── requirement_properties.plugin.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── requirement │ │ │ ├── parts │ │ │ ├── TextWithButton.java │ │ │ └── impl │ │ │ │ └── CustomRequirementPropertiesEditionPartImpl.java │ │ │ ├── policies │ │ │ ├── CustomEditingPolicy.java │ │ │ └── CustomPropertiesEditingProvider.java │ │ │ ├── provider │ │ │ ├── CategoriesContainerItemProvider.java │ │ │ ├── CategoryItemProvider.java │ │ │ ├── NamedElementItemProvider.java │ │ │ ├── RepositoryItemProvider.java │ │ │ ├── RequirementEditPlugin.java │ │ │ ├── RequirementItemProvider.java │ │ │ ├── RequirementItemProviderAdapterFactory.java │ │ │ ├── SpecificResourceItemProviderAdapterFactory.java │ │ │ └── SpecificResourceSetItemProvider.java │ │ │ └── providers │ │ │ └── CustomRequirementPropertiesEditionPartProvider.java │ │ ├── org.obeonetwork.dsl.requirement.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ └── RequirementModelFile.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── requirement │ │ │ └── presentation │ │ │ ├── RequirementActionBarContributor.java │ │ │ ├── RequirementEditor.java │ │ │ └── RequirementEditorPlugin.java │ │ └── org.obeonetwork.dsl.requirement │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── requirement.aird │ │ ├── requirement.ecore │ │ └── requirement.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── requirement │ │ ├── CategoriesContainer.java │ │ ├── Category.java │ │ ├── NamedElement.java │ │ ├── Repository.java │ │ ├── Requirement.java │ │ ├── RequirementFactory.java │ │ ├── RequirementPackage.java │ │ ├── RequirementType.java │ │ ├── impl │ │ ├── CategoriesContainerImpl.java │ │ ├── CategoryImpl.java │ │ ├── NamedElementImpl.java │ │ ├── RepositoryImpl.java │ │ ├── RequirementFactoryImpl.java │ │ ├── RequirementImpl.java │ │ └── RequirementPackageImpl.java │ │ ├── spec │ │ └── RequirementSpec.java │ │ └── util │ │ ├── RequirementAdapterFactory.java │ │ ├── RequirementResourceFactoryImpl.java │ │ ├── RequirementResourceImpl.java │ │ ├── RequirementSwitch.java │ │ └── RequirementValidator.java ├── soa │ ├── features │ │ └── org.obeonetwork.dsl.feature.soa │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.soa.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── Library │ │ │ └── JavaPrimitiveTypes.library.soa │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── Binding.gif │ │ │ │ ├── Category.gif │ │ │ │ ├── Component.gif │ │ │ │ ├── Contact.gif │ │ │ │ ├── Contact.png │ │ │ │ ├── DTO.gif │ │ │ │ ├── DTORegistry.gif │ │ │ │ ├── Example.gif │ │ │ │ ├── Fault.gif │ │ │ │ ├── Flow.gif │ │ │ │ ├── ImplementationComponent.gif │ │ │ │ ├── Information.gif │ │ │ │ ├── Information.png │ │ │ │ ├── Input.gif │ │ │ │ ├── Interface.gif │ │ │ │ ├── License.gif │ │ │ │ ├── License.png │ │ │ │ ├── MediaType.gif │ │ │ │ ├── Operation.gif │ │ │ │ ├── OperationPublic.gif │ │ │ │ ├── OperationRest.gif │ │ │ │ ├── OperationSoap.gif │ │ │ │ ├── Output.gif │ │ │ │ ├── Pagination.gif │ │ │ │ ├── Parameter.gif │ │ │ │ ├── ParameterRestData.gif │ │ │ │ ├── PrimitiveType.gif │ │ │ │ ├── PropertiesExtension.gif │ │ │ │ ├── Property.gif │ │ │ │ ├── Reference.gif │ │ │ │ ├── Scope.gif │ │ │ │ ├── Securable.gif │ │ │ │ ├── SecurityApplication.gif │ │ │ │ ├── SecurityScheme.gif │ │ │ │ ├── SecuritySchemeFromService.gif │ │ │ │ ├── Server.gif │ │ │ │ ├── Server.png │ │ │ │ ├── Service.gif │ │ │ │ ├── ServiceDTO.gif │ │ │ │ ├── System.gif │ │ │ │ ├── Type.gif │ │ │ │ ├── Wire.gif │ │ │ │ └── key.gif │ │ ├── models │ │ │ ├── soa.components │ │ │ └── soa.eefgen │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ ├── org │ │ │ │ └── obeonetwork │ │ │ │ │ └── dsl │ │ │ │ │ └── soa │ │ │ │ │ ├── components │ │ │ │ │ ├── BindingBindingPropertiesEditionComponent.java │ │ │ │ │ ├── BindingPropertiesEditionComponent.java │ │ │ │ │ ├── ComponentComponentPropertiesEditionComponent.java │ │ │ │ │ ├── ComponentPropertiesEditionComponent.java │ │ │ │ │ ├── InterfaceInterface_PropertiesEditionComponent.java │ │ │ │ │ ├── InterfacePropertiesEditionComponent.java │ │ │ │ │ ├── OperationOperationPropertiesEditionComponent.java │ │ │ │ │ ├── OperationPropertiesEditionComponent.java │ │ │ │ │ ├── ParameterParameterPropertiesEditionComponent.java │ │ │ │ │ ├── ParameterPropertiesEditionComponent.java │ │ │ │ │ ├── ServicePropertiesEditionComponent.java │ │ │ │ │ ├── ServiceServicePropertiesEditionComponent.java │ │ │ │ │ ├── SystemPropertiesEditionComponent.java │ │ │ │ │ ├── SystemSystemPropertiesEditionComponent.java │ │ │ │ │ ├── WirePropertiesEditionComponent.java │ │ │ │ │ └── WireWirePropertiesEditionComponent.java │ │ │ │ │ ├── parts │ │ │ │ │ ├── BindingPropertiesEditionPart.java │ │ │ │ │ ├── ComponentPropertiesEditionPart.java │ │ │ │ │ ├── Interface_PropertiesEditionPart.java │ │ │ │ │ ├── OperationPropertiesEditionPart.java │ │ │ │ │ ├── ParameterPropertiesEditionPart.java │ │ │ │ │ ├── ServicePropertiesEditionPart.java │ │ │ │ │ ├── SoaViewsRepository.java │ │ │ │ │ ├── SystemPropertiesEditionPart.java │ │ │ │ │ ├── WirePropertiesEditionPart.java │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── BindingPropertiesEditionPartForm.java │ │ │ │ │ │ ├── ComponentPropertiesEditionPartForm.java │ │ │ │ │ │ ├── Interface_PropertiesEditionPartForm.java │ │ │ │ │ │ ├── OperationPropertiesEditionPartForm.java │ │ │ │ │ │ ├── ParameterPropertiesEditionPartForm.java │ │ │ │ │ │ ├── ServicePropertiesEditionPartForm.java │ │ │ │ │ │ ├── SystemPropertiesEditionPartForm.java │ │ │ │ │ │ └── WirePropertiesEditionPartForm.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── BindingPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── ComponentPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── Interface_PropertiesEditionPartImpl.java │ │ │ │ │ │ ├── OperationPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── ParameterPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── ServicePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── SystemPropertiesEditionPartImpl.java │ │ │ │ │ │ └── WirePropertiesEditionPartImpl.java │ │ │ │ │ └── providers │ │ │ │ │ ├── BindingPropertiesEditionProvider.java │ │ │ │ │ ├── ComponentPropertiesEditionProvider.java │ │ │ │ │ ├── Interface_PropertiesEditionProvider.java │ │ │ │ │ ├── OperationPropertiesEditionProvider.java │ │ │ │ │ ├── ParameterPropertiesEditionProvider.java │ │ │ │ │ ├── ServicePropertiesEditionProvider.java │ │ │ │ │ ├── SoaEEFAdapterFactory.java │ │ │ │ │ ├── SoaMessages.java │ │ │ │ │ ├── SoaPropertiesEditionPartProvider.java │ │ │ │ │ ├── SystemPropertiesEditionProvider.java │ │ │ │ │ ├── WirePropertiesEditionProvider.java │ │ │ │ │ ├── soaMessages.properties │ │ │ │ │ └── soaMessages_fr.properties │ │ │ └── soa_properties.plugin.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── soa │ │ │ ├── filters │ │ │ ├── BindingTabPropertiesEditionSection.java │ │ │ ├── ComponentTabPropertiesEditionSection.java │ │ │ ├── ImplementationComponentTabPropertiesEditionSection.java │ │ │ ├── InterfaceTabPropertiesEditionSection.java │ │ │ ├── OperationTabPropertiesEditionSection.java │ │ │ ├── ParameterTabPropertiesEditionSection.java │ │ │ ├── ServiceTabPropertiesEditionSection.java │ │ │ ├── SystemTabPropertiesEditionSection.java │ │ │ └── WireTabPropertiesEditionSection.java │ │ │ └── provider │ │ │ ├── BindingItemProvider.java │ │ │ ├── ComponentItemProvider.java │ │ │ ├── ContactItemProvider.java │ │ │ ├── ExampleItemProvider.java │ │ │ ├── FlowItemProvider.java │ │ │ ├── ImplementationComponentItemProvider.java │ │ │ ├── InformationItemProvider.java │ │ │ ├── InterfaceItemProvider.java │ │ │ ├── LicenseItemProvider.java │ │ │ ├── MediaTypeItemProvider.java │ │ │ ├── OperationItemProvider.java │ │ │ ├── ParameterItemProvider.java │ │ │ ├── ParameterRestDataItemProvider.java │ │ │ ├── PropertiesExtensionItemProvider.java │ │ │ ├── ScopeItemProvider.java │ │ │ ├── SecurableItemProvider.java │ │ │ ├── SecurityApplicationItemProvider.java │ │ │ ├── SecuritySchemeItemProvider.java │ │ │ ├── ServerItemProvider.java │ │ │ ├── ServiceItemProvider.java │ │ │ ├── SoaEditPlugin.java │ │ │ ├── SoaItemProviderAdapterFactory.java │ │ │ ├── SystemItemProvider.java │ │ │ └── WireItemProvider.java │ │ ├── org.obeonetwork.dsl.soa.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ ├── obj16 │ │ │ │ └── SoaModelFile.gif │ │ │ │ └── wizban │ │ │ │ └── NewSoa.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── soa │ │ │ └── presentation │ │ │ ├── SoaActionBarContributor.java │ │ │ ├── SoaEditor.java │ │ │ └── SoaEditorPlugin.java │ │ └── org.obeonetwork.dsl.soa │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.wst.validation.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── soa.aird │ │ ├── soa.ecore │ │ └── soa.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── soa │ │ ├── ApiKeyLocation.java │ │ ├── Binding.java │ │ ├── BindingKind.java │ │ ├── Component.java │ │ ├── Contact.java │ │ ├── Example.java │ │ ├── ExpositionKind.java │ │ ├── Flow.java │ │ ├── FlowType.java │ │ ├── HttpScheme.java │ │ ├── ImplementationComponent.java │ │ ├── Information.java │ │ ├── Interface.java │ │ ├── InterfaceKind.java │ │ ├── License.java │ │ ├── MediaType.java │ │ ├── Messages.java │ │ ├── Operation.java │ │ ├── OperationKind.java │ │ ├── Parameter.java │ │ ├── ParameterPassingMode.java │ │ ├── ParameterRestData.java │ │ ├── PropertiesExtension.java │ │ ├── Scope.java │ │ ├── Securable.java │ │ ├── SecurityApplication.java │ │ ├── SecurityScheme.java │ │ ├── SecuritySchemeType.java │ │ ├── Server.java │ │ ├── Service.java │ │ ├── SoaFactory.java │ │ ├── SoaPackage.java │ │ ├── SynchronizationKind.java │ │ ├── System.java │ │ ├── Verb.java │ │ ├── Wire.java │ │ ├── impl │ │ ├── BindingImpl.java │ │ ├── ComponentImpl.java │ │ ├── ContactImpl.java │ │ ├── ExampleImpl.java │ │ ├── FlowImpl.java │ │ ├── ImplementationComponentImpl.java │ │ ├── InformationImpl.java │ │ ├── InterfaceImpl.java │ │ ├── LicenseImpl.java │ │ ├── MediaTypeImpl.java │ │ ├── OperationImpl.java │ │ ├── ParameterImpl.java │ │ ├── ParameterRestDataImpl.java │ │ ├── PropertiesExtensionImpl.java │ │ ├── ScopeImpl.java │ │ ├── SecurableImpl.java │ │ ├── SecurityApplicationImpl.java │ │ ├── SecuritySchemeImpl.java │ │ ├── ServerImpl.java │ │ ├── ServiceImpl.java │ │ ├── SoaFactoryImpl.java │ │ ├── SoaPackageImpl.java │ │ ├── SystemImpl.java │ │ └── WireImpl.java │ │ ├── messages.properties │ │ ├── migration │ │ └── SoaMigrationHelper.java │ │ ├── services │ │ ├── ConstrainableElementService.java │ │ ├── HttpStatusService.java │ │ ├── Messages.java │ │ ├── PropertiesExtensionsService.java │ │ └── messages.properties │ │ ├── spec │ │ ├── ComponentSpec.java │ │ ├── InterfaceSpec.java │ │ ├── OperationSpec.java │ │ └── ServiceSpec.java │ │ └── util │ │ ├── SoaAdapterFactory.java │ │ ├── SoaResourceFactoryImpl.java │ │ ├── SoaResourceImpl.java │ │ └── SoaSwitch.java ├── statemachine │ ├── features │ │ └── org.obeonetwork.dsl.feature.statemachine │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── org.obeonetwork.dsl.statemachine.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── FinalState.gif │ │ │ │ ├── InitialState.gif │ │ │ │ ├── Region.gif │ │ │ │ ├── State.gif │ │ │ │ ├── StateMachine.gif │ │ │ │ ├── StateMachineDescription.gif │ │ │ │ └── Transition.gif │ │ ├── model │ │ │ ├── statemachine.components │ │ │ └── statemachine.eefgen │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ ├── org │ │ │ │ └── obeonetwork │ │ │ │ │ └── dsl │ │ │ │ │ └── statemachine │ │ │ │ │ ├── components │ │ │ │ │ ├── FinalStateFinalStatePropertiesEditionComponent.java │ │ │ │ │ ├── FinalStatePropertiesEditionComponent.java │ │ │ │ │ ├── InitialStateInitialStatePropertiesEditionComponent.java │ │ │ │ │ ├── InitialStatePropertiesEditionComponent.java │ │ │ │ │ ├── RegionPropertiesEditionComponent.java │ │ │ │ │ ├── RegionRegionPropertiesEditionComponent.java │ │ │ │ │ ├── StateMachinePropertiesEditionComponent.java │ │ │ │ │ ├── StateMachineStateMachinePropertiesEditionComponent.java │ │ │ │ │ ├── StatePropertiesEditionComponent.java │ │ │ │ │ ├── StateStatePropertiesEditionComponent.java │ │ │ │ │ ├── TransitionPropertiesEditionComponent.java │ │ │ │ │ └── TransitionTransitionPropertiesEditionComponent.java │ │ │ │ │ ├── parts │ │ │ │ │ ├── FinalStatePropertiesEditionPart.java │ │ │ │ │ ├── InitialStatePropertiesEditionPart.java │ │ │ │ │ ├── RegionPropertiesEditionPart.java │ │ │ │ │ ├── StateMachinePropertiesEditionPart.java │ │ │ │ │ ├── StatePropertiesEditionPart.java │ │ │ │ │ ├── StatemachineViewsRepository.java │ │ │ │ │ ├── TransitionPropertiesEditionPart.java │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── FinalStatePropertiesEditionPartForm.java │ │ │ │ │ │ ├── InitialStatePropertiesEditionPartForm.java │ │ │ │ │ │ ├── RegionPropertiesEditionPartForm.java │ │ │ │ │ │ ├── StateMachinePropertiesEditionPartForm.java │ │ │ │ │ │ ├── StatePropertiesEditionPartForm.java │ │ │ │ │ │ └── TransitionPropertiesEditionPartForm.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── FinalStatePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── InitialStatePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── RegionPropertiesEditionPartImpl.java │ │ │ │ │ │ ├── StateMachinePropertiesEditionPartImpl.java │ │ │ │ │ │ ├── StatePropertiesEditionPartImpl.java │ │ │ │ │ │ └── TransitionPropertiesEditionPartImpl.java │ │ │ │ │ └── providers │ │ │ │ │ ├── FinalStatePropertiesEditionProvider.java │ │ │ │ │ ├── InitialStatePropertiesEditionProvider.java │ │ │ │ │ ├── RegionPropertiesEditionProvider.java │ │ │ │ │ ├── StateMachinePropertiesEditionProvider.java │ │ │ │ │ ├── StatePropertiesEditionProvider.java │ │ │ │ │ ├── StatemachineEEFAdapterFactory.java │ │ │ │ │ ├── StatemachineMessages.java │ │ │ │ │ ├── StatemachinePropertiesEditionPartProvider.java │ │ │ │ │ ├── TransitionPropertiesEditionProvider.java │ │ │ │ │ ├── statemachineMessages.properties │ │ │ │ │ └── statemachineMessages_fr.properties │ │ │ └── statemachine_properties.plugin.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── statemachine │ │ │ ├── filters │ │ │ ├── FinalStateTabPropertiesEditionSection.java │ │ │ ├── InitialStateTabPropertiesEditionSection.java │ │ │ ├── RegionTabPropertiesEditionSection.java │ │ │ ├── StateMachineDescriptionTabPropertiesEditionSection.java │ │ │ ├── StateMachineTabPropertiesEditionSection.java │ │ │ ├── StateTabPropertiesEditionSection.java │ │ │ └── TransitionTabPropertiesEditionSection.java │ │ │ └── provider │ │ │ ├── AbstractStateItemProvider.java │ │ │ ├── FinalStateItemProvider.java │ │ │ ├── InitialStateItemProvider.java │ │ │ ├── NamedElementItemProvider.java │ │ │ ├── RegionItemProvider.java │ │ │ ├── StateItemProvider.java │ │ │ ├── StateMachineDescriptionItemProvider.java │ │ │ ├── StateMachineEditPlugin.java │ │ │ ├── StateMachineItemProvider.java │ │ │ ├── StateMachineItemProviderAdapterFactory.java │ │ │ └── TransitionItemProvider.java │ │ ├── org.obeonetwork.dsl.statemachine.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ └── StateMachineModelFile.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── statemachine │ │ │ └── presentation │ │ │ ├── StateMachineActionBarContributor.java │ │ │ ├── StateMachineEditor.java │ │ │ └── StateMachineEditorPlugin.java │ │ └── org.obeonetwork.dsl.statemachine │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ ├── statemachine.ecore │ │ └── statemachine.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── statemachine │ │ ├── AbstractState.java │ │ ├── FinalState.java │ │ ├── InitialState.java │ │ ├── NamedElement.java │ │ ├── Region.java │ │ ├── State.java │ │ ├── StateMachine.java │ │ ├── StateMachineDescription.java │ │ ├── StateMachineFactory.java │ │ ├── StateMachinePackage.java │ │ ├── Transition.java │ │ ├── impl │ │ ├── AbstractStateImpl.java │ │ ├── FinalStateImpl.java │ │ ├── InitialStateImpl.java │ │ ├── NamedElementImpl.java │ │ ├── RegionImpl.java │ │ ├── StateImpl.java │ │ ├── StateMachineDescriptionImpl.java │ │ ├── StateMachineFactoryImpl.java │ │ ├── StateMachineImpl.java │ │ ├── StateMachinePackageImpl.java │ │ └── TransitionImpl.java │ │ └── util │ │ ├── StateMachineAdapterFactory.java │ │ ├── StateMachineResourceFactoryImpl.java │ │ ├── StateMachineResourceImpl.java │ │ └── StateMachineSwitch.java └── technicalid │ ├── features │ └── org.obeonetwork.dsl.feature.technicalid │ │ ├── .project │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ └── pom.xml │ └── plugins │ ├── org.obeonetwork.dsl.technicalid.edit │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── icons │ │ └── full │ │ │ └── obj16 │ │ │ └── Identifiable.gif │ ├── plugin.properties │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── technicalid │ │ └── provider │ │ ├── IdentifiableItemProvider.java │ │ ├── TechnicalIDEditPlugin.java │ │ └── TechnicalIDItemProviderAdapterFactory.java │ └── org.obeonetwork.dsl.technicalid │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── model │ ├── technicalid.ecore │ └── technicalid.genmodel │ ├── plugin.properties │ ├── plugin.xml │ ├── pom.xml │ ├── representations.aird │ └── src │ └── org │ └── obeonetwork │ └── dsl │ └── technicalid │ ├── Identifiable.java │ ├── TechnicalIDFactory.java │ ├── TechnicalIDPackage.java │ ├── impl │ ├── IdentifiableImpl.java │ ├── TechnicalIDFactoryImpl.java │ └── TechnicalIDPackageImpl.java │ └── util │ ├── CopierUtils.java │ ├── TechnicalIDAdapterFactory.java │ ├── TechnicalIDResourceFactoryImpl.java │ ├── TechnicalIDResourceImpl.java │ └── TechnicalIDSwitch.java ├── releng ├── jar-for-github-publish │ ├── org.eclipse.emf.cdo.common_4.20.1.v20240528-2150.jar │ ├── org.eclipse.emf.cdo_4.21.0.v20240528-2150.jar │ ├── org.eclipse.net4j.util_3.21.1.v20240528-2150.jar │ ├── org.obeonetwork.dsl.entity.edit_5.1.1.202510180801.jar │ ├── org.obeonetwork.dsl.entity_5.1.1.202510180801.jar │ ├── org.obeonetwork.dsl.environment.edit_5.1.1.202510180801.jar │ ├── org.obeonetwork.dsl.environment_5.1.1.202510180801.jar │ ├── org.obeonetwork.dsl.technicalid.edit_5.1.1.202510180801.jar │ └── org.obeonetwork.dsl.technicalid_5.1.1.202510180801.jar ├── org.obeonetwork.dsl.informationsystem.metamodels.feature │ ├── .project │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── pom.xml ├── org.obeonetwork.informationsystem.design.repository │ ├── .project │ ├── category.xml │ ├── index.html │ ├── pom.xml │ └── web │ │ ├── site.css │ │ └── site.xsl ├── org.obeonetwork.informationsystem.parent │ ├── .project │ └── pom.xml └── org.obeonetwork.is.license │ ├── .project │ ├── build.properties │ ├── epl-v20.html │ ├── feature.properties │ ├── feature.xml │ ├── license.html │ └── pom.xml ├── reversers ├── database-synchroniser │ ├── features │ │ ├── liquibase.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ └── org.obeonetwork.dsl.database.synchronizer │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ └── plugins │ │ ├── liquibase │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── license.html │ │ ├── plugin.properties │ │ └── pom.xml │ │ ├── org.obeonetwork.dsl.database.compare.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ └── obj16 │ │ │ │ ├── .directory │ │ │ │ ├── AddColumnChange.gif │ │ │ │ ├── AddConstraint.gif │ │ │ │ ├── AddForeignKey.gif │ │ │ │ ├── AddIndex.gif │ │ │ │ ├── AddPrimaryKey.gif │ │ │ │ ├── AddSchema.gif │ │ │ │ ├── AddSequence.gif │ │ │ │ ├── AddTable.gif │ │ │ │ ├── AddView.gif │ │ │ │ ├── AlterSchema.gif │ │ │ │ ├── AlterTable.gif │ │ │ │ ├── AlterView.gif │ │ │ │ ├── DatabaseChangeSet.gif │ │ │ │ ├── RemoveColumnChange.gif │ │ │ │ ├── RemoveConstraint.gif │ │ │ │ ├── RemoveForeignKey.gif │ │ │ │ ├── RemoveIndex.gif │ │ │ │ ├── RemovePrimaryKey.gif │ │ │ │ ├── RemoveSchema.gif │ │ │ │ ├── RemoveSequence.gif │ │ │ │ ├── RemoveTable.gif │ │ │ │ ├── RemoveView.gif │ │ │ │ ├── RenameColumnChange.gif │ │ │ │ ├── RenameSchemaChange.gif │ │ │ │ ├── RenameTableChange.gif │ │ │ │ ├── RenameViewChange.gif │ │ │ │ ├── SchemaChange.gif │ │ │ │ ├── UpdateColumnChange.gif │ │ │ │ ├── UpdateColumnCommentChange.gif │ │ │ │ ├── UpdateConstraint.gif │ │ │ │ ├── UpdateForeignKey.gif │ │ │ │ ├── UpdateIndex.gif │ │ │ │ ├── UpdatePrimaryKey.gif │ │ │ │ ├── UpdateSchemaCommentChange.gif │ │ │ │ ├── UpdateSequence.gif │ │ │ │ ├── UpdateTableCommentChange.gif │ │ │ │ ├── UpdateViewCommentChange.gif │ │ │ │ ├── UpdateViewQueryChange.gif │ │ │ │ ├── add.gif │ │ │ │ ├── remove.gif │ │ │ │ └── update.gif │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-spec │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── database │ │ │ │ └── dbevolution │ │ │ │ └── provider │ │ │ │ └── match │ │ │ │ └── CompareItemProviderAdapterFactoryForDatabase.java │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ └── dbevolution │ │ │ └── provider │ │ │ ├── AddColumnChangeItemProvider.java │ │ │ ├── AddConstraintItemProvider.java │ │ │ ├── AddForeignKeyItemProvider.java │ │ │ ├── AddIndexItemProvider.java │ │ │ ├── AddPrimaryKeyItemProvider.java │ │ │ ├── AddSchemaItemProvider.java │ │ │ ├── AddSequenceItemProvider.java │ │ │ ├── AddTableItemProvider.java │ │ │ ├── AddViewItemProvider.java │ │ │ ├── AlterSchemaItemProvider.java │ │ │ ├── AlterTableItemProvider.java │ │ │ ├── AlterViewItemProvider.java │ │ │ ├── ColumnChangeItemProvider.java │ │ │ ├── ConstraintChangeItemProvider.java │ │ │ ├── DBDiffItemProvider.java │ │ │ ├── DatabaseChangeSetItemProvider.java │ │ │ ├── DbevolutionEditPlugin.java │ │ │ ├── DbevolutionItemProviderAdapterFactory.java │ │ │ ├── ForeignKeyChangeItemProvider.java │ │ │ ├── IndexChangeItemProvider.java │ │ │ ├── PrimaryKeyChangeItemProvider.java │ │ │ ├── RemoveColumnChangeItemProvider.java │ │ │ ├── RemoveConstraintItemProvider.java │ │ │ ├── RemoveForeignKeyItemProvider.java │ │ │ ├── RemoveIndexItemProvider.java │ │ │ ├── RemovePrimaryKeyItemProvider.java │ │ │ ├── RemoveSchemaItemProvider.java │ │ │ ├── RemoveSequenceItemProvider.java │ │ │ ├── RemoveTableItemProvider.java │ │ │ ├── RemoveViewItemProvider.java │ │ │ ├── RenameColumnChangeItemProvider.java │ │ │ ├── RenameSchemaChangeItemProvider.java │ │ │ ├── RenameTableChangeItemProvider.java │ │ │ ├── RenameViewChangeItemProvider.java │ │ │ ├── SchemaChangeItemProvider.java │ │ │ ├── SequenceChangeItemProvider.java │ │ │ ├── TableChangeItemProvider.java │ │ │ ├── UpdateColumnChangeItemProvider.java │ │ │ ├── UpdateColumnCommentChangeItemProvider.java │ │ │ ├── UpdateConstraintItemProvider.java │ │ │ ├── UpdateForeignKeyItemProvider.java │ │ │ ├── UpdateIndexItemProvider.java │ │ │ ├── UpdatePrimaryKeyItemProvider.java │ │ │ ├── UpdateSchemaCommentChangeItemProvider.java │ │ │ ├── UpdateSequenceItemProvider.java │ │ │ ├── UpdateTableCommentChangeItemProvider.java │ │ │ ├── UpdateViewCommentChangeItemProvider.java │ │ │ ├── UpdateViewQueryChangeItemProvider.java │ │ │ └── ViewChangeItemProvider.java │ │ ├── org.obeonetwork.dsl.database.compare.tests │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.acceleo │ │ ├── build.properties │ │ ├── data │ │ │ ├── HOWTO.txt │ │ │ ├── add-column │ │ │ │ ├── all.sql │ │ │ │ ├── comparison.xmi │ │ │ │ ├── dbevolution.xmi │ │ │ │ ├── left.database │ │ │ │ └── right.database │ │ │ ├── add-schema │ │ │ │ ├── comparison.xmi │ │ │ │ ├── dbevolution.xmi │ │ │ │ ├── left.database │ │ │ │ └── right.database │ │ │ ├── column-modification │ │ │ │ ├── FIXME-set-nullable-and-change-type │ │ │ │ │ ├── all.sql │ │ │ │ │ ├── comparison.xmi │ │ │ │ │ ├── dbevolution.xmi │ │ │ │ │ ├── left.database │ │ │ │ │ └── right.database │ │ │ │ ├── change-default-value │ │ │ │ │ ├── all.sql │ │ │ │ │ ├── comparison.xmi │ │ │ │ │ ├── dbevolution.xmi │ │ │ │ │ ├── left.database │ │ │ │ │ └── right.database │ │ │ │ ├── change-length │ │ │ │ │ ├── all.sql │ │ │ │ │ ├── comparison.xmi │ │ │ │ │ ├── dbevolution.xmi │ │ │ │ │ ├── left.database │ │ │ │ │ └── right.database │ │ │ │ ├── change-type │ │ │ │ │ ├── all.sql │ │ │ │ │ ├── comparison.xmi │ │ │ │ │ ├── dbevolution.xmi │ │ │ │ │ ├── left.database │ │ │ │ │ └── right.database │ │ │ │ ├── set-nullable │ │ │ │ │ ├── all.sql │ │ │ │ │ ├── comparison.xmi │ │ │ │ │ ├── dbevolution.xmi │ │ │ │ │ ├── left.database │ │ │ │ │ └── right.database │ │ │ │ └── set-type-boolean │ │ │ │ │ ├── all.sql │ │ │ │ │ ├── comparison.xmi │ │ │ │ │ ├── dbevolution.xmi │ │ │ │ │ ├── left.database │ │ │ │ │ └── right.database │ │ │ ├── safran-526 │ │ │ │ ├── all.sql │ │ │ │ ├── comparison.xmi │ │ │ │ ├── dbevolution.xmi │ │ │ │ ├── left.database │ │ │ │ └── right.database │ │ │ ├── simple-additions │ │ │ │ ├── all.sql │ │ │ │ ├── comparison.xmi │ │ │ │ ├── dbevolution.xmi │ │ │ │ ├── left.database │ │ │ │ └── right.database │ │ │ ├── unchanged │ │ │ │ ├── comparison.xmi │ │ │ │ ├── dbevolution.xmi │ │ │ │ ├── left.database │ │ │ │ └── right.database │ │ │ └── very-simple-additions │ │ │ │ ├── comparison.xmi │ │ │ │ ├── dbevolution.xmi │ │ │ │ ├── left.database │ │ │ │ └── right.database │ │ ├── models │ │ │ ├── 01-simple │ │ │ │ ├── 1-input.database │ │ │ │ ├── 2-input.database │ │ │ │ ├── 3-expected-comparison.xmi │ │ │ │ ├── 3-expected.emfdiff │ │ │ │ └── result.txt │ │ │ ├── 02-simple-techidchanged │ │ │ │ ├── 1-input.database │ │ │ │ ├── 2-input.database │ │ │ │ ├── 3-expected.emfdiff │ │ │ │ └── result.txt │ │ │ ├── 03-add-schema │ │ │ │ ├── 1-input.database │ │ │ │ ├── 2-input.database │ │ │ │ ├── 3-expected.emfdiff │ │ │ │ └── result.txt │ │ │ ├── 04-remove-schema │ │ │ │ ├── 1-input.database │ │ │ │ ├── 2-input.database │ │ │ │ ├── 3-expected.emfdiff │ │ │ │ └── result.txt │ │ │ ├── 05-complet │ │ │ │ ├── 1-input.database │ │ │ │ ├── 2-input.database │ │ │ │ ├── 3-expected.emfdiff │ │ │ │ └── result.txt │ │ │ ├── 06-complet2 │ │ │ │ ├── 1-input.database │ │ │ │ ├── 2-input.database │ │ │ │ ├── 3-expected.emfdiff │ │ │ │ └── result.txt │ │ │ ├── 07-column-type-changed │ │ │ │ ├── 1-input.database │ │ │ │ ├── 2-input.database │ │ │ │ ├── 3-expected.emfdiff │ │ │ │ └── result.txt │ │ │ └── 08-move-element │ │ │ │ ├── 1-input.database │ │ │ │ ├── 2-input.database │ │ │ │ ├── 3-expected.emfdiff │ │ │ │ └── result.txt │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ └── compare │ │ │ └── tests │ │ │ ├── AbstractDatabaseCompareTest.java │ │ │ ├── AllDatabaseCompareTests.java │ │ │ ├── DatabaseCompareAbstractTestSuite.java │ │ │ ├── SimpleTests.java │ │ │ ├── comparison │ │ │ ├── DatabaseComparisonTest.java │ │ │ ├── DatabaseComparisonTestSuite.java │ │ │ └── ISMatchEngineFactoryTest.java │ │ │ ├── gen │ │ │ ├── files │ │ │ │ ├── comparisonFile.mtl │ │ │ │ └── generate.mtl │ │ │ ├── main │ │ │ │ ├── Generate.java │ │ │ │ └── generate.mtl │ │ │ └── services │ │ │ │ ├── UtilServices.java │ │ │ │ └── utilServices.mtl │ │ │ ├── generation │ │ │ ├── DatabaseEvolutionScriptGenerationTest.java │ │ │ └── DatabaseEvolutionScriptGenerationTestSuite.java │ │ │ ├── transformation │ │ │ ├── DatabaseTransformationTest.java │ │ │ └── DatabaseTransformationTestSuite.java │ │ │ └── utils │ │ │ ├── EMFCompareUtils.java │ │ │ ├── EMFUtils.java │ │ │ ├── FilesWrapper.java │ │ │ ├── LabeledFunction.java │ │ │ └── ResourceWrapper.java │ │ ├── org.obeonetwork.dsl.database.compare │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── dbevolution.ecore │ │ │ ├── dbevolution.ecorediag │ │ │ └── dbevolution.genmodel │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-spec │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── database │ │ │ │ └── compare │ │ │ │ ├── Activator.java │ │ │ │ ├── DataBaseCompareUtil.java │ │ │ │ └── extensions │ │ │ │ ├── builders │ │ │ │ ├── ChangeBuilder.java │ │ │ │ ├── ColumnChangeBuilder.java │ │ │ │ ├── ConstraintChangeBuilder.java │ │ │ │ ├── ForeignKeyChangeBuilder.java │ │ │ │ ├── ForeignKeyElementChangeBuilder.java │ │ │ │ ├── IndexChangeBuilder.java │ │ │ │ ├── IndexElementChangeBuilder.java │ │ │ │ ├── PrimaryKeyChangeBuilder.java │ │ │ │ ├── SchemaChangeBuilder.java │ │ │ │ ├── SequenceChangeBuilder.java │ │ │ │ ├── TableChangeBuilder.java │ │ │ │ ├── TypeInstanceChangeBuilder.java │ │ │ │ └── ViewChangeBuilder.java │ │ │ │ ├── match │ │ │ │ ├── DatabaseEObjectMatcherProvider.java │ │ │ │ └── DatabaseMatchEngineFactory.java │ │ │ │ ├── policy │ │ │ │ └── DependenciesLoadOnDemandPolicy.java │ │ │ │ ├── processor │ │ │ │ ├── DatabaseDiffExtension.java │ │ │ │ └── DatabasePostProcessor.java │ │ │ │ └── services │ │ │ │ ├── DatabaseCompareService.java │ │ │ │ └── DiffContentService.java │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ ├── compare │ │ │ └── DbMerger.java │ │ │ └── dbevolution │ │ │ ├── AddColumnChange.java │ │ │ ├── AddConstraint.java │ │ │ ├── AddForeignKey.java │ │ │ ├── AddIndex.java │ │ │ ├── AddPrimaryKey.java │ │ │ ├── AddSchema.java │ │ │ ├── AddSequence.java │ │ │ ├── AddTable.java │ │ │ ├── AddView.java │ │ │ ├── AlterSchema.java │ │ │ ├── AlterTable.java │ │ │ ├── AlterView.java │ │ │ ├── ColumnChange.java │ │ │ ├── ConstraintChange.java │ │ │ ├── DBDiff.java │ │ │ ├── DatabaseChangeSet.java │ │ │ ├── DbevolutionFactory.java │ │ │ ├── DbevolutionPackage.java │ │ │ ├── ForeignKeyChange.java │ │ │ ├── IndexChange.java │ │ │ ├── PrimaryKeyChange.java │ │ │ ├── RemoveColumnChange.java │ │ │ ├── RemoveConstraint.java │ │ │ ├── RemoveForeignKey.java │ │ │ ├── RemoveIndex.java │ │ │ ├── RemovePrimaryKey.java │ │ │ ├── RemoveSchema.java │ │ │ ├── RemoveSequence.java │ │ │ ├── RemoveTable.java │ │ │ ├── RemoveView.java │ │ │ ├── RenameColumnChange.java │ │ │ ├── RenameSchemaChange.java │ │ │ ├── RenameTableChange.java │ │ │ ├── RenameViewChange.java │ │ │ ├── SchemaChange.java │ │ │ ├── SequenceChange.java │ │ │ ├── TableChange.java │ │ │ ├── UpdateColumnChange.java │ │ │ ├── UpdateColumnCommentChange.java │ │ │ ├── UpdateConstraint.java │ │ │ ├── UpdateForeignKey.java │ │ │ ├── UpdateIndex.java │ │ │ ├── UpdatePrimaryKey.java │ │ │ ├── UpdateSchemaCommentChange.java │ │ │ ├── UpdateSequence.java │ │ │ ├── UpdateTableCommentChange.java │ │ │ ├── UpdateViewCommentChange.java │ │ │ ├── UpdateViewQueryChange.java │ │ │ ├── ViewChange.java │ │ │ ├── impl │ │ │ ├── AddColumnChangeImpl.java │ │ │ ├── AddConstraintImpl.java │ │ │ ├── AddForeignKeyImpl.java │ │ │ ├── AddIndexImpl.java │ │ │ ├── AddPrimaryKeyImpl.java │ │ │ ├── AddSchemaImpl.java │ │ │ ├── AddSequenceImpl.java │ │ │ ├── AddTableImpl.java │ │ │ ├── AddViewImpl.java │ │ │ ├── AlterSchemaImpl.java │ │ │ ├── AlterTableImpl.java │ │ │ ├── AlterViewImpl.java │ │ │ ├── ColumnChangeImpl.java │ │ │ ├── ConstraintChangeImpl.java │ │ │ ├── DBDiffImpl.java │ │ │ ├── DatabaseChangeSetImpl.java │ │ │ ├── DbevolutionFactoryImpl.java │ │ │ ├── DbevolutionPackageImpl.java │ │ │ ├── ForeignKeyChangeImpl.java │ │ │ ├── IndexChangeImpl.java │ │ │ ├── PrimaryKeyChangeImpl.java │ │ │ ├── RemoveColumnChangeImpl.java │ │ │ ├── RemoveConstraintImpl.java │ │ │ ├── RemoveForeignKeyImpl.java │ │ │ ├── RemoveIndexImpl.java │ │ │ ├── RemovePrimaryKeyImpl.java │ │ │ ├── RemoveSchemaImpl.java │ │ │ ├── RemoveSequenceImpl.java │ │ │ ├── RemoveTableImpl.java │ │ │ ├── RemoveViewImpl.java │ │ │ ├── RenameColumnChangeImpl.java │ │ │ ├── RenameSchemaChangeImpl.java │ │ │ ├── RenameTableChangeImpl.java │ │ │ ├── RenameViewChangeImpl.java │ │ │ ├── SchemaChangeImpl.java │ │ │ ├── SequenceChangeImpl.java │ │ │ ├── TableChangeImpl.java │ │ │ ├── UpdateColumnChangeImpl.java │ │ │ ├── UpdateColumnCommentChangeImpl.java │ │ │ ├── UpdateConstraintImpl.java │ │ │ ├── UpdateForeignKeyImpl.java │ │ │ ├── UpdateIndexImpl.java │ │ │ ├── UpdatePrimaryKeyImpl.java │ │ │ ├── UpdateSchemaCommentChangeImpl.java │ │ │ ├── UpdateSequenceImpl.java │ │ │ ├── UpdateTableCommentChangeImpl.java │ │ │ ├── UpdateViewCommentChangeImpl.java │ │ │ ├── UpdateViewQueryChangeImpl.java │ │ │ └── ViewChangeImpl.java │ │ │ └── util │ │ │ ├── DbevolutionAdapterFactory.java │ │ │ └── DbevolutionSwitch.java │ │ ├── org.obeonetwork.dsl.database.gen.common.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── input │ │ │ ├── 00-full-mariadb │ │ │ │ ├── 1-input.database │ │ │ │ ├── 2-input.database │ │ │ │ └── My.database │ │ │ ├── 00-full-mysql │ │ │ │ ├── 1-input.database │ │ │ │ ├── 2-input.database │ │ │ │ └── My.database │ │ │ ├── 00-full-oracle │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 00-full-postgresql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 01-simple │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 02-simple-techidchanged │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 03-add-schema-oracle │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 03-add-schema │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 04-remove-schema │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 05-complet │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 06-complet2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 07-column-type-changed │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 08-move-element │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 09-createH2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 10-createPostgres │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 11-createSqlServer │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 12-update-view-query │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 13-update-view-query2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 14-updatecolumn-pgsql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 15-addIndex-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 16-addSequence-oracle │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 17-addTable-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 18-AddView-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 19-addTableWithForeign-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 20-dropTable-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 21-renameTable-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 22-setCommentOnTable-oracle │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 23-addDateColumn-oracle │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 24-addEnumColumn-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 25-deleteColumn-oracle │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 26-renameColumn-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 27-changeColumnDataType-h2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 28-changeColumnTypePrecision-h2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 29-changeColumnTypeLength-h2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 30-changeColumnAddNullable-h2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 31-changeColumnAddNonNull-h2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 33-changeColumnDefaultValue-h2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 34-addPrimaryKeyMultipleColumn-h2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 35-addTableWithComposedPrimaryKey │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 36-addPrimaryComposedMixed-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 37-changeCommnetOnColumns-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 38-representativeModel │ │ │ │ ├── referentiel.entity │ │ │ │ ├── representations.aird │ │ │ │ ├── video-h2.database │ │ │ │ ├── video-mld.database │ │ │ │ ├── video-mysql.database │ │ │ │ ├── video-oracle.database │ │ │ │ └── video-postgres.database │ │ │ ├── 39-dropPrimaryKey-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 40-updatePrimKeys-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 41-dropContraint-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 42-constraintUpdate-h2 │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 43-dropForeingKey_postgres │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 44-updateForeignKey-postgres │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 45-dropIndex-oracle │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 46-updateIndex-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 47-dropSequence-oracle │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 48-updateSequenceName-oracle │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 49-updateSequenceProps-oracle │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ ├── 50-dropView-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ │ └── 51-updateView-mysql │ │ │ │ ├── 1-input.database │ │ │ │ └── 2-input.database │ │ ├── license.html │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ └── gen │ │ │ └── common │ │ │ └── tests │ │ │ └── AbstractGenerationTest.java │ │ ├── org.obeonetwork.dsl.database.gen.common │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ └── gen │ │ │ └── common │ │ │ ├── Activator.java │ │ │ └── services │ │ │ ├── DatabaseServices.java │ │ │ ├── StatusUtils.java │ │ │ ├── TypesServices.java │ │ │ └── UtilServices.java │ │ ├── org.obeonetwork.dsl.database.liquibasegen.test │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── input │ │ │ ├── 03-add-schema-oracle │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 03-add-schema │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 15-addIndex-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 16-addSequence-oracle │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 17-addTable-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 18-AddView-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 19-addTableWithForeign-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 20-dropTable-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 21-renameTable-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 22-setCommentOnTable-oracle │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 23-addDateColumn-oracle │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 24-addEnumColumn-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 25-deleteColumn-oracle │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 26-renameColumn-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 27-changeColumnDataType-h2 │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 28-changeColumnTypePrecision-h2 │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 29-changeColumnTypeLength-h2 │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 30-changeColumnAddNullable-h2 │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 31-changeColumnAddNonNull-h2 │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 33-changeColumnDefaultValue-h2 │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 34-addPrimaryKeyMultipleColumn-h2 │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 35-addTableWithComposedPrimaryKey │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 36-addPrimaryComposedMixed-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 37-changeCommnetOnColumns-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 38-representativeModel │ │ │ │ ├── h2-expected │ │ │ │ │ └── run.changelog.xml │ │ │ │ ├── mysql-expected │ │ │ │ │ └── run.changelog.xml │ │ │ │ ├── oracle-expected │ │ │ │ │ └── run.changelog.xml │ │ │ │ └── postgres-expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 39-dropPrimaryKey-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 40-updatePrimKeys-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 41-dropContraint-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 42-constraintUpdate-h2 │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 43-dropForeingKey_postgres │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 44-updateForeignKey-postgres │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 45-dropIndex-oracle │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 46-updateIndex-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 47-dropSequence-oracle │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 48-updateSequenceName-oracle │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 49-updateSequenceProps-oracle │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ ├── 50-dropView-mysql │ │ │ │ └── expected │ │ │ │ │ └── run.changelog.xml │ │ │ └── 51-updateView-mysql │ │ │ │ └── expected │ │ │ │ └── run.changelog.xml │ │ ├── pom.xml │ │ ├── src │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── database │ │ │ │ └── liquibasegen │ │ │ │ ├── changelogs │ │ │ │ ├── AbstractLiquibaseTest.java │ │ │ │ └── LiquibaseGenTest.java │ │ │ │ ├── service │ │ │ │ ├── DefaultTypeMatcherTest.java │ │ │ │ └── SQLServiceTest.java │ │ │ │ └── update │ │ │ │ ├── AbstractLiquibaseUpdateTest.java │ │ │ │ ├── H2LiquibaseUpdateTest.java │ │ │ │ ├── MariaDBLiquibaseUpdateTest.java │ │ │ │ ├── MySQLLiquibaseUpdateTest.java │ │ │ │ ├── OracleLiquibaseUpdateTest.java │ │ │ │ ├── PostgresqlLiquibaseUpdateTest.java │ │ │ │ └── SQLServerLiquibaseUpdateTest.java │ │ └── update │ │ │ ├── 00-add-schema │ │ │ └── run.changelog.xml │ │ │ ├── 01-create-table │ │ │ └── run.changelog.xml │ │ │ ├── 02-primary-key │ │ │ └── run.changelog.xml │ │ │ ├── 03-foreign-key │ │ │ └── run.changelog.xml │ │ │ ├── 04-sequence │ │ │ └── run.changelog.xml │ │ │ ├── 05-index │ │ │ └── run.changelog.xml │ │ │ ├── update-clean-utils │ │ │ ├── run.mssql.schema.clean.changelog.xml │ │ │ ├── run.oracle.tables.clean.changelog.xml │ │ │ └── run.schema.clean.changelog.xml │ │ │ ├── update-mssql │ │ │ ├── 00-add-schema │ │ │ │ └── run.changelog.xml │ │ │ ├── 01-create-table │ │ │ │ └── run.changelog.xml │ │ │ ├── 02-primary-key │ │ │ │ └── run.changelog.xml │ │ │ ├── 03-foreign-key │ │ │ │ └── run.changelog.xml │ │ │ ├── 04-sequence │ │ │ │ └── run.changelog.xml │ │ │ └── 05-index │ │ │ │ └── run.changelog.xml │ │ │ └── update-oracle │ │ │ ├── 01-create-table │ │ │ └── run.changelog.xml │ │ │ ├── 02-primary-key │ │ │ └── run.changelog.xml │ │ │ ├── 03-foreign-key │ │ │ └── run.changelog.xml │ │ │ ├── 04-sequence │ │ │ └── run.changelog.xml │ │ │ └── 05-index │ │ │ └── run.changelog.xml │ │ ├── org.obeonetwork.dsl.database.liquibasegen │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ └── liquibasegen │ │ │ ├── Activator.java │ │ │ ├── ChangeLogBuilder.java │ │ │ ├── LiquibaseGenerator.java │ │ │ ├── LiquibaseUpdater.java │ │ │ ├── ProjectResourceAccessor.java │ │ │ ├── handlers │ │ │ ├── ChangelogHandler.java │ │ │ ├── Messages.java │ │ │ └── messages.properties │ │ │ ├── service │ │ │ ├── DefaultTypeMatcher.java │ │ │ ├── DefaultValueConfigDelegate.java │ │ │ ├── GenServices.java │ │ │ └── SQLService.java │ │ │ └── ui │ │ │ ├── ConnectionInformationDialog.java │ │ │ ├── LiquibaseGenerationOptionsDialog.java │ │ │ └── TestFileExtension.java │ │ ├── org.obeonetwork.dsl.database.sqlgen.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── brokenTests │ │ │ ├── org.obeonetwork.dsl.database.sqlgen.tests.compare │ │ │ │ ├── ColumnChangeTestDisabled.java │ │ │ │ ├── ConstraintChangeTestDisabled.java │ │ │ │ ├── ForeignKeyChangeTestDisabled.java │ │ │ │ ├── IndexChangeTestDisabled.java │ │ │ │ ├── PrimaryKeyChangeTestDisabled.java │ │ │ │ └── TableChangeTestDisabled.java │ │ │ └── org.obeonetwork.dsl.database.sqlgen.tests.sqlgen │ │ │ │ ├── ConstraintSQLGenTestDisabled.java │ │ │ │ ├── DatabaseSQLGenTestDisabled.java │ │ │ │ ├── ForeignKeySQLGenTestDisabled.java │ │ │ │ ├── IndexSQLGenTestDisabled.java │ │ │ │ ├── PrimaryKeySQLGenTestDisabled.java │ │ │ │ └── TableSQLGenTestDisabled.java │ │ ├── build.properties │ │ ├── datas │ │ │ ├── bootstrap │ │ │ │ ├── scenario-1 │ │ │ │ │ ├── erase-schema.sql │ │ │ │ │ └── init-schema.sql │ │ │ │ └── scenario-2 │ │ │ │ │ ├── .directory │ │ │ │ │ ├── erase-schema-G2D.sql │ │ │ │ │ ├── erase-schema-RF.sql │ │ │ │ │ ├── init-schema-G2D.sql │ │ │ │ │ ├── init-schema-RF.sql │ │ │ │ │ └── source-powerAMC │ │ │ │ │ ├── init-schema-G2D.sql │ │ │ │ │ └── init-schema-RF.sql │ │ │ ├── bugs │ │ │ │ ├── bug13 │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ └── bug14 │ │ │ │ │ ├── withnoxmiid │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ │ └── withsamexmiid │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ ├── constraint │ │ │ │ ├── create-constraint │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ ├── drop-constraint │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ └── update-constraint │ │ │ │ │ ├── only-expression │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ │ ├── only-name │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ ├── db │ │ │ │ └── db1 │ │ │ │ │ ├── RF.database │ │ │ │ │ ├── create-constraint-expected.sql │ │ │ │ │ ├── create-fk-expected.sql │ │ │ │ │ ├── create-index-expected.sql │ │ │ │ │ ├── create-pk-expected.sql │ │ │ │ │ ├── create-tables-expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ ├── fk │ │ │ │ ├── create-fk │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ ├── drop-fk │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ └── update-fk │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ ├── index │ │ │ │ ├── create-index │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── unique │ │ │ │ │ │ ├── expected.sql │ │ │ │ │ │ ├── v1.database │ │ │ │ │ │ └── v2.database │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ ├── drop-index │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ └── update-index │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ ├── pk │ │ │ │ ├── create-pk │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ ├── drop-pk │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ └── update-pk │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ └── table │ │ │ │ ├── add-column │ │ │ │ ├── expected.sql │ │ │ │ ├── v1.database │ │ │ │ ├── v2.database │ │ │ │ └── with-comment │ │ │ │ │ ├── expected.sql │ │ │ │ │ ├── v1.database │ │ │ │ │ └── v2.database │ │ │ │ ├── change-column-size │ │ │ │ ├── expected.sql │ │ │ │ ├── v1.database │ │ │ │ └── v2.database │ │ │ │ ├── create-table │ │ │ │ ├── expected.sql │ │ │ │ ├── v1.database │ │ │ │ └── v2.database │ │ │ │ ├── drop-table │ │ │ │ ├── expected.sql │ │ │ │ ├── v1.database │ │ │ │ └── v2.database │ │ │ │ ├── remove-column │ │ │ │ ├── expected.sql │ │ │ │ ├── v1.database │ │ │ │ └── v2.database │ │ │ │ ├── rename-column │ │ │ │ ├── expected.sql │ │ │ │ ├── v1.database │ │ │ │ └── v2.database │ │ │ │ ├── rename-table │ │ │ │ ├── expected.sql │ │ │ │ ├── v1.database │ │ │ │ └── v2.database │ │ │ │ ├── update-column-comment │ │ │ │ ├── expected.sql │ │ │ │ ├── v1.database │ │ │ │ └── v2.database │ │ │ │ ├── update-column │ │ │ │ ├── expected.sql │ │ │ │ ├── v1.database │ │ │ │ └── v2.database │ │ │ │ └── update-table-comment │ │ │ │ ├── expected.sql │ │ │ │ ├── v1.database │ │ │ │ └── v2.database │ │ ├── input │ │ │ ├── 00-full-mariadb │ │ │ │ └── expected │ │ │ │ │ ├── alter-constraint.sql │ │ │ │ │ ├── alter-fk.sql │ │ │ │ │ ├── alter-index.sql │ │ │ │ │ ├── alter-pk.sql │ │ │ │ │ ├── alter-sequences.sql │ │ │ │ │ ├── alter-tables.sql │ │ │ │ │ ├── alter-views.sql │ │ │ │ │ ├── create-constraint.sql │ │ │ │ │ ├── create-fk.sql │ │ │ │ │ ├── create-index.sql │ │ │ │ │ ├── create-sequences.sql │ │ │ │ │ ├── create-tables.sql │ │ │ │ │ ├── create-views.sql │ │ │ │ │ ├── drop-constraint.sql │ │ │ │ │ ├── drop-fk.sql │ │ │ │ │ ├── drop-index.sql │ │ │ │ │ ├── drop-pk.sql │ │ │ │ │ ├── drop-sequences.sql │ │ │ │ │ ├── drop-tables.sql │ │ │ │ │ └── drop-views.sql │ │ │ ├── 00-full-mysql │ │ │ │ └── expected │ │ │ │ │ ├── alter-constraint.sql │ │ │ │ │ ├── alter-fk.sql │ │ │ │ │ ├── alter-index.sql │ │ │ │ │ ├── alter-pk.sql │ │ │ │ │ ├── alter-sequences.sql │ │ │ │ │ ├── alter-tables.sql │ │ │ │ │ ├── alter-views.sql │ │ │ │ │ ├── create-constraint.sql │ │ │ │ │ ├── create-fk.sql │ │ │ │ │ ├── create-index.sql │ │ │ │ │ ├── create-sequences.sql │ │ │ │ │ ├── create-tables.sql │ │ │ │ │ ├── create-views.sql │ │ │ │ │ ├── drop-constraint.sql │ │ │ │ │ ├── drop-fk.sql │ │ │ │ │ ├── drop-index.sql │ │ │ │ │ ├── drop-pk.sql │ │ │ │ │ ├── drop-sequences.sql │ │ │ │ │ ├── drop-tables.sql │ │ │ │ │ └── drop-views.sql │ │ │ ├── 00-full-oracle │ │ │ │ └── expected │ │ │ │ │ ├── alter-constraint.sql │ │ │ │ │ ├── alter-fk.sql │ │ │ │ │ ├── alter-index.sql │ │ │ │ │ ├── alter-pk.sql │ │ │ │ │ ├── alter-sequences.sql │ │ │ │ │ ├── alter-tables.sql │ │ │ │ │ ├── alter-views.sql │ │ │ │ │ ├── create-constraint.sql │ │ │ │ │ ├── create-fk.sql │ │ │ │ │ ├── create-index.sql │ │ │ │ │ ├── create-pk.sql │ │ │ │ │ ├── create-sequences.sql │ │ │ │ │ ├── create-tables.sql │ │ │ │ │ ├── create-views.sql │ │ │ │ │ ├── drop-constraint.sql │ │ │ │ │ ├── drop-fk.sql │ │ │ │ │ ├── drop-index.sql │ │ │ │ │ ├── drop-pk.sql │ │ │ │ │ ├── drop-sequences.sql │ │ │ │ │ ├── drop-tables.sql │ │ │ │ │ └── drop-views.sql │ │ │ ├── 00-full-postgresql │ │ │ │ └── expected │ │ │ │ │ ├── alter-constraint.sql │ │ │ │ │ ├── alter-fk.sql │ │ │ │ │ ├── alter-index.sql │ │ │ │ │ ├── alter-pk.sql │ │ │ │ │ ├── alter-sequences.sql │ │ │ │ │ ├── alter-tables.sql │ │ │ │ │ ├── alter-views.sql │ │ │ │ │ ├── create-constraint.sql │ │ │ │ │ ├── create-fk.sql │ │ │ │ │ ├── create-index.sql │ │ │ │ │ ├── create-pk.sql │ │ │ │ │ ├── create-sequences.sql │ │ │ │ │ ├── create-tables.sql │ │ │ │ │ ├── create-views.sql │ │ │ │ │ ├── drop-constraint.sql │ │ │ │ │ ├── drop-fk.sql │ │ │ │ │ ├── drop-index.sql │ │ │ │ │ ├── drop-pk.sql │ │ │ │ │ ├── drop-sequences.sql │ │ │ │ │ ├── drop-tables.sql │ │ │ │ │ └── drop-views.sql │ │ │ ├── 01-simple │ │ │ │ └── expected │ │ │ │ │ └── alter-tables.sql │ │ │ ├── 02-simple-techidchanged │ │ │ │ └── expected │ │ │ │ │ └── alter-tables.sql │ │ │ ├── 03-add-schema │ │ │ │ └── expected │ │ │ │ │ ├── create-sequences.sql │ │ │ │ │ └── create-tables.sql │ │ │ ├── 04-remove-schema │ │ │ │ └── expected │ │ │ │ │ ├── drop-sequences.sql │ │ │ │ │ └── drop-tables.sql │ │ │ ├── 05-complet │ │ │ │ ├── 15-10-50 │ │ │ │ │ ├── alter-constraint.sql │ │ │ │ │ ├── alter-pk.sql │ │ │ │ │ ├── alter-sequences.sql │ │ │ │ │ ├── alter-tables.sql │ │ │ │ │ ├── create-constraint.sql │ │ │ │ │ ├── create-fk.sql │ │ │ │ │ ├── create-pk.sql │ │ │ │ │ ├── create-sequences.sql │ │ │ │ │ ├── create-tables.sql │ │ │ │ │ ├── drop-constraint.sql │ │ │ │ │ ├── drop-sequences.sql │ │ │ │ │ └── drop-tables.sql │ │ │ │ └── expected │ │ │ │ │ ├── alter-constraint.sql │ │ │ │ │ ├── alter-pk.sql │ │ │ │ │ ├── alter-sequences.sql │ │ │ │ │ ├── alter-tables.sql │ │ │ │ │ ├── create-constraint.sql │ │ │ │ │ ├── create-fk.sql │ │ │ │ │ ├── create-pk.sql │ │ │ │ │ ├── create-sequences.sql │ │ │ │ │ ├── create-tables.sql │ │ │ │ │ ├── drop-constraint.sql │ │ │ │ │ ├── drop-sequences.sql │ │ │ │ │ └── drop-tables.sql │ │ │ ├── 06-complet2 │ │ │ │ └── expected │ │ │ │ │ ├── alter-constraint.sql │ │ │ │ │ ├── alter-fk.sql │ │ │ │ │ ├── alter-index.sql │ │ │ │ │ ├── alter-pk.sql │ │ │ │ │ ├── alter-sequences.sql │ │ │ │ │ ├── alter-tables.sql │ │ │ │ │ ├── create-constraint.sql │ │ │ │ │ ├── create-fk.sql │ │ │ │ │ ├── create-index.sql │ │ │ │ │ ├── create-pk.sql │ │ │ │ │ ├── create-sequences.sql │ │ │ │ │ ├── create-tables.sql │ │ │ │ │ ├── drop-constraint.sql │ │ │ │ │ ├── drop-fk.sql │ │ │ │ │ ├── drop-index.sql │ │ │ │ │ ├── drop-pk.sql │ │ │ │ │ ├── drop-sequences.sql │ │ │ │ │ └── drop-tables.sql │ │ │ ├── 07-column-type-changed │ │ │ │ └── expected │ │ │ │ │ └── alter-tables.sql │ │ │ ├── 08-move-element │ │ │ │ └── expected │ │ │ │ │ ├── alter-tables.sql │ │ │ │ │ ├── create-tables.sql │ │ │ │ │ └── drop-tables.sql │ │ │ ├── 09-createH2 │ │ │ │ └── expected │ │ │ │ │ ├── create-fk.sql │ │ │ │ │ ├── create-index.sql │ │ │ │ │ ├── create-pk.sql │ │ │ │ │ ├── create-sequences.sql │ │ │ │ │ └── create-tables.sql │ │ │ ├── 10-createPostgres │ │ │ │ └── expected │ │ │ │ │ ├── create-fk.sql │ │ │ │ │ ├── create-index.sql │ │ │ │ │ ├── create-pk.sql │ │ │ │ │ ├── create-sequences.sql │ │ │ │ │ └── create-tables.sql │ │ │ ├── 11-createSqlServer │ │ │ │ └── expected │ │ │ │ │ ├── create-fk.sql │ │ │ │ │ ├── create-index.sql │ │ │ │ │ ├── create-pk.sql │ │ │ │ │ ├── create-tables.sql │ │ │ │ │ └── create-views.sql │ │ │ ├── 12-update-view-query │ │ │ │ └── expected │ │ │ │ │ └── alter-views.sql │ │ │ ├── 13-update-view-query2 │ │ │ │ └── expected │ │ │ │ │ └── alter-views.sql │ │ │ └── 14-updatecolumn-pgsql │ │ │ │ └── expected │ │ │ │ └── alter-tables.sql │ │ ├── pom.xml │ │ ├── src │ │ │ └── org │ │ │ │ └── obeonetwork │ │ │ │ └── dsl │ │ │ │ └── database │ │ │ │ └── sqlgen │ │ │ │ └── tests │ │ │ │ ├── AbtractTest.java │ │ │ │ ├── generation │ │ │ │ ├── AbstractSQLGenerationTest.java │ │ │ │ └── SQLGenerationTest.java │ │ │ │ └── sqlgen │ │ │ │ ├── AbtractGeneratorTest.java │ │ │ │ └── AcceleoTextGenerationListener.java │ │ └── testFolder │ │ │ ├── 2012-03-26 │ │ │ ├── alter-constraint.sql │ │ │ ├── alter-fk.sql │ │ │ ├── alter-index.sql │ │ │ ├── alter-pk.sql │ │ │ ├── alter-tables.sql │ │ │ ├── create-constraint.sql │ │ │ ├── create-fk.sql │ │ │ ├── create-index.sql │ │ │ ├── create-pk.sql │ │ │ ├── create-tables.sql │ │ │ ├── drop-constraint.sql │ │ │ ├── drop-fk.sql │ │ │ ├── drop-index.sql │ │ │ ├── drop-pk.sql │ │ │ └── drop-tables.sql │ │ │ ├── G2D-2014-04-28 │ │ │ └── 11-09-01 │ │ │ │ ├── create-constraint.sql │ │ │ │ ├── create-fk.sql │ │ │ │ ├── create-index.sql │ │ │ │ ├── create-pk.sql │ │ │ │ └── create-tables.sql │ │ │ ├── NORTHWIND-2014-04-28 │ │ │ ├── 11-08-13 │ │ │ │ ├── create-fk.sql │ │ │ │ ├── create-index.sql │ │ │ │ ├── create-pk.sql │ │ │ │ └── create-tables.sql │ │ │ ├── 11-08-14 │ │ │ │ └── alter-tables.sql │ │ │ ├── 11-08-15 │ │ │ │ ├── alter-fk.sql │ │ │ │ ├── alter-tables.sql │ │ │ │ ├── create-fk.sql │ │ │ │ ├── create-index.sql │ │ │ │ ├── create-pk.sql │ │ │ │ ├── create-tables.sql │ │ │ │ ├── drop-fk.sql │ │ │ │ ├── drop-index.sql │ │ │ │ └── drop-tables.sql │ │ │ ├── 11-08-16 │ │ │ │ ├── drop-fk.sql │ │ │ │ ├── drop-index.sql │ │ │ │ └── drop-tables.sql │ │ │ ├── 11-08-17 │ │ │ │ └── alter-tables.sql │ │ │ ├── 11-08-18 │ │ │ │ └── alter-tables.sql │ │ │ ├── 11-08-19 │ │ │ │ ├── alter-index.sql │ │ │ │ └── alter-tables.sql │ │ │ ├── 11-08-20 │ │ │ │ └── alter-tables.sql │ │ │ ├── 11-08-21 │ │ │ │ └── alter-tables.sql │ │ │ ├── 11-08-22 │ │ │ │ └── alter-tables.sql │ │ │ ├── 11-08-23 │ │ │ │ ├── alter-tables.sql │ │ │ │ └── create-pk.sql │ │ │ ├── 11-08-24 │ │ │ │ ├── alter-tables.sql │ │ │ │ ├── create-pk.sql │ │ │ │ └── drop-pk.sql │ │ │ ├── 11-08-25 │ │ │ │ ├── alter-tables.sql │ │ │ │ └── create-fk.sql │ │ │ ├── 11-08-26 │ │ │ │ ├── alter-tables.sql │ │ │ │ ├── create-fk.sql │ │ │ │ └── drop-fk.sql │ │ │ ├── 11-08-27 │ │ │ │ ├── alter-tables.sql │ │ │ │ └── drop-index.sql │ │ │ ├── 11-08-28 │ │ │ │ ├── alter-tables.sql │ │ │ │ ├── create-index.sql │ │ │ │ └── drop-index.sql │ │ │ ├── 11-08-29 │ │ │ │ ├── alter-tables.sql │ │ │ │ └── create-index.sql │ │ │ ├── 11-08-30 │ │ │ │ ├── alter-tables.sql │ │ │ │ ├── create-constraint.sql │ │ │ │ └── drop-constraint.sql │ │ │ └── 11-08-31 │ │ │ │ ├── alter-constraint.sql │ │ │ │ └── alter-tables.sql │ │ │ ├── alter-constraint.sql │ │ │ ├── alter-fk.sql │ │ │ ├── alter-index.sql │ │ │ ├── alter-pk.sql │ │ │ ├── alter-tables.sql │ │ │ ├── create-constraint.sql │ │ │ ├── create-fk.sql │ │ │ ├── create-index.sql │ │ │ ├── create-pk.sql │ │ │ ├── create-tables.sql │ │ │ ├── drop-constraint.sql │ │ │ ├── drop-fk.sql │ │ │ ├── drop-index.sql │ │ │ ├── drop-pk.sql │ │ │ └── drop-tables.sql │ │ └── org.obeonetwork.dsl.database.sqlgen │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.acceleo │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-acceleo-build │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── database │ │ │ └── sqlgen │ │ │ └── AcceleoCompiler.java │ │ └── src │ │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── database │ │ └── sqlgen │ │ ├── ConstraintGen.mtl │ │ ├── DatabaseGen.java │ │ ├── DatabaseGen.mtl │ │ ├── ForeignKeyGen.mtl │ │ ├── IndexGen.mtl │ │ ├── PrimaryKeyGen.mtl │ │ ├── SQLGenerator.java │ │ ├── SequenceGen.mtl │ │ ├── TableGen.mtl │ │ ├── ViewGen.mtl │ │ └── services │ │ ├── names.mtl │ │ └── services.mtl └── database │ ├── features │ └── org.obeonetwork.dsl.database.reverse.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ └── pom.xml │ └── plugins │ ├── org.obeonetwork.dsl.database.drivers │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── lib │ │ ├── h2-1.4.200.jar │ │ ├── mariadb-java-client-3.0.7.jar │ │ ├── mssql-jdbc-11.2.0.jre8.jar │ │ ├── mysql-connector-java-8.0.29.jar │ │ ├── ojdbc8.jar │ │ └── postgresql-42.4.0.jar │ └── pom.xml │ └── org.obeonetwork.dsl.database.reverse │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.core.runtime.prefs │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ └── src │ └── org │ └── obeonetwork │ └── dsl │ └── database │ └── reverse │ ├── DatabaseReverser.java │ ├── DatabaseReverserPlugin.java │ ├── decoders │ ├── AbstractDataBaseBuilder.java │ ├── DataBaseBuilder.java │ └── impl │ │ ├── DefaultDataBaseBuilder.java │ │ ├── H2DataBaseBuilder.java │ │ ├── MariaDBDatabaseBuilder.java │ │ ├── MySQLDataBaseBuilder.java │ │ ├── OracleDataBaseBuilder.java │ │ ├── PostGresDataBaseBuilder.java │ │ ├── PostGresStatementBuilder.java │ │ └── SQLServerDataBaseBuilder.java │ ├── factories │ └── DataBaseBuilderFactory.java │ ├── source │ ├── DataSource.java │ └── DataSourceException.java │ └── utils │ ├── CreationUtils.java │ ├── JdbcUtils.java │ ├── MultiDataBaseQueries.java │ ├── ProgressListener.java │ └── Queries.java └── samples ├── features └── org.obeonetwork.is.samples.feature │ ├── .project │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── pom.xml └── plugins └── org.obeonetwork.is.samples ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── CONTRIBUTE-EXAMPLE.txt ├── META-INF └── MANIFEST.MF ├── build.properties ├── contents └── E-BookStore │ ├── .project │ ├── E-BookStore-MLD.database │ ├── E-BookStore-Oracle.database │ ├── E-BookStore.cinematic │ ├── E-BookStore.entity │ ├── E-BookStore.graal │ ├── E-BookStore.requirement │ ├── E-BookStore.soa │ ├── documentation │ └── doc-src │ │ ├── E-BookStore_Cinematic_template.docx │ │ ├── E-BookStore_Cinematic_template.genconf │ │ ├── E-BookStore_Cinematic_template.generated.docx │ │ ├── E-BookStore_DataBase_template.docx │ │ ├── E-BookStore_DataBase_template.genconf │ │ ├── E-BookStore_DataBase_template.generated.docx │ │ ├── E-BookStore_GraalSystemAndRequirements_template.docx │ │ ├── E-BookStore_GraalSystemAndRequirements_template.genconf │ │ ├── E-BookStore_GraalSystemAndRequirements_template.generated.docx │ │ └── images │ │ ├── logoEtablissement.jpg │ │ └── logoProjet.jpg │ ├── mockups │ ├── CreateAccount_View_Container_Mockup-0.jpg │ ├── HomePage_View_Container_Mockup-0.jpg │ ├── Login_View_Container_Mockup-0.jpg │ └── PaymentForm_View_Container_Mockup-0.jpg │ ├── representations.aird │ └── scaffold │ ├── EntityToMld_Entities_E-BookStore-MLD.scaffold │ └── MldToMpd_E-BookStore-MLD_E-BookStore-Oracle.scaffold ├── icons └── E-BookStore.gif ├── plugin.xml ├── pom.xml └── src └── org └── obeonetwork └── is └── samples └── InformationSystemExampleWizard.java /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/README.textile -------------------------------------------------------------------------------- /addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html.ui/.classpath -------------------------------------------------------------------------------- /addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html.ui/.project -------------------------------------------------------------------------------- /addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html.ui/plugin.xml -------------------------------------------------------------------------------- /addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html.ui/pom.xml -------------------------------------------------------------------------------- /addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html/.classpath -------------------------------------------------------------------------------- /addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html/.project -------------------------------------------------------------------------------- /addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html/pom.xml -------------------------------------------------------------------------------- /addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html/tasks/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/cinematic/plugins/org.obeonetwork.cinematic.gen.html/tasks/main.xml -------------------------------------------------------------------------------- /addons/graalextensions/plugins/org.obeonetwork.graal.extensions/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/graalextensions/plugins/org.obeonetwork.graal.extensions/.classpath -------------------------------------------------------------------------------- /addons/graalextensions/plugins/org.obeonetwork.graal.extensions/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/graalextensions/plugins/org.obeonetwork.graal.extensions/.project -------------------------------------------------------------------------------- /addons/graalextensions/plugins/org.obeonetwork.graal.extensions/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/graalextensions/plugins/org.obeonetwork.graal.extensions/plugin.xml -------------------------------------------------------------------------------- /addons/graalextensions/plugins/org.obeonetwork.graal.extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/graalextensions/plugins/org.obeonetwork.graal.extensions/pom.xml -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.doc/.classpath -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.doc/.project -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.doc/plugin.xml -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.doc/pom.xml -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.ui/.classpath -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.ui/.project -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.ui/plugin.xml -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle.ui/pom.xml -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle/.classpath -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle/.project -------------------------------------------------------------------------------- /addons/lifecycle/plugins/org.obeonetwork.project.lifecycle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/lifecycle/plugins/org.obeonetwork.project.lifecycle/pom.xml -------------------------------------------------------------------------------- /addons/scaffolding/features/org.obeonetwork.database.ui.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/features/org.obeonetwork.database.ui.feature/.project -------------------------------------------------------------------------------- /addons/scaffolding/features/org.obeonetwork.database.ui.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/features/org.obeonetwork.database.ui.feature/pom.xml -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.doc/.classpath -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.doc/.project -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.doc/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.doc/build.properties -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.doc/plugin.xml -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.doc/pom.xml -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.scaffold.edit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.scaffold.edit/.project -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.scaffold.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.scaffold.edit/pom.xml -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.scaffold/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.scaffold/.classpath -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.scaffold/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.scaffold/.project -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.scaffold/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.scaffold/plugin.xml -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.scaffold/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.scaffold/pom.xml -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.tests/.classpath -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.tests/.project -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.tests/build.properties -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.tests/pom.xml -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.ui/.classpath -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.ui/.project -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.ui/build.properties -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.ui/icons/DataBase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.ui/icons/DataBase.gif -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.ui/icons/SqlFile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.ui/icons/SqlFile.gif -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.ui/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.ui/license.html -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.ui/plugin.xml -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database.ui/pom.xml -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database/.classpath -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database/.project -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database/build.properties -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database/plugin.xml -------------------------------------------------------------------------------- /addons/scaffolding/plugins/org.obeonetwork.database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/scaffolding/plugins/org.obeonetwork.database/pom.xml -------------------------------------------------------------------------------- /addons/structuredtypes/features/org.obeonetwork.feature.is/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/features/org.obeonetwork.feature.is/.project -------------------------------------------------------------------------------- /addons/structuredtypes/features/org.obeonetwork.feature.is/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/features/org.obeonetwork.feature.is/feature.xml -------------------------------------------------------------------------------- /addons/structuredtypes/features/org.obeonetwork.feature.is/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/features/org.obeonetwork.feature.is/pom.xml -------------------------------------------------------------------------------- /addons/structuredtypes/plugins/org.obeonetwork.is.design.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/plugins/org.obeonetwork.is.design.doc/.classpath -------------------------------------------------------------------------------- /addons/structuredtypes/plugins/org.obeonetwork.is.design.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/plugins/org.obeonetwork.is.design.doc/.project -------------------------------------------------------------------------------- /addons/structuredtypes/plugins/org.obeonetwork.is.design.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/plugins/org.obeonetwork.is.design.doc/plugin.xml -------------------------------------------------------------------------------- /addons/structuredtypes/plugins/org.obeonetwork.is.design.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/plugins/org.obeonetwork.is.design.doc/pom.xml -------------------------------------------------------------------------------- /addons/structuredtypes/plugins/org.obeonetwork.is.design/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/plugins/org.obeonetwork.is.design/.classpath -------------------------------------------------------------------------------- /addons/structuredtypes/plugins/org.obeonetwork.is.design/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/plugins/org.obeonetwork.is.design/.project -------------------------------------------------------------------------------- /addons/structuredtypes/plugins/org.obeonetwork.is.design/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/plugins/org.obeonetwork.is.design/build.properties -------------------------------------------------------------------------------- /addons/structuredtypes/plugins/org.obeonetwork.is.design/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/plugins/org.obeonetwork.is.design/plugin.xml -------------------------------------------------------------------------------- /addons/structuredtypes/plugins/org.obeonetwork.is.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/structuredtypes/plugins/org.obeonetwork.is.design/pom.xml -------------------------------------------------------------------------------- /addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.preview/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.preview/pom.xml -------------------------------------------------------------------------------- /addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.tests/.project -------------------------------------------------------------------------------- /addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.tests/pom.xml -------------------------------------------------------------------------------- /addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.ui/.classpath -------------------------------------------------------------------------------- /addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.ui/.project -------------------------------------------------------------------------------- /addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.ui/plugin.xml -------------------------------------------------------------------------------- /addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger.ui/pom.xml -------------------------------------------------------------------------------- /addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger/.classpath -------------------------------------------------------------------------------- /addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger/.project -------------------------------------------------------------------------------- /addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/addons/swagger/plugins/org.obeonetwork.dsl.soa.gen.swagger/pom.xml -------------------------------------------------------------------------------- /commons/acceleo/features/org.obeonetwork.acceleo.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/acceleo/features/org.obeonetwork.acceleo.feature/.project -------------------------------------------------------------------------------- /commons/acceleo/features/org.obeonetwork.acceleo.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/acceleo/features/org.obeonetwork.acceleo.feature/build.properties -------------------------------------------------------------------------------- /commons/acceleo/features/org.obeonetwork.acceleo.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/acceleo/features/org.obeonetwork.acceleo.feature/feature.xml -------------------------------------------------------------------------------- /commons/acceleo/features/org.obeonetwork.acceleo.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/acceleo/features/org.obeonetwork.acceleo.feature/pom.xml -------------------------------------------------------------------------------- /commons/acceleo/plugins/org.obeonetwork.acceleo.utils/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/acceleo/plugins/org.obeonetwork.acceleo.utils/.classpath -------------------------------------------------------------------------------- /commons/acceleo/plugins/org.obeonetwork.acceleo.utils/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/acceleo/plugins/org.obeonetwork.acceleo.utils/.project -------------------------------------------------------------------------------- /commons/acceleo/plugins/org.obeonetwork.acceleo.utils/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/acceleo/plugins/org.obeonetwork.acceleo.utils/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/acceleo/plugins/org.obeonetwork.acceleo.utils/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/acceleo/plugins/org.obeonetwork.acceleo.utils/about.html -------------------------------------------------------------------------------- /commons/acceleo/plugins/org.obeonetwork.acceleo.utils/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/acceleo/plugins/org.obeonetwork.acceleo.utils/build.properties -------------------------------------------------------------------------------- /commons/acceleo/plugins/org.obeonetwork.acceleo.utils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/acceleo/plugins/org.obeonetwork.acceleo.utils/pom.xml -------------------------------------------------------------------------------- /commons/is/features/org.obeonetwork.dsl.feature.is/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/features/org.obeonetwork.dsl.feature.is/.project -------------------------------------------------------------------------------- /commons/is/features/org.obeonetwork.dsl.feature.is/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/features/org.obeonetwork.dsl.feature.is/build.properties -------------------------------------------------------------------------------- /commons/is/features/org.obeonetwork.dsl.feature.is/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/features/org.obeonetwork.dsl.feature.is/feature.properties -------------------------------------------------------------------------------- /commons/is/features/org.obeonetwork.dsl.feature.is/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/features/org.obeonetwork.dsl.feature.is/feature.xml -------------------------------------------------------------------------------- /commons/is/features/org.obeonetwork.dsl.feature.is/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/features/org.obeonetwork.dsl.feature.is/pom.xml -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/.classpath -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/.project -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/build.properties -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/icons/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/icons/folder.gif -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/icons/full/obj16/ISModelFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/icons/full/obj16/ISModelFile.png -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/icons/full/wizban/NewIS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/icons/full/wizban/NewIS.gif -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/icons/shared.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/icons/shared.gif -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/icons/shared_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/icons/shared_folder.png -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/plugin.xml -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.dsl.is/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.dsl.is/pom.xml -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.is.eef.custom/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.is.eef.custom/.classpath -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.is.eef.custom/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.is.eef.custom/.project -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.is.eef.custom/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.is.eef.custom/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.is.eef.custom/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.is.eef.custom/build.properties -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.is.eef.custom/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.is.eef.custom/plugin.xml -------------------------------------------------------------------------------- /commons/is/plugins/org.obeonetwork.is.eef.custom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/is/plugins/org.obeonetwork.is.eef.custom/pom.xml -------------------------------------------------------------------------------- /commons/nebula/features/org.eclipse.nebula.treemapper.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/nebula/features/org.eclipse.nebula.treemapper.feature/.project -------------------------------------------------------------------------------- /commons/nebula/features/org.eclipse.nebula.treemapper.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/nebula/features/org.eclipse.nebula.treemapper.feature/feature.xml -------------------------------------------------------------------------------- /commons/nebula/features/org.eclipse.nebula.treemapper.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/nebula/features/org.eclipse.nebula.treemapper.feature/pom.xml -------------------------------------------------------------------------------- /commons/nebula/plugins/org.eclipse.nebula.treemapper/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/nebula/plugins/org.eclipse.nebula.treemapper/.classpath -------------------------------------------------------------------------------- /commons/nebula/plugins/org.eclipse.nebula.treemapper/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/nebula/plugins/org.eclipse.nebula.treemapper/.project -------------------------------------------------------------------------------- /commons/nebula/plugins/org.eclipse.nebula.treemapper/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/nebula/plugins/org.eclipse.nebula.treemapper/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/nebula/plugins/org.eclipse.nebula.treemapper/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/nebula/plugins/org.eclipse.nebula.treemapper/build.properties -------------------------------------------------------------------------------- /commons/nebula/plugins/org.eclipse.nebula.treemapper/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/nebula/plugins/org.eclipse.nebula.treemapper/pom.xml -------------------------------------------------------------------------------- /commons/tools/features/org.obeonetwork.tools.doc.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/features/org.obeonetwork.tools.doc.feature/.project -------------------------------------------------------------------------------- /commons/tools/features/org.obeonetwork.tools.doc.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/features/org.obeonetwork.tools.doc.feature/build.properties -------------------------------------------------------------------------------- /commons/tools/features/org.obeonetwork.tools.doc.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/features/org.obeonetwork.tools.doc.feature/feature.xml -------------------------------------------------------------------------------- /commons/tools/features/org.obeonetwork.tools.doc.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/features/org.obeonetwork.tools.doc.feature/pom.xml -------------------------------------------------------------------------------- /commons/tools/features/org.obeonetwork.tools.linker.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/features/org.obeonetwork.tools.linker.feature/.project -------------------------------------------------------------------------------- /commons/tools/features/org.obeonetwork.tools.linker.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/features/org.obeonetwork.tools.linker.feature/feature.xml -------------------------------------------------------------------------------- /commons/tools/features/org.obeonetwork.tools.linker.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/features/org.obeonetwork.tools.linker.feature/pom.xml -------------------------------------------------------------------------------- /commons/tools/features/org.obeonetwork.tools.migration.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/features/org.obeonetwork.tools.migration.feature/.project -------------------------------------------------------------------------------- /commons/tools/features/org.obeonetwork.tools.migration.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/features/org.obeonetwork.tools.migration.feature/feature.xml -------------------------------------------------------------------------------- /commons/tools/features/org.obeonetwork.tools.migration.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/features/org.obeonetwork.tools.migration.feature/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.classdiagramgenerator/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.classdiagramgenerator/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.contextual.explorer.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.contextual.explorer.ui/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc.doc/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc.doc/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc.doc/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc.doc/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc.doc/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc.doc/build.properties -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc.doc/plugin.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc.doc/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc/build.properties -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc/icons/Edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc/icons/Edit.gif -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc/icons/RelatedDoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc/icons/RelatedDoc.gif -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc/plugin.properties -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc/plugin.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.doc/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.linker/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.linker/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.linker/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.linker/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.linker/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.linker/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.linker/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.linker/build.properties -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.linker/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.linker/plugin.properties -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.linker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.linker/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.migration/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.migration/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.migration/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.migration/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.migration/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.migration/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.migration/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.migration/build.properties -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.migration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.migration/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary.doc/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary.doc/plugin.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary.doc/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary.test/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary.test/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary.test/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary.ui/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary.ui/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary.ui/plugin.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary.ui/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary/plugin.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.projectlibrary/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.projectlibrary/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.requirement/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.requirement/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.requirement/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.requirement/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.requirement/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.requirement/build.properties -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.requirement/icons/Edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.requirement/icons/Edit.gif -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.requirement/icons/Link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.requirement/icons/Link.gif -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.requirement/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.requirement/plugin.properties -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.requirement/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.requirement/plugin.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.requirement/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.requirement/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer.doc/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer.doc/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer.doc/plugin.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer.doc/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer/plugin.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.snapshot.viewer/pom.xml -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.tests/.classpath -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.tests/.project -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.tests/build.properties -------------------------------------------------------------------------------- /commons/tools/plugins/org.obeonetwork.tools.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/tools/plugins/org.obeonetwork.tools.tests/pom.xml -------------------------------------------------------------------------------- /commons/utils/features/org.obeonetwork.utils.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/features/org.obeonetwork.utils.feature/.project -------------------------------------------------------------------------------- /commons/utils/features/org.obeonetwork.utils.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/features/org.obeonetwork.utils.feature/build.properties -------------------------------------------------------------------------------- /commons/utils/features/org.obeonetwork.utils.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/features/org.obeonetwork.utils.feature/feature.properties -------------------------------------------------------------------------------- /commons/utils/features/org.obeonetwork.utils.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/features/org.obeonetwork.utils.feature/feature.xml -------------------------------------------------------------------------------- /commons/utils/features/org.obeonetwork.utils.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/features/org.obeonetwork.utils.feature/pom.xml -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.docker.common/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.docker.common/.classpath -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.docker.common/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.docker.common/.project -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.docker.common/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.docker.common/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.docker.common/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.docker.common/README.txt -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.docker.common/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.docker.common/build.properties -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.docker.common/lib/commons-io-2.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.docker.common/lib/commons-io-2.6.jar -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.docker.common/lib/guava-19.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.docker.common/lib/guava-19.0.jar -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.docker.common/lib/javax.inject-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.docker.common/lib/javax.inject-1.jar -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common.ui/.classpath -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common.ui/.project -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common.ui/build.properties -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common.ui/plugin.xml -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common.ui/pom.xml -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common/.classpath -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common/.project -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common/build.properties -------------------------------------------------------------------------------- /commons/utils/plugins/org.obeonetwork.utils.common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/commons/utils/plugins/org.obeonetwork.utils.common/pom.xml -------------------------------------------------------------------------------- /designs/cinematic/plugins/org.obeonetwork.dsl.cinematic.design/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/cinematic/plugins/org.obeonetwork.dsl.cinematic.design/.classpath -------------------------------------------------------------------------------- /designs/cinematic/plugins/org.obeonetwork.dsl.cinematic.design/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/cinematic/plugins/org.obeonetwork.dsl.cinematic.design/.project -------------------------------------------------------------------------------- /designs/cinematic/plugins/org.obeonetwork.dsl.cinematic.design/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/cinematic/plugins/org.obeonetwork.dsl.cinematic.design/plugin.xml -------------------------------------------------------------------------------- /designs/cinematic/plugins/org.obeonetwork.dsl.cinematic.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/cinematic/plugins/org.obeonetwork.dsl.cinematic.design/pom.xml -------------------------------------------------------------------------------- /designs/database/plugins/org.obeonetwork.dsl.database.design.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/database/plugins/org.obeonetwork.dsl.database.design.test/.project -------------------------------------------------------------------------------- /designs/database/plugins/org.obeonetwork.dsl.database.design.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/database/plugins/org.obeonetwork.dsl.database.design.test/pom.xml -------------------------------------------------------------------------------- /designs/database/plugins/org.obeonetwork.dsl.database.design/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/database/plugins/org.obeonetwork.dsl.database.design/.classpath -------------------------------------------------------------------------------- /designs/database/plugins/org.obeonetwork.dsl.database.design/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/database/plugins/org.obeonetwork.dsl.database.design/.project -------------------------------------------------------------------------------- /designs/database/plugins/org.obeonetwork.dsl.database.design/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/database/plugins/org.obeonetwork.dsl.database.design/plugin.xml -------------------------------------------------------------------------------- /designs/database/plugins/org.obeonetwork.dsl.database.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/database/plugins/org.obeonetwork.dsl.database.design/pom.xml -------------------------------------------------------------------------------- /designs/entity/features/org.obeonetwork.dsl.entity.design.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/features/org.obeonetwork.dsl.entity.design.feature/.project -------------------------------------------------------------------------------- /designs/entity/features/org.obeonetwork.dsl.entity.design.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/features/org.obeonetwork.dsl.entity.design.feature/pom.xml -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.design.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.design.test/.project -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.design.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.design.test/pom.xml -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.design/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.design/.classpath -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.design/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.design/.project -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.design/build.acceleo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.design/build.acceleo -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.design/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.design/build.properties -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.design/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.design/plugin.xml -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.design/pom.xml -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.doc/.classpath -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.doc/.project -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.doc/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.doc/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.doc/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.doc/build.properties -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.doc/plugin.xml -------------------------------------------------------------------------------- /designs/entity/plugins/org.obeonetwork.dsl.entity.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/entity/plugins/org.obeonetwork.dsl.entity.doc/pom.xml -------------------------------------------------------------------------------- /designs/environment/plugins/org.obeonetwork.dsl.environment.binding.dialect.ui/.settings/.gitignore: -------------------------------------------------------------------------------- 1 | /org.eclipse.jdt.core.prefs 2 | -------------------------------------------------------------------------------- /designs/environment/plugins/org.obeonetwork.dsl.environment.binding.dialect/.settings/.gitignore: -------------------------------------------------------------------------------- 1 | /org.eclipse.jdt.core.prefs 2 | -------------------------------------------------------------------------------- /designs/environment/plugins/org.obeonetwork.dsl.environment.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/environment/plugins/org.obeonetwork.dsl.environment.design/pom.xml -------------------------------------------------------------------------------- /designs/graal/features/org.obeonetwork.graal.design.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/features/org.obeonetwork.graal.design.feature/.project -------------------------------------------------------------------------------- /designs/graal/features/org.obeonetwork.graal.design.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/features/org.obeonetwork.graal.design.feature/feature.xml -------------------------------------------------------------------------------- /designs/graal/features/org.obeonetwork.graal.design.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/features/org.obeonetwork.graal.design.feature/pom.xml -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design.test/.project -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design.test/InitEBookStore.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design.test/InitEBookStore.ctx -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design.test/InitWorkspace.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design.test/InitWorkspace.ctx -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design.test/MaximizeWindow.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design.test/MaximizeWindow.ctx -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design.test/pom.xml -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design.test/rcptt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design.test/rcptt.properties -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/.classpath -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/.project -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/build.properties -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/icons/Add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/icons/Add.gif -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/icons/Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/icons/Delete.gif -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/icons/Edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/icons/Edit.gif -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/icons/Highlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/icons/Highlight.gif -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/icons/NoHighlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/icons/NoHighlight.gif -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/icons/UserStoryView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/icons/UserStoryView.gif -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/Actor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/Actor.svg -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/UseCase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/UseCase.svg -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/abort_node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/abort_node.svg -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/appli_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/appli_action.png -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/appli_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/appli_event.png -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/final_node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/final_node.svg -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/inherits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/inherits.png -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/initial_node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/initial_node.svg -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/task.png -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/tasks_group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/tasks_group.svg -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/user_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/user_action.png -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/user_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/user_view.png -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/images/works_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/images/works_on.gif -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/plugin.xml -------------------------------------------------------------------------------- /designs/graal/plugins/org.obeonetwork.graal.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/graal/plugins/org.obeonetwork.graal.design/pom.xml -------------------------------------------------------------------------------- /designs/interaction/plugins/org.obeonetwork.dsl.interaction.design/.settings/.gitignore: -------------------------------------------------------------------------------- 1 | /org.eclipse.jdt.core.prefs 2 | -------------------------------------------------------------------------------- /designs/interaction/plugins/org.obeonetwork.dsl.interaction.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/interaction/plugins/org.obeonetwork.dsl.interaction.design/pom.xml -------------------------------------------------------------------------------- /designs/interaction/plugins/org.obeonetwork.dsl.interaction.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/interaction/plugins/org.obeonetwork.dsl.interaction.doc/.classpath -------------------------------------------------------------------------------- /designs/interaction/plugins/org.obeonetwork.dsl.interaction.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/interaction/plugins/org.obeonetwork.dsl.interaction.doc/.project -------------------------------------------------------------------------------- /designs/interaction/plugins/org.obeonetwork.dsl.interaction.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/interaction/plugins/org.obeonetwork.dsl.interaction.doc/plugin.xml -------------------------------------------------------------------------------- /designs/interaction/plugins/org.obeonetwork.dsl.interaction.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/interaction/plugins/org.obeonetwork.dsl.interaction.doc/pom.xml -------------------------------------------------------------------------------- /designs/is/features/org.obeonetwork.dsl.feature.is.design/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/features/org.obeonetwork.dsl.feature.is.design/.project -------------------------------------------------------------------------------- /designs/is/features/org.obeonetwork.dsl.feature.is.design/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/features/org.obeonetwork.dsl.feature.is.design/build.properties -------------------------------------------------------------------------------- /designs/is/features/org.obeonetwork.dsl.feature.is.design/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/features/org.obeonetwork.dsl.feature.is.design/feature.xml -------------------------------------------------------------------------------- /designs/is/features/org.obeonetwork.dsl.feature.is.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/features/org.obeonetwork.dsl.feature.is.design/pom.xml -------------------------------------------------------------------------------- /designs/is/plugins/org.obeonetwork.dsl.is.design.generator/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/plugins/org.obeonetwork.dsl.is.design.generator/.project -------------------------------------------------------------------------------- /designs/is/plugins/org.obeonetwork.dsl.is.design/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/plugins/org.obeonetwork.dsl.is.design/.classpath -------------------------------------------------------------------------------- /designs/is/plugins/org.obeonetwork.dsl.is.design/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/plugins/org.obeonetwork.dsl.is.design/.project -------------------------------------------------------------------------------- /designs/is/plugins/org.obeonetwork.dsl.is.design/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/plugins/org.obeonetwork.dsl.is.design/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /designs/is/plugins/org.obeonetwork.dsl.is.design/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/plugins/org.obeonetwork.dsl.is.design/build.properties -------------------------------------------------------------------------------- /designs/is/plugins/org.obeonetwork.dsl.is.design/description/is.odesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/plugins/org.obeonetwork.dsl.is.design/description/is.odesign -------------------------------------------------------------------------------- /designs/is/plugins/org.obeonetwork.dsl.is.design/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/plugins/org.obeonetwork.dsl.is.design/plugin.xml -------------------------------------------------------------------------------- /designs/is/plugins/org.obeonetwork.dsl.is.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/is/plugins/org.obeonetwork.dsl.is.design/pom.xml -------------------------------------------------------------------------------- /designs/requirement/plugins/org.obeonetwork.dsl.requirement.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/requirement/plugins/org.obeonetwork.dsl.requirement.design/pom.xml -------------------------------------------------------------------------------- /designs/soa/features/org.obeonetwork.dsl.soa.design.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/features/org.obeonetwork.dsl.soa.design.feature/.project -------------------------------------------------------------------------------- /designs/soa/features/org.obeonetwork.dsl.soa.design.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/features/org.obeonetwork.dsl.soa.design.feature/feature.xml -------------------------------------------------------------------------------- /designs/soa/features/org.obeonetwork.dsl.soa.design.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/features/org.obeonetwork.dsl.soa.design.feature/pom.xml -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design.test/.project -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design.test/pom.xml -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design.test/rcptt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design.test/rcptt.properties -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design/.classpath -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design/.project -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design/build.acceleo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design/build.acceleo -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design/build.properties -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design/description/soa.odesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design/description/soa.odesign -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design/plugin.xml -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design/pom.xml -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.design/schema/mediaTypes.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.design/schema/mediaTypes.exsd -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.doc/.classpath -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.doc/.project -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.doc/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.doc/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.doc/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.doc/build.properties -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.doc/doc/pics/etool16/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.doc/doc/pics/etool16/add.gif -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.doc/doc/pics/etool16/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.doc/doc/pics/etool16/down.gif -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.doc/doc/pics/etool16/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.doc/doc/pics/etool16/edit.gif -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.doc/doc/pics/etool16/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.doc/doc/pics/etool16/up.gif -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.doc/plugin.xml -------------------------------------------------------------------------------- /designs/soa/plugins/org.obeonetwork.dsl.soa.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/soa/plugins/org.obeonetwork.dsl.soa.doc/pom.xml -------------------------------------------------------------------------------- /designs/statemachine/plugins/org.obeonetwork.dsl.statemachine.design/.settings/.gitignore: -------------------------------------------------------------------------------- 1 | /org.eclipse.jdt.core.prefs 2 | -------------------------------------------------------------------------------- /designs/statemachine/plugins/org.obeonetwork.dsl.statemachine.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/statemachine/plugins/org.obeonetwork.dsl.statemachine.doc/.project -------------------------------------------------------------------------------- /designs/statemachine/plugins/org.obeonetwork.dsl.statemachine.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/designs/statemachine/plugins/org.obeonetwork.dsl.statemachine.doc/pom.xml -------------------------------------------------------------------------------- /is-designer/branding/plugins/org.obeonetwork.is.designer.branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/branding/plugins/org.obeonetwork.is.designer.branding/.project -------------------------------------------------------------------------------- /is-designer/branding/plugins/org.obeonetwork.is.designer.branding/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/branding/plugins/org.obeonetwork.is.designer.branding/pom.xml -------------------------------------------------------------------------------- /is-designer/branding/plugins/org.obeonetwork.is.designer.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/branding/plugins/org.obeonetwork.is.designer.ui/.classpath -------------------------------------------------------------------------------- /is-designer/branding/plugins/org.obeonetwork.is.designer.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/branding/plugins/org.obeonetwork.is.designer.ui/.project -------------------------------------------------------------------------------- /is-designer/branding/plugins/org.obeonetwork.is.designer.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/branding/plugins/org.obeonetwork.is.designer.ui/plugin.xml -------------------------------------------------------------------------------- /is-designer/branding/plugins/org.obeonetwork.is.designer.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/branding/plugins/org.obeonetwork.is.designer.ui/pom.xml -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.parent/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.parent/.project -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.parent/pom.xml -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product.feature/.project -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product.feature/feature.xml -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product.feature/pom.xml -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/.project -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/category.xml -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/about.gif -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_128.gif -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_128.png -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_16.gif -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_16.png -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_256.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_256.gif -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_256.png -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_32.gif -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_32.png -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_48.gif -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_48.png -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_512.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_512.gif -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_512.png -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_64.gif -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_64.png -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/icons/logo_64.xpm -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/isdesigner.p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/isdesigner.p2.inf -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/isdesigner.product: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/isdesigner.product -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/plugin_customization.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP = true 2 | -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/pom.xml -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.product/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.product/site.xml -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.rcptt.parent/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.rcptt.parent/.project -------------------------------------------------------------------------------- /is-designer/releng/org.obeonetwork.is.designer.rcptt.parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/is-designer/releng/org.obeonetwork.is.designer.rcptt.parent/pom.xml -------------------------------------------------------------------------------- /m2doc/cinematic/features/org.obeonetwork.cinematic.m2doc.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/cinematic/features/org.obeonetwork.cinematic.m2doc.feature/.project -------------------------------------------------------------------------------- /m2doc/cinematic/features/org.obeonetwork.cinematic.m2doc.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/cinematic/features/org.obeonetwork.cinematic.m2doc.feature/pom.xml -------------------------------------------------------------------------------- /m2doc/cinematic/plugins/org.obeonetwork.cinematic.m2doc.services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/cinematic/plugins/org.obeonetwork.cinematic.m2doc.services/.project -------------------------------------------------------------------------------- /m2doc/cinematic/plugins/org.obeonetwork.cinematic.m2doc.services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/cinematic/plugins/org.obeonetwork.cinematic.m2doc.services/pom.xml -------------------------------------------------------------------------------- /m2doc/database/features/org.obeonetwork.database.m2doc.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/database/features/org.obeonetwork.database.m2doc.feature/.project -------------------------------------------------------------------------------- /m2doc/database/features/org.obeonetwork.database.m2doc.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/database/features/org.obeonetwork.database.m2doc.feature/feature.xml -------------------------------------------------------------------------------- /m2doc/database/features/org.obeonetwork.database.m2doc.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/database/features/org.obeonetwork.database.m2doc.feature/pom.xml -------------------------------------------------------------------------------- /m2doc/database/plugins/org.obeonetwork.database.m2doc.services/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/database/plugins/org.obeonetwork.database.m2doc.services/.checkstyle -------------------------------------------------------------------------------- /m2doc/database/plugins/org.obeonetwork.database.m2doc.services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/database/plugins/org.obeonetwork.database.m2doc.services/.classpath -------------------------------------------------------------------------------- /m2doc/database/plugins/org.obeonetwork.database.m2doc.services/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /m2doc/database/plugins/org.obeonetwork.database.m2doc.services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/database/plugins/org.obeonetwork.database.m2doc.services/.project -------------------------------------------------------------------------------- /m2doc/database/plugins/org.obeonetwork.database.m2doc.services/doc/toc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/database/plugins/org.obeonetwork.database.m2doc.services/doc/toc.xml -------------------------------------------------------------------------------- /m2doc/database/plugins/org.obeonetwork.database.m2doc.services/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/database/plugins/org.obeonetwork.database.m2doc.services/plugin.xml -------------------------------------------------------------------------------- /m2doc/database/plugins/org.obeonetwork.database.m2doc.services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/database/plugins/org.obeonetwork.database.m2doc.services/pom.xml -------------------------------------------------------------------------------- /m2doc/entity/feature/org.obeonetwork.dsl.entity.m2doc.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/entity/feature/org.obeonetwork.dsl.entity.m2doc.feature/.project -------------------------------------------------------------------------------- /m2doc/entity/feature/org.obeonetwork.dsl.entity.m2doc.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/entity/feature/org.obeonetwork.dsl.entity.m2doc.feature/feature.xml -------------------------------------------------------------------------------- /m2doc/entity/feature/org.obeonetwork.dsl.entity.m2doc.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/entity/feature/org.obeonetwork.dsl.entity.m2doc.feature/pom.xml -------------------------------------------------------------------------------- /m2doc/entity/plugins/org.obeonetwork.dsl.entity.m2doc.services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/entity/plugins/org.obeonetwork.dsl.entity.m2doc.services/.classpath -------------------------------------------------------------------------------- /m2doc/entity/plugins/org.obeonetwork.dsl.entity.m2doc.services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/entity/plugins/org.obeonetwork.dsl.entity.m2doc.services/.project -------------------------------------------------------------------------------- /m2doc/entity/plugins/org.obeonetwork.dsl.entity.m2doc.services/doc/toc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/entity/plugins/org.obeonetwork.dsl.entity.m2doc.services/doc/toc.xml -------------------------------------------------------------------------------- /m2doc/entity/plugins/org.obeonetwork.dsl.entity.m2doc.services/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/entity/plugins/org.obeonetwork.dsl.entity.m2doc.services/plugin.xml -------------------------------------------------------------------------------- /m2doc/entity/plugins/org.obeonetwork.dsl.entity.m2doc.services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/entity/plugins/org.obeonetwork.dsl.entity.m2doc.services/pom.xml -------------------------------------------------------------------------------- /m2doc/graal/features/org.obeonetwork.dsl.graal.m2doc.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/graal/features/org.obeonetwork.dsl.graal.m2doc.feature/.project -------------------------------------------------------------------------------- /m2doc/graal/features/org.obeonetwork.dsl.graal.m2doc.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/graal/features/org.obeonetwork.dsl.graal.m2doc.feature/feature.xml -------------------------------------------------------------------------------- /m2doc/graal/features/org.obeonetwork.dsl.graal.m2doc.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/graal/features/org.obeonetwork.dsl.graal.m2doc.feature/pom.xml -------------------------------------------------------------------------------- /m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services.tests/pom.xml -------------------------------------------------------------------------------- /m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services/.classpath -------------------------------------------------------------------------------- /m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services/.project -------------------------------------------------------------------------------- /m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services/doc/toc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services/doc/toc.xml -------------------------------------------------------------------------------- /m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services/plugin.xml -------------------------------------------------------------------------------- /m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/graal/plugins/org.obeonetwork.dsl.graal.m2doc.services/pom.xml -------------------------------------------------------------------------------- /m2doc/soa/feature/org.obeonetwork.dsl.soa.m2doc.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/feature/org.obeonetwork.dsl.soa.m2doc.feature/.project -------------------------------------------------------------------------------- /m2doc/soa/feature/org.obeonetwork.dsl.soa.m2doc.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/feature/org.obeonetwork.dsl.soa.m2doc.feature/build.properties -------------------------------------------------------------------------------- /m2doc/soa/feature/org.obeonetwork.dsl.soa.m2doc.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/feature/org.obeonetwork.dsl.soa.m2doc.feature/feature.properties -------------------------------------------------------------------------------- /m2doc/soa/feature/org.obeonetwork.dsl.soa.m2doc.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/feature/org.obeonetwork.dsl.soa.m2doc.feature/feature.xml -------------------------------------------------------------------------------- /m2doc/soa/feature/org.obeonetwork.dsl.soa.m2doc.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/feature/org.obeonetwork.dsl.soa.m2doc.feature/pom.xml -------------------------------------------------------------------------------- /m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services.test/.classpath -------------------------------------------------------------------------------- /m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services.test/.project -------------------------------------------------------------------------------- /m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services.test/pom.xml -------------------------------------------------------------------------------- /m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/.classpath -------------------------------------------------------------------------------- /m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/.project -------------------------------------------------------------------------------- /m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/build.properties -------------------------------------------------------------------------------- /m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/doc/toc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/doc/toc.xml -------------------------------------------------------------------------------- /m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/plugin.xml -------------------------------------------------------------------------------- /m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/soa/plugins/org.obeonetwork.dsl.soa.m2doc.services/pom.xml -------------------------------------------------------------------------------- /m2doc/tools/org.obeonetwork.m2doc.doc.generator/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/tools/org.obeonetwork.m2doc.doc.generator/.classpath -------------------------------------------------------------------------------- /m2doc/tools/org.obeonetwork.m2doc.doc.generator/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/tools/org.obeonetwork.m2doc.doc.generator/.project -------------------------------------------------------------------------------- /m2doc/tools/org.obeonetwork.m2doc.doc.generator/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/tools/org.obeonetwork.m2doc.doc.generator/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /m2doc/tools/org.obeonetwork.m2doc.doc.generator/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/m2doc/tools/org.obeonetwork.m2doc.doc.generator/build.properties -------------------------------------------------------------------------------- /models/application/plugins/org.obeonetwork.dsl.application.edit/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/application/plugins/org.obeonetwork.dsl.application.edit/.classpath -------------------------------------------------------------------------------- /models/application/plugins/org.obeonetwork.dsl.application.edit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/application/plugins/org.obeonetwork.dsl.application.edit/.project -------------------------------------------------------------------------------- /models/application/plugins/org.obeonetwork.dsl.application.edit/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/application/plugins/org.obeonetwork.dsl.application.edit/plugin.xml -------------------------------------------------------------------------------- /models/application/plugins/org.obeonetwork.dsl.application.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/application/plugins/org.obeonetwork.dsl.application.edit/pom.xml -------------------------------------------------------------------------------- /models/application/plugins/org.obeonetwork.dsl.application/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/application/plugins/org.obeonetwork.dsl.application/.classpath -------------------------------------------------------------------------------- /models/application/plugins/org.obeonetwork.dsl.application/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/application/plugins/org.obeonetwork.dsl.application/.project -------------------------------------------------------------------------------- /models/application/plugins/org.obeonetwork.dsl.application/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/application/plugins/org.obeonetwork.dsl.application/plugin.xml -------------------------------------------------------------------------------- /models/application/plugins/org.obeonetwork.dsl.application/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/application/plugins/org.obeonetwork.dsl.application/pom.xml -------------------------------------------------------------------------------- /models/cinematic/features/org.obeonetwork.dsl.feature.cinematic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/features/org.obeonetwork.dsl.feature.cinematic/pom.xml -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic.doc/.classpath -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic.doc/.project -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic.doc/plugin.xml -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic.doc/pom.xml -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic.edit/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic.edit/.classpath -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic.edit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic.edit/.project -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic.edit/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic.edit/plugin.xml -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic.edit/pom.xml -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic.editor/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic.editor/.project -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic.editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic.editor/pom.xml -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/.classpath -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/.project -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/build.properties -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Button.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Combo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Combo.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Image.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Label.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Label.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Link.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Page.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Panel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Panel.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Radio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Radio.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Table.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Text.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/icons/Window.gif -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/plugin.xml -------------------------------------------------------------------------------- /models/cinematic/plugins/org.obeonetwork.dsl.cinematic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/plugins/org.obeonetwork.dsl.cinematic/pom.xml -------------------------------------------------------------------------------- /models/cinematic/tests/org.obeonetwork.dsl.cinematic.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/cinematic/tests/org.obeonetwork.dsl.cinematic.tests/.project -------------------------------------------------------------------------------- /models/database/features/org.obeonetwork.dsl.database.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/features/org.obeonetwork.dsl.database.feature/.project -------------------------------------------------------------------------------- /models/database/features/org.obeonetwork.dsl.database.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/features/org.obeonetwork.dsl.database.feature/pom.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.edit/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.edit/.classpath -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.edit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.edit/.project -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.edit/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.edit/plugin.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.edit/pom.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.editor/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.editor/.classpath -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.editor/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.editor/.project -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.editor/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.editor/plugin.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.editor/pom.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.tests/.classpath -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.tests/.project -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database.tests/pom.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database/.classpath -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database/.project -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database/build.properties -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database/plugin.properties -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database/plugin.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.database/pom.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.typeslibrary.edit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.typeslibrary.edit/.project -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.typeslibrary.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.typeslibrary.edit/pom.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.typeslibrary.editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.typeslibrary.editor/pom.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.typeslibrary/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.typeslibrary/.classpath -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.typeslibrary/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.typeslibrary/.project -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.typeslibrary/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.typeslibrary/plugin.xml -------------------------------------------------------------------------------- /models/database/plugins/org.obeonetwork.dsl.typeslibrary/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/database/plugins/org.obeonetwork.dsl.typeslibrary/pom.xml -------------------------------------------------------------------------------- /models/ecorebinding/plugins/org.obeonetwork.dsl.ecorebinding/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/ecorebinding/plugins/org.obeonetwork.dsl.ecorebinding/.classpath -------------------------------------------------------------------------------- /models/ecorebinding/plugins/org.obeonetwork.dsl.ecorebinding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/ecorebinding/plugins/org.obeonetwork.dsl.ecorebinding/.project -------------------------------------------------------------------------------- /models/ecorebinding/plugins/org.obeonetwork.dsl.ecorebinding/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/ecorebinding/plugins/org.obeonetwork.dsl.ecorebinding/plugin.xml -------------------------------------------------------------------------------- /models/ecorebinding/plugins/org.obeonetwork.dsl.ecorebinding/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/ecorebinding/plugins/org.obeonetwork.dsl.ecorebinding/pom.xml -------------------------------------------------------------------------------- /models/entity/features/org.obeonetwork.dsl.feature.entity/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/features/org.obeonetwork.dsl.feature.entity/.project -------------------------------------------------------------------------------- /models/entity/features/org.obeonetwork.dsl.feature.entity/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/features/org.obeonetwork.dsl.feature.entity/feature.xml -------------------------------------------------------------------------------- /models/entity/features/org.obeonetwork.dsl.feature.entity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/features/org.obeonetwork.dsl.feature.entity/pom.xml -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity.edit/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity.edit/.classpath -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity.edit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity.edit/.project -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity.edit/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity.edit/build.properties -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity.edit/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity.edit/plugin.properties -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity.edit/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity.edit/plugin.xml -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity.edit/pom.xml -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity.editor/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity.editor/.classpath -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity.editor/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity.editor/.project -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity.editor/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity.editor/plugin.xml -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity.editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity.editor/pom.xml -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity/.classpath -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity/.project -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity/build.properties -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity/model/entity.aird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity/model/entity.aird -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity/model/entity.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity/model/entity.ecore -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity/model/entity.genmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity/model/entity.genmodel -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity/plugin.properties -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity/plugin.xml -------------------------------------------------------------------------------- /models/entity/plugins/org.obeonetwork.dsl.entity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/entity/plugins/org.obeonetwork.dsl.entity/pom.xml -------------------------------------------------------------------------------- /models/environment/plugins/org.obeonetwork.dsl.environment.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/environment/plugins/org.obeonetwork.dsl.environment.edit/pom.xml -------------------------------------------------------------------------------- /models/environment/plugins/org.obeonetwork.dsl.environment/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/environment/plugins/org.obeonetwork.dsl.environment/.classpath -------------------------------------------------------------------------------- /models/environment/plugins/org.obeonetwork.dsl.environment/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/environment/plugins/org.obeonetwork.dsl.environment/.project -------------------------------------------------------------------------------- /models/environment/plugins/org.obeonetwork.dsl.environment/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/environment/plugins/org.obeonetwork.dsl.environment/plugin.xml -------------------------------------------------------------------------------- /models/environment/plugins/org.obeonetwork.dsl.environment/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/environment/plugins/org.obeonetwork.dsl.environment/pom.xml -------------------------------------------------------------------------------- /models/graal/features/org.obeonetwork.graal.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/features/org.obeonetwork.graal.feature/.project -------------------------------------------------------------------------------- /models/graal/features/org.obeonetwork.graal.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/features/org.obeonetwork.graal.feature/build.properties -------------------------------------------------------------------------------- /models/graal/features/org.obeonetwork.graal.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/features/org.obeonetwork.graal.feature/feature.properties -------------------------------------------------------------------------------- /models/graal/features/org.obeonetwork.graal.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/features/org.obeonetwork.graal.feature/feature.xml -------------------------------------------------------------------------------- /models/graal/features/org.obeonetwork.graal.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/features/org.obeonetwork.graal.feature/pom.xml -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.doc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.doc/.classpath -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.doc/.project -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.doc/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.doc/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.doc/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.doc/build.properties -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.doc/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.doc/plugin.xml -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.doc/pom.xml -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.edit/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.edit/.classpath -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.edit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.edit/.project -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.edit/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.edit/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.edit/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.edit/build.properties -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.edit/icons/full/obj16/Or.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.edit/icons/full/obj16/Or.gif -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.edit/model/graal.components: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.edit/model/graal.components -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.edit/model/graal.eefgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.edit/model/graal.eefgen -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.edit/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.edit/plugin.properties -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.edit/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.edit/plugin.xml -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.edit/pom.xml -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.editor/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.editor/.classpath -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.editor/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.editor/.project -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.editor/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.editor/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.editor/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.editor/build.properties -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.editor/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.editor/plugin.properties -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.editor/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.editor/plugin.xml -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.editor/pom.xml -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.tests/.classpath -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.tests/.project -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal.tests/build.properties -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal/.classpath -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal/.project -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal/build.properties -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal/model/graal.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal/model/graal.ecore -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal/model/graal.genmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal/model/graal.genmodel -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal/plugin.properties -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal/plugin.xml -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal/pom.xml -------------------------------------------------------------------------------- /models/graal/plugins/org.obeonetwork.graal/representations.aird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/plugins/org.obeonetwork.graal/representations.aird -------------------------------------------------------------------------------- /models/graal/releng/org.obeonetwork.graal.repository/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/releng/org.obeonetwork.graal.repository/.project -------------------------------------------------------------------------------- /models/graal/releng/org.obeonetwork.graal.repository/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/releng/org.obeonetwork.graal.repository/category.xml -------------------------------------------------------------------------------- /models/graal/releng/org.obeonetwork.graal.repository/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/releng/org.obeonetwork.graal.repository/index.html -------------------------------------------------------------------------------- /models/graal/releng/org.obeonetwork.graal.repository/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/graal/releng/org.obeonetwork.graal.repository/pom.xml -------------------------------------------------------------------------------- /models/interaction/plugins/org.obeonetwork.dsl.interaction.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/interaction/plugins/org.obeonetwork.dsl.interaction.edit/pom.xml -------------------------------------------------------------------------------- /models/interaction/plugins/org.obeonetwork.dsl.interaction/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/interaction/plugins/org.obeonetwork.dsl.interaction/.classpath -------------------------------------------------------------------------------- /models/interaction/plugins/org.obeonetwork.dsl.interaction/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/interaction/plugins/org.obeonetwork.dsl.interaction/.project -------------------------------------------------------------------------------- /models/interaction/plugins/org.obeonetwork.dsl.interaction/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/interaction/plugins/org.obeonetwork.dsl.interaction/plugin.xml -------------------------------------------------------------------------------- /models/interaction/plugins/org.obeonetwork.dsl.interaction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/interaction/plugins/org.obeonetwork.dsl.interaction/pom.xml -------------------------------------------------------------------------------- /models/migration/plugins/org.obeonetwork.dsl.migration.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/migration/plugins/org.obeonetwork.dsl.migration.tests/.classpath -------------------------------------------------------------------------------- /models/migration/plugins/org.obeonetwork.dsl.migration.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/migration/plugins/org.obeonetwork.dsl.migration.tests/.project -------------------------------------------------------------------------------- /models/migration/plugins/org.obeonetwork.dsl.migration.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/migration/plugins/org.obeonetwork.dsl.migration.tests/pom.xml -------------------------------------------------------------------------------- /models/overview/features/org.obeonetwork.dsl.feature.overview/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/features/org.obeonetwork.dsl.feature.overview/.project -------------------------------------------------------------------------------- /models/overview/features/org.obeonetwork.dsl.feature.overview/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/features/org.obeonetwork.dsl.feature.overview/pom.xml -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview.edit/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview.edit/.classpath -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview.edit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview.edit/.project -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview.edit/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview.edit/plugin.xml -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview.edit/pom.xml -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview.editor/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview.editor/.classpath -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview.editor/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview.editor/.project -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview.editor/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview.editor/plugin.xml -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview.editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview.editor/pom.xml -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview/.classpath -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview/.project -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview/build.properties -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview/plugin.properties -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview/plugin.xml -------------------------------------------------------------------------------- /models/overview/plugins/org.obeonetwork.dsl.overview/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/overview/plugins/org.obeonetwork.dsl.overview/pom.xml -------------------------------------------------------------------------------- /models/requirement/plugins/org.obeonetwork.dsl.requirement.doc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/requirement/plugins/org.obeonetwork.dsl.requirement.doc/.project -------------------------------------------------------------------------------- /models/requirement/plugins/org.obeonetwork.dsl.requirement.doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/requirement/plugins/org.obeonetwork.dsl.requirement.doc/pom.xml -------------------------------------------------------------------------------- /models/requirement/plugins/org.obeonetwork.dsl.requirement.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/requirement/plugins/org.obeonetwork.dsl.requirement.edit/pom.xml -------------------------------------------------------------------------------- /models/requirement/plugins/org.obeonetwork.dsl.requirement/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/requirement/plugins/org.obeonetwork.dsl.requirement/.classpath -------------------------------------------------------------------------------- /models/requirement/plugins/org.obeonetwork.dsl.requirement/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/requirement/plugins/org.obeonetwork.dsl.requirement/.project -------------------------------------------------------------------------------- /models/requirement/plugins/org.obeonetwork.dsl.requirement/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/requirement/plugins/org.obeonetwork.dsl.requirement/plugin.xml -------------------------------------------------------------------------------- /models/requirement/plugins/org.obeonetwork.dsl.requirement/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/requirement/plugins/org.obeonetwork.dsl.requirement/pom.xml -------------------------------------------------------------------------------- /models/soa/features/org.obeonetwork.dsl.feature.soa/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/features/org.obeonetwork.dsl.feature.soa/.project -------------------------------------------------------------------------------- /models/soa/features/org.obeonetwork.dsl.feature.soa/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/features/org.obeonetwork.dsl.feature.soa/build.properties -------------------------------------------------------------------------------- /models/soa/features/org.obeonetwork.dsl.feature.soa/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/features/org.obeonetwork.dsl.feature.soa/feature.properties -------------------------------------------------------------------------------- /models/soa/features/org.obeonetwork.dsl.feature.soa/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/features/org.obeonetwork.dsl.feature.soa/feature.xml -------------------------------------------------------------------------------- /models/soa/features/org.obeonetwork.dsl.feature.soa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/features/org.obeonetwork.dsl.feature.soa/pom.xml -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.edit/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.edit/.classpath -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.edit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.edit/.project -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.edit/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.edit/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.edit/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.edit/build.properties -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.edit/models/soa.components: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.edit/models/soa.components -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.edit/models/soa.eefgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.edit/models/soa.eefgen -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.edit/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.edit/plugin.properties -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.edit/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.edit/plugin.xml -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.edit/pom.xml -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.editor/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.editor/.classpath -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.editor/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.editor/.project -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.editor/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.editor/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.editor/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.editor/build.properties -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.editor/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.editor/plugin.properties -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.editor/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.editor/plugin.xml -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa.editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa.editor/pom.xml -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa/.classpath -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa/.project -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa/build.properties -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa/model/soa.aird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa/model/soa.aird -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa/model/soa.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa/model/soa.ecore -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa/model/soa.genmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa/model/soa.genmodel -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa/plugin.properties -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa/plugin.xml -------------------------------------------------------------------------------- /models/soa/plugins/org.obeonetwork.dsl.soa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/soa/plugins/org.obeonetwork.dsl.soa/pom.xml -------------------------------------------------------------------------------- /models/statemachine/plugins/org.obeonetwork.dsl.statemachine/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/statemachine/plugins/org.obeonetwork.dsl.statemachine/.classpath -------------------------------------------------------------------------------- /models/statemachine/plugins/org.obeonetwork.dsl.statemachine/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/statemachine/plugins/org.obeonetwork.dsl.statemachine/.project -------------------------------------------------------------------------------- /models/statemachine/plugins/org.obeonetwork.dsl.statemachine/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/statemachine/plugins/org.obeonetwork.dsl.statemachine/plugin.xml -------------------------------------------------------------------------------- /models/statemachine/plugins/org.obeonetwork.dsl.statemachine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/statemachine/plugins/org.obeonetwork.dsl.statemachine/pom.xml -------------------------------------------------------------------------------- /models/technicalid/plugins/org.obeonetwork.dsl.technicalid.edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/technicalid/plugins/org.obeonetwork.dsl.technicalid.edit/pom.xml -------------------------------------------------------------------------------- /models/technicalid/plugins/org.obeonetwork.dsl.technicalid/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/technicalid/plugins/org.obeonetwork.dsl.technicalid/.classpath -------------------------------------------------------------------------------- /models/technicalid/plugins/org.obeonetwork.dsl.technicalid/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/technicalid/plugins/org.obeonetwork.dsl.technicalid/.project -------------------------------------------------------------------------------- /models/technicalid/plugins/org.obeonetwork.dsl.technicalid/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/technicalid/plugins/org.obeonetwork.dsl.technicalid/plugin.xml -------------------------------------------------------------------------------- /models/technicalid/plugins/org.obeonetwork.dsl.technicalid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/models/technicalid/plugins/org.obeonetwork.dsl.technicalid/pom.xml -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.informationsystem.metamodels.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.dsl.informationsystem.metamodels.feature/pom.xml -------------------------------------------------------------------------------- /releng/org.obeonetwork.informationsystem.design.repository/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.informationsystem.design.repository/.project -------------------------------------------------------------------------------- /releng/org.obeonetwork.informationsystem.design.repository/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.informationsystem.design.repository/category.xml -------------------------------------------------------------------------------- /releng/org.obeonetwork.informationsystem.design.repository/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.informationsystem.design.repository/index.html -------------------------------------------------------------------------------- /releng/org.obeonetwork.informationsystem.design.repository/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.informationsystem.design.repository/pom.xml -------------------------------------------------------------------------------- /releng/org.obeonetwork.informationsystem.design.repository/web/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.informationsystem.design.repository/web/site.css -------------------------------------------------------------------------------- /releng/org.obeonetwork.informationsystem.design.repository/web/site.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.informationsystem.design.repository/web/site.xsl -------------------------------------------------------------------------------- /releng/org.obeonetwork.informationsystem.parent/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.informationsystem.parent/.project -------------------------------------------------------------------------------- /releng/org.obeonetwork.informationsystem.parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.informationsystem.parent/pom.xml -------------------------------------------------------------------------------- /releng/org.obeonetwork.is.license/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.is.license/.project -------------------------------------------------------------------------------- /releng/org.obeonetwork.is.license/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.is.license/build.properties -------------------------------------------------------------------------------- /releng/org.obeonetwork.is.license/epl-v20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.is.license/epl-v20.html -------------------------------------------------------------------------------- /releng/org.obeonetwork.is.license/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.is.license/feature.properties -------------------------------------------------------------------------------- /releng/org.obeonetwork.is.license/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.is.license/feature.xml -------------------------------------------------------------------------------- /releng/org.obeonetwork.is.license/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.is.license/license.html -------------------------------------------------------------------------------- /releng/org.obeonetwork.is.license/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/releng/org.obeonetwork.is.license/pom.xml -------------------------------------------------------------------------------- /reversers/database-synchroniser/features/liquibase.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database-synchroniser/features/liquibase.feature/.project -------------------------------------------------------------------------------- /reversers/database-synchroniser/features/liquibase.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database-synchroniser/features/liquibase.feature/feature.xml -------------------------------------------------------------------------------- /reversers/database-synchroniser/features/liquibase.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database-synchroniser/features/liquibase.feature/pom.xml -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/liquibase/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database-synchroniser/plugins/liquibase/.classpath -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/liquibase/.gitignore: -------------------------------------------------------------------------------- 1 | /jars/ 2 | -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/liquibase/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database-synchroniser/plugins/liquibase/.project -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/liquibase/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database-synchroniser/plugins/liquibase/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/liquibase/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database-synchroniser/plugins/liquibase/build.properties -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/liquibase/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database-synchroniser/plugins/liquibase/license.html -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/liquibase/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database-synchroniser/plugins/liquibase/plugin.properties -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/liquibase/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database-synchroniser/plugins/liquibase/pom.xml -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/org.obeonetwork.dsl.database.compare.tests/.gitignore: -------------------------------------------------------------------------------- 1 | sql-gen/ -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/org.obeonetwork.dsl.database.gen.common.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/org.obeonetwork.dsl.database.gen.common/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/org.obeonetwork.dsl.database.liquibasegen.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /reversers/database-synchroniser/plugins/org.obeonetwork.dsl.database.liquibasegen/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /reversers/database/plugins/org.obeonetwork.dsl.database.drivers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database/plugins/org.obeonetwork.dsl.database.drivers/pom.xml -------------------------------------------------------------------------------- /reversers/database/plugins/org.obeonetwork.dsl.database.reverse/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /reversers/database/plugins/org.obeonetwork.dsl.database.reverse/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /reversers/database/plugins/org.obeonetwork.dsl.database.reverse/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/reversers/database/plugins/org.obeonetwork.dsl.database.reverse/pom.xml -------------------------------------------------------------------------------- /samples/features/org.obeonetwork.is.samples.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/features/org.obeonetwork.is.samples.feature/.project -------------------------------------------------------------------------------- /samples/features/org.obeonetwork.is.samples.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/features/org.obeonetwork.is.samples.feature/build.properties -------------------------------------------------------------------------------- /samples/features/org.obeonetwork.is.samples.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/features/org.obeonetwork.is.samples.feature/feature.properties -------------------------------------------------------------------------------- /samples/features/org.obeonetwork.is.samples.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/features/org.obeonetwork.is.samples.feature/feature.xml -------------------------------------------------------------------------------- /samples/features/org.obeonetwork.is.samples.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/features/org.obeonetwork.is.samples.feature/pom.xml -------------------------------------------------------------------------------- /samples/plugins/org.obeonetwork.is.samples/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/plugins/org.obeonetwork.is.samples/.classpath -------------------------------------------------------------------------------- /samples/plugins/org.obeonetwork.is.samples/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/plugins/org.obeonetwork.is.samples/.project -------------------------------------------------------------------------------- /samples/plugins/org.obeonetwork.is.samples/CONTRIBUTE-EXAMPLE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/plugins/org.obeonetwork.is.samples/CONTRIBUTE-EXAMPLE.txt -------------------------------------------------------------------------------- /samples/plugins/org.obeonetwork.is.samples/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/plugins/org.obeonetwork.is.samples/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /samples/plugins/org.obeonetwork.is.samples/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/plugins/org.obeonetwork.is.samples/build.properties -------------------------------------------------------------------------------- /samples/plugins/org.obeonetwork.is.samples/icons/E-BookStore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/plugins/org.obeonetwork.is.samples/icons/E-BookStore.gif -------------------------------------------------------------------------------- /samples/plugins/org.obeonetwork.is.samples/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/plugins/org.obeonetwork.is.samples/plugin.xml -------------------------------------------------------------------------------- /samples/plugins/org.obeonetwork.is.samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObeoNetwork/InformationSystem/HEAD/samples/plugins/org.obeonetwork.is.samples/pom.xml --------------------------------------------------------------------------------