├── .gitattributes ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── LICENSE ├── README.md ├── all-in-one ├── .gitignore ├── .project ├── bonitastudio-features.p2.inf ├── bonitastudio-features.product ├── createInstallerProject.xml ├── icons │ ├── bonitasoft-icon-128-128-transparent.icns │ ├── bonitasoft-icon-128-128-transparent.ico │ └── bonitasoft.ico ├── installer │ ├── i18n │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ └── messages_pt_BR.properties │ ├── images │ │ ├── .gitignore │ │ ├── icon-installer-48.png │ │ ├── install.icns │ │ ├── leftImage.png │ │ ├── slide01-01.png │ │ ├── slide02-01.png │ │ ├── slide03-01.png │ │ ├── splash_without_version.png │ │ ├── topRight.png │ │ └── windows.ico │ ├── installer.properties │ └── installer_project_template.xml ├── pom.xml └── verify-packaging.groovy ├── bundles ├── features │ ├── bos-branding-feature │ │ ├── .project │ │ ├── build.properties │ │ ├── feature.xml │ │ └── pom.xml │ ├── platform-specific-feature │ │ ├── .project │ │ ├── build.properties │ │ ├── feature.xml │ │ └── pom.xml │ ├── pom.xml │ ├── rootfiles-feature │ │ ├── .project │ │ ├── bonitasoft-icon-128-128-transparent.png │ │ ├── build.properties │ │ ├── feature.xml │ │ └── pom.xml │ ├── studio-bos-specific-feature │ │ ├── .project │ │ ├── build.properties │ │ ├── feature.xml │ │ ├── gpl-2.0.txt │ │ └── pom.xml │ └── studio-feature │ │ ├── .project │ │ ├── build.properties │ │ ├── feature.xml │ │ └── pom.xml ├── plugins │ ├── bonita-studio-watchdog │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── bonitasoft │ │ │ │ └── console │ │ │ │ └── server │ │ │ │ └── listener │ │ │ │ └── StudioWatchdogListener.java │ │ │ └── webapp │ │ │ ├── VERSION │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── org.bonitasoft.engine.bonita-client │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.core.resources.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ └── pom.xml │ ├── org.bonitasoft.engine.bonita-common │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.core.resources.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ └── pom.xml │ ├── org.bonitasoft.studio-models │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── Copyofprocess.gmfgen.prefs │ │ │ ├── bpmn.gmfgen.prefs │ │ │ ├── form.gmfgen.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── process.gmfgen.prefs │ │ │ └── process2.gmfgen.prefs │ │ ├── GMFTemplates │ │ │ ├── README │ │ │ ├── aspects │ │ │ │ ├── diagram │ │ │ │ │ ├── editparts │ │ │ │ │ │ ├── ChildNodeLabelEditPart.xpt │ │ │ │ │ │ ├── CompartmentEditPart.xpt │ │ │ │ │ │ ├── DiagramEditPart.xpt │ │ │ │ │ │ ├── ExternalNodeLabelEditPart.xpt │ │ │ │ │ │ ├── LinkEditPart.xpt │ │ │ │ │ │ ├── LinkLabelEditPart.xpt │ │ │ │ │ │ ├── NodeEditPart.xpt │ │ │ │ │ │ └── NodeLabelEditPart.xpt │ │ │ │ │ └── editpolicies │ │ │ │ │ │ └── ChildContainerCanonicalEditPolicy.xpt │ │ │ │ ├── impl │ │ │ │ │ └── diagram │ │ │ │ │ │ └── editparts │ │ │ │ │ │ ├── ExternalNodeLabelEditPart.xpt │ │ │ │ │ │ ├── NodeEditPart.xpt │ │ │ │ │ │ └── TextAware.xpt │ │ │ │ ├── parsers │ │ │ │ │ └── PredefinedParser.xpt │ │ │ │ └── xpt │ │ │ │ │ ├── diagram │ │ │ │ │ ├── editparts │ │ │ │ │ │ └── EditPartFactory.xpt │ │ │ │ │ └── editpolicies │ │ │ │ │ │ ├── NodeItemSemanticEditPolicy.xpt │ │ │ │ │ │ └── TextFeedback.xpt │ │ │ │ │ ├── editor │ │ │ │ │ ├── DocumentProvider.xpt │ │ │ │ │ ├── Editor.xpt │ │ │ │ │ ├── ResourceSetInfo.xpt │ │ │ │ │ └── palette │ │ │ │ │ │ └── PaletteFactory.xpt │ │ │ │ │ └── providers │ │ │ │ │ ├── ElementTypes.xpt │ │ │ │ │ ├── ValidationProvider.xpt │ │ │ │ │ └── extensions.xpt │ │ │ └── xpt │ │ │ │ ├── Externalizer.xpt │ │ │ │ ├── diagram │ │ │ │ └── preferences │ │ │ │ │ ├── PreferenceInitializer.xpt │ │ │ │ │ └── extensions.xpt │ │ │ │ ├── editor │ │ │ │ ├── DiagramEditorContextMenuProvider.xpt │ │ │ │ └── DocumentProvider.xpt │ │ │ │ ├── plugin │ │ │ │ ├── manifest.xpt │ │ │ │ └── plugin.xpt │ │ │ │ ├── propsheet │ │ │ │ └── extensions.xpt │ │ │ │ └── providers │ │ │ │ ├── ValidationDecoratorProvider.xpt │ │ │ │ └── extensions.xpt │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── README.adoc │ │ ├── build.properties │ │ ├── generateGenModels.xml │ │ ├── pom.xml │ │ ├── process.gmfgen │ │ ├── process.gmfgraph │ │ ├── process.gmfmap │ │ └── process.gmftool │ ├── org.bonitasoft.studio-product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.bmp │ │ ├── build.properties │ │ ├── icons │ │ │ ├── bonitasoft-icon-128-128-transparent.png │ │ │ ├── bonitasoft-icon-16-16-transparent.png │ │ │ ├── bonitasoft-icon-16-16-transparent@2x.png │ │ │ ├── bonitasoft-icon-32-32-transparent.png │ │ │ ├── bonitasoft-icon-48-48-transparent.png │ │ │ └── bonitasoft-icon-64-64-transparent.png │ │ ├── plugin.xml │ │ ├── plugin_customization.ini │ │ ├── pom.xml │ │ ├── splash_without_version.bmp │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── Activator.java │ ├── org.bonitasoft.studio.application.tests │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── application │ │ │ ├── BonitaStudioApplicationMigrationTest.java │ │ │ ├── BonitaStudioApplicationTest.java │ │ │ ├── HealthCheckServerManagerTest.java │ │ │ ├── handler │ │ │ ├── DeleteHandlerTest.java │ │ │ └── ImportExtensionHandlerTest.java │ │ │ ├── maven │ │ │ └── security │ │ │ │ └── MavenPasswordManagerTest.java │ │ │ ├── operation │ │ │ └── DeployProjectOperationTest.java │ │ │ ├── statistics │ │ │ └── DefaultStatisticsManagerTest.java │ │ │ ├── ui │ │ │ └── control │ │ │ │ ├── ExtensionTypeHandlerTest.java │ │ │ │ └── model │ │ │ │ └── dependency │ │ │ │ ├── BonitaArtifactDependencyTest.java │ │ │ │ └── BonitaArtifactDependencyVersionTest.java │ │ │ ├── validator │ │ │ ├── ConnectorExtensionTypeValidatorTest.java │ │ │ ├── MavenSettingsValidatorTest.java │ │ │ ├── RestApiExtensionExtensionTypeValidatorTest.java │ │ │ ├── ThemeExtensionTypeValidatorTest.java │ │ │ ├── my-rest-api-0.0.1-SNAPSHOT.jar │ │ │ ├── my-rest-api-0.0.1-SNAPSHOT.zip │ │ │ ├── my-theme-0.0.1-SNAPSHOT.zip │ │ │ ├── myFilter-1.0-SNAPSHOT.jar │ │ │ └── myFilter-1.0-SNAPSHOT.zip │ │ │ └── workspace_7_14_0.zip │ ├── org.bonitasoft.studio.application │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── LegacyIDE.e4xmi │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── Connector.png │ │ │ ├── Execution-D.png │ │ │ ├── Picto_Studio_Data_16x16.png │ │ │ ├── Picto_Studio_Exe_16x16.png │ │ │ ├── about.png │ │ │ ├── about_disabled.png │ │ │ ├── alt_window_16.gif │ │ │ ├── alt_window_32.gif │ │ │ ├── appearanceView.png │ │ │ ├── assistant.png │ │ │ ├── assistant_disabled.png │ │ │ ├── balai.png │ │ │ ├── bonitasoft-icon-128-128-transparent.png │ │ │ ├── bonitasoft-icon-16-16-transparent.png │ │ │ ├── bonitasoft-icon-16-16-transparent@2x.png │ │ │ ├── bonitasoft-icon-32-32-transparent.png │ │ │ ├── bonitasoft-icon-48-48-transparent.png │ │ │ ├── bonitasoft-icon-64-64-transparent.png │ │ │ ├── browse_contributions.png │ │ │ ├── clean_run_history.png │ │ │ ├── delete-disabled.png │ │ │ ├── delete.png │ │ │ ├── deploy_application_web.png │ │ │ ├── details.png │ │ │ ├── duplicate.png │ │ │ ├── duplicate_disabled.png │ │ │ ├── edit-connector.png │ │ │ ├── entonnoir-disabled.png │ │ │ ├── entonnoir-sans-plus-disabled.png │ │ │ ├── entonnoir-sans-plus.png │ │ │ ├── entonnoir.png │ │ │ ├── expor-connector-03.png │ │ │ ├── export-connector-03-b.png │ │ │ ├── export-transp-color.png │ │ │ ├── export.png │ │ │ ├── find.png │ │ │ ├── form.png │ │ │ ├── form_disabled.png │ │ │ ├── full_screen.png │ │ │ ├── group-disabled.png │ │ │ ├── group-plus-disabled.png │ │ │ ├── group-plus.png │ │ │ ├── group.png │ │ │ ├── help.png │ │ │ ├── help_disabled.png │ │ │ ├── import-connector-04-b.png │ │ │ ├── import-connector-04.png │ │ │ ├── import.png │ │ │ ├── javaPerspective.gif │ │ │ ├── log.png │ │ │ ├── log_disabled.png │ │ │ ├── menuIcons │ │ │ │ ├── Database.png │ │ │ │ ├── Messaging.png │ │ │ │ ├── Other.png │ │ │ │ ├── Other_hover.png │ │ │ │ ├── Other_selected.png │ │ │ │ ├── about.png │ │ │ │ ├── advanced_export.png │ │ │ │ ├── advanced_export_disabled.png │ │ │ │ ├── application_developer.png │ │ │ │ ├── application_developer_disabled.png │ │ │ │ ├── bonita.png │ │ │ │ ├── bonita_disabled.png │ │ │ │ ├── bonita_hover.png │ │ │ │ ├── bonita_selected.png │ │ │ │ ├── book.png │ │ │ │ ├── browse-contribution.png │ │ │ │ ├── close.png │ │ │ │ ├── close_all.png │ │ │ │ ├── close_all_disabled.png │ │ │ │ ├── close_disabled.png │ │ │ │ ├── configure.png │ │ │ │ ├── configure_disabled.png │ │ │ │ ├── connectivity.png │ │ │ │ ├── connectivity@2x.png │ │ │ │ ├── copy.png │ │ │ │ ├── copy_disabled.png │ │ │ │ ├── copy_hover.png │ │ │ │ ├── copy_selected.png │ │ │ │ ├── db.png │ │ │ │ ├── db_disabled.png │ │ │ │ ├── db_hover.png │ │ │ │ ├── db_selected.png │ │ │ │ ├── details.png │ │ │ │ ├── details_disabled.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── duplicate_disabled.png │ │ │ │ ├── edit.png │ │ │ │ ├── edit_selected.png │ │ │ │ ├── exit.png │ │ │ │ ├── exit_disabled.png │ │ │ │ ├── export.png │ │ │ │ ├── export_hover.png │ │ │ │ ├── export_selected.png │ │ │ │ ├── form.png │ │ │ │ ├── fullscreen.gif │ │ │ │ ├── fullscreen.png │ │ │ │ ├── help.png │ │ │ │ ├── help_disabled.png │ │ │ │ ├── help_hover.png │ │ │ │ ├── help_selected.png │ │ │ │ ├── image.png │ │ │ │ ├── image_disabled.png │ │ │ │ ├── import_hover.png │ │ │ │ ├── import_selected.png │ │ │ │ ├── logs.png │ │ │ │ ├── new.png │ │ │ │ ├── new_disabled.png │ │ │ │ ├── new_hover.png │ │ │ │ ├── new_selected.png │ │ │ │ ├── open.png │ │ │ │ ├── open_disabled.png │ │ │ │ ├── open_hover.png │ │ │ │ ├── open_selected.png │ │ │ │ ├── outline.png │ │ │ │ ├── outline_disabled.png │ │ │ │ ├── outline_hover.png │ │ │ │ ├── outline_selected.png │ │ │ │ ├── paste.png │ │ │ │ ├── paste_disabled.png │ │ │ │ ├── paste_hover.png │ │ │ │ ├── paste_selected.png │ │ │ │ ├── preferences.png │ │ │ │ ├── preferences@2x.png │ │ │ │ ├── preview.png │ │ │ │ ├── preview_disabled.png │ │ │ │ ├── print.png │ │ │ │ ├── print_disabled.png │ │ │ │ ├── print_hover.png │ │ │ │ ├── print_selected.png │ │ │ │ ├── prise.png │ │ │ │ ├── prise_hover.png │ │ │ │ ├── prise_selected.png │ │ │ │ ├── process.png │ │ │ │ ├── process_hover.png │ │ │ │ ├── process_selected.png │ │ │ │ ├── project.png │ │ │ │ ├── project@2x.png │ │ │ │ ├── project_dark.png │ │ │ │ ├── project_dark@2x.png │ │ │ │ ├── recently.png │ │ │ │ ├── reset.png │ │ │ │ ├── restore.gif │ │ │ │ ├── rouage.png │ │ │ │ ├── run.png │ │ │ │ ├── run_disabled.png │ │ │ │ ├── run_hover.png │ │ │ │ ├── run_selected.png │ │ │ │ ├── save-as-image.png │ │ │ │ ├── save.png │ │ │ │ ├── save@2x.png │ │ │ │ ├── save_all.png │ │ │ │ ├── save_all_disabled.png │ │ │ │ ├── save_dark.png │ │ │ │ ├── save_dark@2x.png │ │ │ │ ├── save_disabled.png │ │ │ │ ├── save_hover.png │ │ │ │ ├── save_selected.png │ │ │ │ ├── search-icon.gif │ │ │ │ ├── showInExplorer.png │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2x.png │ │ │ │ ├── switch_dark.png │ │ │ │ ├── switch_dark@2x.png │ │ │ │ ├── user_guidance.png │ │ │ │ ├── user_guidance_disabled.png │ │ │ │ ├── user_xp.png │ │ │ │ ├── user_xp_disabled.png │ │ │ │ ├── welcome.png │ │ │ │ └── welcome_disabled.png │ │ │ ├── multiInstanciation-without.gif │ │ │ ├── multiInstanciation-without.png │ │ │ ├── multiInstanciation.gif │ │ │ ├── multiInstanciation.png │ │ │ ├── new-connector-02-b.png │ │ │ ├── new-connector-02.png │ │ │ ├── new.png │ │ │ ├── newfile_wiz.png │ │ │ ├── newfolder_wiz.gif │ │ │ ├── open-connector-01-b.png │ │ │ ├── open-connector-01.png │ │ │ ├── open.png │ │ │ ├── openUserExperience.png │ │ │ ├── openUserExperience_disabled.png │ │ │ ├── outline.png │ │ │ ├── overview-disabled.png │ │ │ ├── overview.png │ │ │ ├── redo.png │ │ │ ├── redo_disabled.png │ │ │ ├── refresh.png │ │ │ ├── reset_server.png │ │ │ ├── reset_server_disabled.png │ │ │ ├── reset_view.png │ │ │ ├── reset_view_disabled.png │ │ │ ├── resource_persp.png │ │ │ ├── resource_persp@2x.png │ │ │ ├── run.png │ │ │ ├── run_context_specified.png │ │ │ ├── run_context_specified_disab.png │ │ │ ├── run_disabled.png │ │ │ ├── save.png │ │ │ ├── show_view.png │ │ │ ├── show_view_disabled.png │ │ │ ├── undo.png │ │ │ ├── undo_disabled.png │ │ │ ├── welcome.png │ │ │ └── welcome_disabled.png │ │ ├── logback.xml │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── PropertiesView.exsd │ │ │ ├── postImport.exsd │ │ │ ├── preImport.exsd │ │ │ ├── preshutdown.exsd │ │ │ └── prestartup.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── application │ │ │ ├── ApplicationPlugin.java │ │ │ ├── BonitaStudioApplication.java │ │ │ ├── BonitaStudioWorkbenchAdvisor.java │ │ │ ├── BonitaStudioWorkbenchWindowAdvisor.java │ │ │ ├── CustomImplementationCollector.java │ │ │ ├── HealthCheckServerManager.java │ │ │ ├── LifeCycleManager.java │ │ │ ├── OpenIntroAddon.java │ │ │ ├── RemoveQuickAccessProcessor.java │ │ │ ├── actions │ │ │ ├── AboutDialog.java │ │ │ ├── AboutDialogHandler.java │ │ │ ├── CustomEnhancedPrintActionHelper.java │ │ │ ├── CustomRenderedPrintPreviewAction.java │ │ │ ├── CustomRenderedPrintPreviewHelper.java │ │ │ ├── EditorRefreshActionDelegate.java │ │ │ ├── FindHandler.java │ │ │ ├── FullscreenHandler.java │ │ │ ├── OpenApplicationCommand.java │ │ │ ├── OpenConsoleCommand.java │ │ │ ├── OpenEngineLogCommand.java │ │ │ ├── OpenIntroCommandHandler.java │ │ │ ├── OpenLogCommand.java │ │ │ ├── OpenUIDLogCommand.java │ │ │ ├── PrintCommandHandler.java │ │ │ ├── ProcessTreeLabelProvider.java │ │ │ ├── ProjectActionProvider.java │ │ │ ├── RecentlyModifiedContribution.java │ │ │ ├── RedoCommandHandler.java │ │ │ ├── RefreshConnectorHandler.java │ │ │ ├── RefreshHandler.java │ │ │ ├── RenameDiagramCommandHandler.java │ │ │ ├── ResetPerspectiveCommand.java │ │ │ ├── SaveCommandHandler.java │ │ │ ├── SaveProcessAsCommand.java │ │ │ ├── ShowHelpCommand.java │ │ │ ├── ShowOverviewHandler.java │ │ │ ├── SwitchPaletteMode.java │ │ │ ├── UndoCommandHandler.java │ │ │ └── coolbar │ │ │ │ ├── NormalCoolBarHandler.java │ │ │ │ └── SmallCoolBarHandler.java │ │ │ ├── contribution │ │ │ ├── CheckJavaVersionPostStartupContribution.java │ │ │ ├── IPostImportContribution.java │ │ │ ├── IPreImportContribution.java │ │ │ ├── IPreShutdownContribution.java │ │ │ ├── IPreStartupContribution.java │ │ │ └── RecoverWorkspaceContribution.java │ │ │ ├── coolbar │ │ │ ├── CoolbarToolControl.java │ │ │ ├── CustomToolItem.java │ │ │ ├── DeployCoolbarItem.java │ │ │ ├── HelpCoolbarItem.java │ │ │ ├── NewCoolbarItem.java │ │ │ ├── PreferenceCoolbarItem.java │ │ │ ├── ProjectOverviewCoolbarItem.java │ │ │ ├── SaveCoolbarItem.java │ │ │ └── SeparatorCoolbarItem.java │ │ │ ├── dialog │ │ │ ├── DataCollectionDialog.java │ │ │ ├── ExitDialog.java │ │ │ └── SwitchRepositoryDialog.java │ │ │ ├── event │ │ │ └── ExtensionEvent.java │ │ │ ├── handler │ │ │ ├── AbstractProjectMetadataHandler.java │ │ │ ├── AddDatabaseDriverHandler.java │ │ │ ├── DeleteHandler.java │ │ │ ├── DeployArtifactsHandler.java │ │ │ ├── DeployHandler.java │ │ │ ├── EditProjectMetadataHandler.java │ │ │ ├── ImportArtifactsFromZipHandler.java │ │ │ ├── ImportExtensionHandler.java │ │ │ ├── NewFileHandler.java │ │ │ ├── NewFolderHandler.java │ │ │ ├── NewProjectHandler.java │ │ │ ├── NewWizardHandler.java │ │ │ ├── OpenExtensionViewHandler.java │ │ │ ├── OpenExternalBrowserHandler.java │ │ │ ├── OpenHandler.java │ │ │ ├── OpenMarketplaceHandler.java │ │ │ ├── OpenOverviewViewHandler.java │ │ │ ├── OpenReleaseNoteHandler.java │ │ │ ├── RefreshProjectHandler.java │ │ │ ├── RenameHandler.java │ │ │ ├── ShowRepositoryInSystemExplorerHandler.java │ │ │ ├── SwitchRepositoriesWorkspaceHandler.java │ │ │ └── UpdateGavHandler.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── maven │ │ │ ├── BonitaMavenConfigurationManager.java │ │ │ ├── CheckMavenConfigurationStartup.java │ │ │ ├── MavenSettingsIO.java │ │ │ ├── dialog │ │ │ │ └── TestMavenConnectionMessageDialog.java │ │ │ ├── handler │ │ │ │ └── TestMavenRepositoriesConnectionHandler.java │ │ │ ├── preference │ │ │ │ ├── MasterPasswordComposite.java │ │ │ │ ├── MavenPreferencePage.java │ │ │ │ ├── MirrorsComposite.java │ │ │ │ ├── ProxiesComposite.java │ │ │ │ ├── RepositoriesComposite.java │ │ │ │ ├── ServerIdContentProvider.java │ │ │ │ ├── ServersComposite.java │ │ │ │ └── TestMavenConnectionPreferenceContribution.java │ │ │ ├── security │ │ │ │ └── MavenPasswordManager.java │ │ │ └── wizard │ │ │ │ ├── BARConfigurationPageControl.java │ │ │ │ ├── MavenConfiguration.java │ │ │ │ ├── MavenConfigurationWizard.java │ │ │ │ ├── MirrorConfigurationPageControl.java │ │ │ │ ├── ProxyConfigurationPageControl.java │ │ │ │ └── StartConfigurationPageControl.java │ │ │ ├── operation │ │ │ ├── DeployProjectOperation.java │ │ │ ├── DeployStatusMapper.java │ │ │ ├── DeployTenantResourcesOperation.java │ │ │ ├── SetProjectMetadataOperation.java │ │ │ ├── ValidateProjectOperation.java │ │ │ └── extension │ │ │ │ ├── UpdateExtensionOperationDecorator.java │ │ │ │ ├── UpdateExtensionOperationDecoratorFactory.java │ │ │ │ └── participant │ │ │ │ ├── configuration │ │ │ │ ├── DatabaseConnectorConfigurationChange.java │ │ │ │ ├── ProcessConfigurationCollector.java │ │ │ │ ├── ProcessConfigurationPreviewMessageProvider.java │ │ │ │ ├── ProcessConfigurationUpdateParticipant.java │ │ │ │ └── ProcessConfigurationUpdateParticipantFactory.java │ │ │ │ ├── definition │ │ │ │ ├── ArtifactDefinitionProvider.java │ │ │ │ ├── ConnectorConfigurationCollector.java │ │ │ │ ├── ConnectorDefinitionProvider.java │ │ │ │ ├── ConnectorDefinitionProviderFactory.java │ │ │ │ ├── DefinitionUpdateParticipant.java │ │ │ │ ├── DefinitionUpdateParticipantFactory.java │ │ │ │ ├── ProcessDefinitionPreviewMessageProvider.java │ │ │ │ ├── actorfilter │ │ │ │ │ ├── ActorFilterArtifactDefinitionProvider.java │ │ │ │ │ ├── ActorFilterConnectorDefinitionProvider.java │ │ │ │ │ ├── ActorFilterConnectorDefinitionProviderFactory.java │ │ │ │ │ └── ProjectActorFilterConfigurationCollector.java │ │ │ │ ├── connector │ │ │ │ │ ├── ConnectorArtifactDefinitionProvider.java │ │ │ │ │ ├── ConnectorConnectorDefinitionProvider.java │ │ │ │ │ ├── ConnectorConnectorDefinitionProviderFactory.java │ │ │ │ │ └── ProjectConnectorConfigurationCollector.java │ │ │ │ ├── delegate │ │ │ │ │ ├── ArtifactDefinitionProviderDelegate.java │ │ │ │ │ ├── ConnectorConfigurationCollectorDelegate.java │ │ │ │ │ └── ConnectorDefinitionProviderFactoryDelegate.java │ │ │ │ └── preview │ │ │ │ │ ├── DefinitionRemovedChange.java │ │ │ │ │ ├── DefinitionUpdatePreviewResult.java │ │ │ │ │ ├── DefinitionVersionUpdateChange.java │ │ │ │ │ ├── InputChange.java │ │ │ │ │ └── OutputChange.java │ │ │ │ └── preview │ │ │ │ ├── PreviewConfirmationDialog.java │ │ │ │ └── PreviewResultImpl.java │ │ │ ├── perspective │ │ │ ├── ComparePerspectiveFactory.java │ │ │ ├── PerspectiveJavaFactory.java │ │ │ ├── TextEditorPerspectiveFactory.java │ │ │ └── WelcomePagePerspectiveFactory.java │ │ │ ├── property │ │ │ └── tester │ │ │ │ ├── BonitaProjectPropertyTester.java │ │ │ │ └── GroovySrcPropertyTester.java │ │ │ ├── renderer │ │ │ └── NullWorkbenchRendererFactory.java │ │ │ ├── security │ │ │ └── BonitaStudioPasswordProvider.java │ │ │ ├── statistics │ │ │ ├── DefaultStatisticsManager.java │ │ │ ├── StatisticEvent.java │ │ │ ├── StatisticsHttpClientBuilder.java │ │ │ └── StatisticsManager.java │ │ │ ├── ui │ │ │ ├── contribution │ │ │ │ ├── DeployArtifactsMenuContributionItem.java │ │ │ │ ├── NewProjectMenuContribution.java │ │ │ │ └── SwitchProjectMenuContribution.java │ │ │ └── control │ │ │ │ ├── BonitaMarketplacePage.java │ │ │ │ ├── DeploySuccessDialog.java │ │ │ │ ├── DeployTreeLabelProvider.java │ │ │ │ ├── DeployedAppContentProvider.java │ │ │ │ ├── ExtensionTypeHandler.java │ │ │ │ ├── ImportExtensionPage.java │ │ │ │ ├── ProjectMetadataPage.java │ │ │ │ ├── RepositoryModelBuilder.java │ │ │ │ ├── SelectArtifactToDeployPage.java │ │ │ │ ├── UpdateGavPage.java │ │ │ │ └── model │ │ │ │ ├── Artifact.java │ │ │ │ ├── ArtifactDisplayable.java │ │ │ │ ├── ArtifactVersion.java │ │ │ │ ├── BuildableArtifact.java │ │ │ │ ├── BusinessObjectModelArtifact.java │ │ │ │ ├── DisplayableAdapterFactory.java │ │ │ │ ├── FileStoreArtifact.java │ │ │ │ ├── OrganizationArtifact.java │ │ │ │ ├── ProcessArtifact.java │ │ │ │ ├── ProcessVersion.java │ │ │ │ ├── RepositoryFileStoreDisplayable.java │ │ │ │ ├── RepositoryModel.java │ │ │ │ ├── RepositoryStore.java │ │ │ │ ├── RepositoryStoreDisplayable.java │ │ │ │ ├── TenantArtifact.java │ │ │ │ ├── VersionedArtifact.java │ │ │ │ └── dependency │ │ │ │ ├── ArtifactDependencyLoader.java │ │ │ │ ├── ArtifactType.java │ │ │ │ ├── BonitaArtifactConnectorDefinition.java │ │ │ │ ├── BonitaArtifactDependency.java │ │ │ │ ├── BonitaArtifactDependencyConverter.java │ │ │ │ ├── BonitaArtifactDependencyVersion.java │ │ │ │ ├── BonitaMarketPlaceItem.java │ │ │ │ ├── BonitaMarketplace.java │ │ │ │ └── MarketplaceIconLoader.java │ │ │ ├── validator │ │ │ ├── ActorFilterExtensionTypeValidator.java │ │ │ ├── ConnectorExtensionTypeValidator.java │ │ │ ├── MavenSettingsValidator.java │ │ │ ├── RestApiExtensionExtensionTypeValidator.java │ │ │ └── ThemeExtensionTypeValidator.java │ │ │ └── views │ │ │ ├── BonitaContentOutlineTreeView.java │ │ │ ├── BonitaContentOutlineView.java │ │ │ ├── BonitaProjectExplorer.java │ │ │ ├── BonitaPropertiesView.java │ │ │ ├── BonitaTreeOutlinePage.java │ │ │ ├── CustomObjectActionContributorManager.java │ │ │ ├── CustomPopupMenuExtender.java │ │ │ ├── ExtendendResourceLinkHelper.java │ │ │ ├── ProblemTreeViewer.java │ │ │ ├── ProjectExplorerViewerComparator.java │ │ │ ├── extension │ │ │ ├── ExtensionComposite.java │ │ │ ├── OtherExtensionsComposite.java │ │ │ ├── ProblemSection.java │ │ │ ├── RemoveExtensionListener.java │ │ │ ├── UpdateExtensionListener.java │ │ │ └── card │ │ │ │ ├── ActorFilterExtensionCard.java │ │ │ │ ├── ConnectorExtensionCard.java │ │ │ │ ├── ExtensionCard.java │ │ │ │ ├── ExtensionCardFactory.java │ │ │ │ ├── RestApiExtensionCard.java │ │ │ │ └── zoom │ │ │ │ ├── AbstractZoomControl.java │ │ │ │ ├── ActorFilterZoomControl.java │ │ │ │ ├── ConnectorZoomControl.java │ │ │ │ ├── RestApiZoomControl.java │ │ │ │ ├── ThemeExtensionCard.java │ │ │ │ ├── ZoomListener.java │ │ │ │ ├── Zoomable.java │ │ │ │ └── usage │ │ │ │ ├── ActorFilterUsagesControlSupplier.java │ │ │ │ ├── ConnectorUsageTreeContentProvider.java │ │ │ │ └── ConnectorUsagesControlSupplier.java │ │ │ ├── filters │ │ │ ├── HideClasspathContainer.java │ │ │ ├── HideEmptyRepository.java │ │ │ ├── HideFolderWhenProjectIsShownAsNested.java │ │ │ ├── HideTopLevelProjectIfNested.java │ │ │ └── ProvidedContentFilter.java │ │ │ ├── overview │ │ │ ├── AbstractOverviewZoomControl.java │ │ │ ├── DiagramOverviewContribution.java │ │ │ ├── DiagramZoomControl.java │ │ │ ├── ElementCard.java │ │ │ ├── ElementComposite.java │ │ │ ├── ProjectOverviewEditorInput.java │ │ │ ├── ProjectOverviewEditorPart.java │ │ │ └── ProjectOverviewPerspective.java │ │ │ ├── process │ │ │ ├── BonitaAppearencePropertiesView.java │ │ │ ├── BonitaDataPropertiesView.java │ │ │ ├── BonitaExecutionPropertiesView.java │ │ │ └── BonitaGeneralProcessPropertiesView.java │ │ │ └── provider │ │ │ ├── BonitaExplorerContentProvider.java │ │ │ ├── BonitaExplorerLabelProvider.java │ │ │ ├── CustomOpenActionProvider.java │ │ │ └── UIDArtifactFilters.java │ ├── org.bonitasoft.studio.businessobject.tests │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── README │ │ │ ├── notAbdm.zip │ │ │ ├── workspace │ │ │ │ └── tomcat │ │ │ │ │ └── server │ │ │ │ │ └── lib │ │ │ │ │ └── bonita │ │ │ │ │ └── h2-1.0.jar │ │ │ └── workspaceWithoutH2 │ │ │ │ └── tomcat │ │ │ │ └── server │ │ │ │ └── lib │ │ │ │ └── bonita │ │ │ │ └── postgres.jar │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── businessobject │ │ │ ├── converter │ │ │ └── BusinessDataModelConverterTest.java │ │ │ ├── core │ │ │ ├── expression │ │ │ │ └── QueryExpressionProviderTest.java │ │ │ ├── operation │ │ │ │ ├── DeployBDMOperationTest.java │ │ │ │ ├── ExportBusinessDataModelOperationTest.java │ │ │ │ └── SmartImportBDMOperationTest.java │ │ │ └── repository │ │ │ │ ├── BusinessObjectBOSArchiveProviderTest.java │ │ │ │ ├── BusinessObjectModelFileStoreTest.java │ │ │ │ └── BusinessObjectModelRepositoryStoreTest.java │ │ │ ├── editor │ │ │ └── editor │ │ │ │ └── filter │ │ │ │ └── IndexableFieldFilterTest.java │ │ │ ├── helper │ │ │ └── PackageHelperTest.java │ │ │ ├── model │ │ │ ├── OverwriteImportBdmModelTest.java │ │ │ ├── SmartImportBdmModelTest.java │ │ │ └── SmartImportPackageModelTest.java │ │ │ ├── ui │ │ │ ├── BusinessObjectDataStyledLabelProviderTest.java │ │ │ ├── handler │ │ │ │ ├── ExportBusinessDataModelHandlerTest.java │ │ │ │ └── OpenH2ConsoleHandlerTest.java │ │ │ └── wizard │ │ │ │ ├── AbstractBusinessObjectWizardTest.java │ │ │ │ ├── AddBusinessObjectDataWizardTest.java │ │ │ │ ├── BusinessObjectDataWizardPageTest.java │ │ │ │ ├── EditBusinessObjectDataWizardTest.java │ │ │ │ ├── ExportBusinessDataModelWizardPageTest.java │ │ │ │ ├── SmartImportBdmPageTest.java │ │ │ │ └── validator │ │ │ │ ├── GroupIdValidatorTest.java │ │ │ │ ├── ImportBdmContentValidatorTest.java │ │ │ │ └── SmartImportBdmValidatorTest.java │ │ │ └── validator │ │ │ ├── AggregationAndCompositionValidatorTest.java │ │ │ ├── AttributeReferenceExitenceValidatorTest.java │ │ │ ├── BusinessObjectNameValidatorTest.java │ │ │ ├── CustomSQLNameValidatorTest.java │ │ │ ├── CyclicCompositionValidatorTest.java │ │ │ ├── EmptyFieldsValidatorTest.java │ │ │ ├── FieldNameValidatorTest.java │ │ │ ├── IndexFieldsValidatorTest.java │ │ │ ├── IndexNameValidatorTest.java │ │ │ ├── MultipleAggregationToItselfValidatorTest.java │ │ │ ├── PackageNameValidatorTest.java │ │ │ ├── QueryNameValidatorTest.java │ │ │ ├── QueryParameterNameValidatorTest.java │ │ │ ├── SeveralCompositionReferencesValidatorTest.java │ │ │ ├── StringLengthValidatorTest.java │ │ │ ├── UniqueConstraintFieldsvalidatorTest.java │ │ │ └── UniqueConstraintNameValidatorTest.java │ ├── org.bonitasoft.studio.businessobject │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── addObjectIcon.png │ │ │ ├── addPackageIcon.png │ │ │ ├── arrow.png │ │ │ ├── arrow16.png │ │ │ ├── bdm.png │ │ │ ├── data_type-edit.png │ │ │ ├── data_type.png │ │ │ ├── h2.png │ │ │ ├── package.gif │ │ │ ├── packageIcon.png │ │ │ └── query.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── model │ │ │ ├── BusinessDataModel.ecore │ │ │ └── BusinessDataModel.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── businessobject │ │ │ ├── BusinessObjectPlugin.java │ │ │ ├── StartAddon.java │ │ │ ├── converter │ │ │ └── BusinessDataModelConverter.java │ │ │ ├── core │ │ │ ├── BusinessDataModelContentDescriber.java │ │ │ ├── DeleteBDMEventHandler.java │ │ │ ├── DeployedBDMEventHandler.java │ │ │ ├── QueryContentCreator.java │ │ │ ├── expression │ │ │ │ ├── DAOExpressionProvider.java │ │ │ │ ├── QueryExpressionProvider.java │ │ │ │ └── model │ │ │ │ │ ├── BusinessObjectExpressionQuery.java │ │ │ │ │ └── QueryExpressionModel.java │ │ │ ├── operation │ │ │ │ ├── DeployBDMJob.java │ │ │ │ ├── DeployBDMOperation.java │ │ │ │ ├── DeployBDMStackTraceResolver.java │ │ │ │ ├── ExportBusinessDataModelOperation.java │ │ │ │ ├── GenerateBDMOperation.java │ │ │ │ └── SmartImportBDMOperation.java │ │ │ ├── repository │ │ │ │ ├── AbstractBDMFileStore.java │ │ │ │ ├── BusinessObjectBOSArchiveProvider.java │ │ │ │ ├── BusinessObjectModelFileStore.java │ │ │ │ └── BusinessObjectModelRepositoryStore.java │ │ │ └── status │ │ │ │ └── BusinessDataModelStatusMapper.java │ │ │ ├── editor │ │ │ ├── BdmPerspectiveFactory.java │ │ │ ├── editor │ │ │ │ ├── BusinessDataModelEditor.java │ │ │ │ ├── BusinessDataModelEditorContribution.java │ │ │ │ ├── DirtyStateAdapter.java │ │ │ │ ├── filter │ │ │ │ │ ├── IndexableFieldFilter.java │ │ │ │ │ └── SearchFilter.java │ │ │ │ ├── listener │ │ │ │ │ └── ConstraintAttributeCheckListener.java │ │ │ │ └── ui │ │ │ │ │ ├── contribution │ │ │ │ │ ├── CleanDeployContributionItem.java │ │ │ │ │ ├── DeployContributionItem.java │ │ │ │ │ ├── ExploreBDMContributionItem.java │ │ │ │ │ ├── ExportBDMContributionItem.java │ │ │ │ │ ├── ImportBDMContributionItem.java │ │ │ │ │ └── ValidateContributionItem.java │ │ │ │ │ ├── control │ │ │ │ │ ├── attribute │ │ │ │ │ │ ├── AttributeEditionControl.java │ │ │ │ │ │ ├── FieldDetailsControl.java │ │ │ │ │ │ ├── FieldTransfer.java │ │ │ │ │ │ └── RelationFieldDetailsControl.java │ │ │ │ │ ├── businessObject │ │ │ │ │ │ ├── BusinessObjectEditionControl.java │ │ │ │ │ │ ├── BusinessObjectList.java │ │ │ │ │ │ ├── BusinessObjectTransfer.java │ │ │ │ │ │ ├── BusinessObjectViewerComparator.java │ │ │ │ │ │ └── ReadOnlyBusinessObjectList.java │ │ │ │ │ ├── constraint │ │ │ │ │ │ └── ConstraintEditionControl.java │ │ │ │ │ ├── index │ │ │ │ │ │ ├── IndexControl.java │ │ │ │ │ │ └── IndexEditionControl.java │ │ │ │ │ └── query │ │ │ │ │ │ ├── QueryDetailsControl.java │ │ │ │ │ │ └── QueryEditionControl.java │ │ │ │ │ ├── editingSupport │ │ │ │ │ ├── FieldTypeEditingSupport.java │ │ │ │ │ └── QueryParameterTypeEditingSupport.java │ │ │ │ │ ├── formpage │ │ │ │ │ ├── AbstractBdmFormPage.java │ │ │ │ │ ├── constraint │ │ │ │ │ │ ├── ConstraintFormPage.java │ │ │ │ │ │ └── ConstraintFormPart.java │ │ │ │ │ ├── index │ │ │ │ │ │ ├── IndexFormPage.java │ │ │ │ │ │ └── IndexFormPart.java │ │ │ │ │ ├── model │ │ │ │ │ │ ├── BusinessDataModelFormPage.java │ │ │ │ │ │ └── BusinessDataModelFormPart.java │ │ │ │ │ └── query │ │ │ │ │ │ ├── QueryFormPage.java │ │ │ │ │ │ └── QueryFormPart.java │ │ │ │ │ ├── provider │ │ │ │ │ ├── BusinessObjectTreeContentProvider.java │ │ │ │ │ ├── FieldStyleStringProvider.java │ │ │ │ │ ├── QueryContentProvider.java │ │ │ │ │ ├── QueryResultTypeLabelProvider.java │ │ │ │ │ └── TypeLabelProvider.java │ │ │ │ │ └── styler │ │ │ │ │ ├── AttributeTypeStyler.java │ │ │ │ │ └── DeprecatedTypeStyler.java │ │ │ └── model │ │ │ │ ├── BusinessDataModelFactory.java │ │ │ │ ├── BusinessDataModelPackage.java │ │ │ │ ├── BusinessObject.java │ │ │ │ ├── BusinessObjectModel.java │ │ │ │ ├── FetchType.java │ │ │ │ ├── Field.java │ │ │ │ ├── FieldType.java │ │ │ │ ├── Index.java │ │ │ │ ├── Package.java │ │ │ │ ├── Query.java │ │ │ │ ├── QueryParameter.java │ │ │ │ ├── RelationField.java │ │ │ │ ├── RelationType.java │ │ │ │ ├── SimpleField.java │ │ │ │ ├── UniqueConstraint.java │ │ │ │ ├── builder │ │ │ │ ├── BusinessObjectBuilder.java │ │ │ │ ├── BusinessObjectModelBuilder.java │ │ │ │ ├── IndexBuilder.java │ │ │ │ ├── PackageBuilder.java │ │ │ │ ├── QueryBuilder.java │ │ │ │ ├── QueryParameterBuilder.java │ │ │ │ ├── RelationFieldBuilder.java │ │ │ │ ├── SimpleFieldBuilder.java │ │ │ │ └── UniqueConstraintBuilder.java │ │ │ │ ├── impl │ │ │ │ ├── BusinessDataModelFactoryImpl.java │ │ │ │ ├── BusinessDataModelPackageImpl.java │ │ │ │ ├── BusinessObjectImpl.java │ │ │ │ ├── BusinessObjectModelImpl.java │ │ │ │ ├── FieldImpl.java │ │ │ │ ├── IndexImpl.java │ │ │ │ ├── PackageImpl.java │ │ │ │ ├── QueryImpl.java │ │ │ │ ├── QueryParameterImpl.java │ │ │ │ ├── RelationFieldImpl.java │ │ │ │ ├── SimpleFieldImpl.java │ │ │ │ └── UniqueConstraintImpl.java │ │ │ │ └── util │ │ │ │ ├── BusinessDataModelAdapterFactory.java │ │ │ │ └── BusinessDataModelSwitch.java │ │ │ ├── helper │ │ │ └── PackageHelper.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── menu │ │ │ ├── BdmMenuContributionItem.java │ │ │ └── NewBdmContributionItem.java │ │ │ ├── model │ │ │ ├── OverwriteImportBdmModel.java │ │ │ ├── SmartImportBdmModel.java │ │ │ ├── SmartImportBusinessObjectModel.java │ │ │ └── SmartImportPackageModel.java │ │ │ ├── overview │ │ │ └── BdmOverviewContribution.java │ │ │ ├── refactor │ │ │ ├── BDMRefactorQueue.java │ │ │ ├── DiffElement.java │ │ │ └── Event.java │ │ │ ├── ui │ │ │ ├── BDMPropertyTester.java │ │ │ ├── BusinessObjectDataStyledLabelProvider.java │ │ │ ├── DateTypeLabels.java │ │ │ ├── decorator │ │ │ │ └── BdmLightweightDecorator.java │ │ │ ├── expression │ │ │ │ ├── CreateBusinessDataProposalListener.java │ │ │ │ ├── QueryExpressionEditor.java │ │ │ │ └── ReferencedExpressionEditingSupport.java │ │ │ ├── handler │ │ │ │ ├── CleanDeployBDMHandler.java │ │ │ │ ├── DefineBusinessDataModelHandler.java │ │ │ │ ├── DeployBDMHandler.java │ │ │ │ ├── ExploreBusinessDataModelHandler.java │ │ │ │ ├── ExportBusinessDataModelHandler.java │ │ │ │ ├── OpenH2ConsoleHandler.java │ │ │ │ └── SmartImportBdmHandler.java │ │ │ ├── preference │ │ │ │ └── DropBusinessDataDBFieldEditorContribution.java │ │ │ └── wizard │ │ │ │ ├── AbstractBusinessObjectWizard.java │ │ │ │ ├── AddBusinessObjectDataWizard.java │ │ │ │ ├── BusinessObjectDataWizardPage.java │ │ │ │ ├── BusinessObjectTransfer.java │ │ │ │ ├── DataDefaultValueExpressionNameResolver.java │ │ │ │ ├── EditBusinessObjectDataWizard.java │ │ │ │ ├── ExportBusinessDataModelWizard.java │ │ │ │ ├── ExportBusinessDataModelWizardPage.java │ │ │ │ ├── HintImageProvider.java │ │ │ │ ├── SmartImportBdmPage.java │ │ │ │ ├── provider │ │ │ │ └── SmartImportBdmTreeContentProvider.java │ │ │ │ └── validator │ │ │ │ ├── GroupIdValidator.java │ │ │ │ ├── ImportBdmContentValidator.java │ │ │ │ ├── MavenIdValidator.java │ │ │ │ ├── SmartImportBdmModelValidator.java │ │ │ │ └── SmartImportBdmValidator.java │ │ │ └── validator │ │ │ ├── AggregationAndCompositionValidator.java │ │ │ ├── AttributeReferenceExitenceValidator.java │ │ │ ├── BusinessObjectListValidator.java │ │ │ ├── BusinessObjectNameValidator.java │ │ │ ├── CustomSQLNameValidator.java │ │ │ ├── CyclicCompositionValidator.java │ │ │ ├── EmptyFieldsValidator.java │ │ │ ├── FieldNameValidator.java │ │ │ ├── IBDMValidator.java │ │ │ ├── IndexFieldsValidator.java │ │ │ ├── IndexNameValidator.java │ │ │ ├── MultipleAggregationToItselfValidator.java │ │ │ ├── PackageNameValidator.java │ │ │ ├── QueryNameValidator.java │ │ │ ├── QueryParameterNameValidator.java │ │ │ ├── QueryValidator.java │ │ │ ├── SeveralCompositionReferencesValidator.java │ │ │ ├── StringLengthValidator.java │ │ │ ├── UniqueConstraintFieldsValidator.java │ │ │ └── UniqueConstraintNameValidator.java │ ├── org.bonitasoft.studio.common.diagram.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── common │ │ │ ├── diagram │ │ │ ├── IdentifierTest.java │ │ │ └── dialog │ │ │ │ ├── DiagramUnicityValidatorTest.java │ │ │ │ ├── MustUpdateValidatorTest.java │ │ │ │ ├── OpenNameAndVersionDialogTest.java │ │ │ │ ├── ProcessUnicityValidatorTest.java │ │ │ │ └── ProcessesNameVersionUnicityValidatorTest.java │ │ │ ├── editingdomain │ │ │ ├── CustomWorkspaceCommandStackTest.java │ │ │ └── transaction │ │ │ │ ├── AlwaysValidEMFOperationTransactionTest.java │ │ │ │ ├── AlwaysValidTransactionTest.java │ │ │ │ └── AlwaysValidTriggerCommandTransactionTest.java │ │ │ └── gmf │ │ │ └── tools │ │ │ ├── DiagramForElementRunnableTest.java │ │ │ ├── convert │ │ │ └── RemoveBoundaryWithItsFlowsTest.java │ │ │ └── tree │ │ │ ├── EmptyContractInputMappingViewerFilterTest.java │ │ │ ├── MainProcessFormMappingViewerFilterTest.java │ │ │ ├── ParametersViewFilterTest.java │ │ │ ├── TextAnnotationAttachmentViewFilterTest.java │ │ │ └── selection │ │ │ ├── RefreshPropertyViewsSelectionTest.java │ │ │ ├── TabbedPropertySynchronizerListenerTest.java │ │ │ └── provider │ │ │ └── process │ │ │ ├── ActorTabbedPropertyProviderTest.java │ │ │ ├── ConnectorTabbedPropertyProviderTest.java │ │ │ ├── ContractTabbedPropertyProviderTest.java │ │ │ ├── DataTabbedPropertyProviderTest.java │ │ │ ├── DocumentTabbedPropertyProviderTest.java │ │ │ ├── FormMappingTabbedPropertyProviderTest.java │ │ │ ├── KPITabbedPropertyProviderTest.java │ │ │ ├── ParameterTabbedPropertyProviderTest.java │ │ │ └── SearchIndexTabbedPropertyProviderTest.java │ ├── org.bonitasoft.studio.common.diagram │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── common │ │ │ ├── diagram │ │ │ ├── ActivityCursorMouseMotionListener.java │ │ │ ├── ActivityNameCursorMouseMotionListener.java │ │ │ ├── Identifier.java │ │ │ ├── dialog │ │ │ │ ├── DiagramUnicityValidator.java │ │ │ │ ├── MustUpdateValidator.java │ │ │ │ ├── OpenNameAndVersionDialog.java │ │ │ │ ├── OpenNameAndVersionForDiagramDialog.java │ │ │ │ ├── ProcessUnicityValidator.java │ │ │ │ ├── ProcessesNameVersion.java │ │ │ │ └── ProcessesNameVersionUnicityValidator.java │ │ │ ├── editor │ │ │ │ ├── EditorUtil.java │ │ │ │ └── internal │ │ │ │ │ ├── ElementTypeAdapterFactory.java │ │ │ │ │ └── InputResourceAdapterFactory.java │ │ │ ├── palette │ │ │ │ ├── AsyncLightweightSystem.java │ │ │ │ ├── CustomDrawerEditPart.java │ │ │ │ ├── CustomDrawerFigure.java │ │ │ │ ├── CustomMainPaletteViewer.java │ │ │ │ ├── CustomPaletteEditPartFactory.java │ │ │ │ └── CustomToolPaletteViewer.java │ │ │ └── tools │ │ │ │ ├── BonitaConnectionTypes.java │ │ │ │ ├── BonitaDiagramSelectionManager.java │ │ │ │ ├── BonitaUnspecifiedTypeConnectionTool.java │ │ │ │ ├── BonitaUnspecifiedTypeCreationTool.java │ │ │ │ ├── BonitaUnspecifiedTypeProcessCreationTool.java │ │ │ │ ├── ColorRegistry.java │ │ │ │ ├── CustomTextDirectEditManager.java │ │ │ │ ├── CustomWrapTextCellEditor.java │ │ │ │ ├── DragEditPartsTrackerExWithoutCopyWithModKeyPressed.java │ │ │ │ └── FiguresHelper.java │ │ │ ├── editingdomain │ │ │ ├── BonitaEditingDomainRegistry.java │ │ │ ├── BonitaEditingDomainUtil.java │ │ │ ├── BonitaOperationHistory.java │ │ │ ├── BonitaResourceSetInfoAdapter.java │ │ │ ├── BonitaResourceSetInfoDelegate.java │ │ │ ├── CustomDiagramEditingDomainFactory.java │ │ │ ├── CustomWorkspaceCommandStack.java │ │ │ ├── EditingDomainResourcesDisposer.java │ │ │ └── transaction │ │ │ │ ├── AlwaysValidEMFOperationTransaction.java │ │ │ │ ├── AlwaysValidTransaction.java │ │ │ │ └── AlwaysValidTriggerCommandTransaction.java │ │ │ ├── figures │ │ │ ├── CollapsableEventSubprocessFigure.java │ │ │ ├── CustomSVGFigure.java │ │ │ ├── DecoratorSVGFigure.java │ │ │ ├── EventSubprocessFigureWrapper.java │ │ │ └── FigureColorProvider.java │ │ │ ├── gmf │ │ │ ├── ActivityBorderItemLocator.java │ │ │ ├── ChangeBoundsRequestUtil.java │ │ │ ├── CustomEventLabelEditPart.java │ │ │ ├── CustomNonResizableLabelEditPolicy.java │ │ │ ├── CustomPaletteService.java │ │ │ ├── command │ │ │ │ └── InsertElementOnSequenceFlowCommand.java │ │ │ └── tools │ │ │ │ ├── ConvertConnectorEvent.java │ │ │ │ ├── CopyEObjectFeaturesCommand.java │ │ │ │ ├── CopyToImageUtilEx.java │ │ │ │ ├── CustomRubberbandDragTracker.java │ │ │ │ ├── CustomSnapToGeometryEx.java │ │ │ │ ├── CustomZoomTool.java │ │ │ │ ├── DiagramForElementRunnable.java │ │ │ │ ├── EMFtoGEFCommandWrapper.java │ │ │ │ ├── GMFTools.java │ │ │ │ ├── HorizontalAlignTool.java │ │ │ │ ├── HorizontalAlignToolEntry.java │ │ │ │ ├── MultipleShapesHorizontalMoveTool.java │ │ │ │ ├── MultipleShapesVerticalMoveTool.java │ │ │ │ ├── PaletteToolTransferDropTargetListenerWithSelection.java │ │ │ │ ├── RemoveDanglingReferences.java │ │ │ │ ├── VerticalAlignTool.java │ │ │ │ ├── VerticalAlignToolEntry.java │ │ │ │ ├── ZoomInToolEntry.java │ │ │ │ ├── ZoomOutToolEntry.java │ │ │ │ ├── convert │ │ │ │ ├── ConvertBPMNTypeCommand.java │ │ │ │ └── RemoveBoundaryWithItsFlows.java │ │ │ │ └── tree │ │ │ │ ├── BonitaTreeViewer.java │ │ │ │ ├── DatatypesViewFilter.java │ │ │ │ ├── DecisionTableViewFilter.java │ │ │ │ ├── EmptyContractInputMappingViewerFilter.java │ │ │ │ ├── EmptyExpressionViewFilter.java │ │ │ │ ├── EmptyOperationViewFilter.java │ │ │ │ ├── EmptySearchIndexViewFilter.java │ │ │ │ ├── MainProcessFormMappingViewerFilter.java │ │ │ │ ├── ParametersViewFilter.java │ │ │ │ ├── TextAnnotationAttachmentViewFilter.java │ │ │ │ └── selection │ │ │ │ ├── EditPartNotFoundException.java │ │ │ │ ├── EditPartResolver.java │ │ │ │ ├── RefreshPropertyViewsSelection.java │ │ │ │ ├── TabbedPropertySelectionProviderRegistry.java │ │ │ │ ├── TabbedPropertySynchronizerListener.java │ │ │ │ └── provider │ │ │ │ ├── DefaultTabbedPropertyProvider.java │ │ │ │ ├── ITabbedPropertySelectionProvider.java │ │ │ │ ├── ITabbedSectionPropertyProvider.java │ │ │ │ └── process │ │ │ │ ├── ActorTabbedPropertyProvider.java │ │ │ │ ├── ConnectorTabbedPropertyProvider.java │ │ │ │ ├── ContractTabbedPropertyProvider.java │ │ │ │ ├── DataTabbedPropertyProvider.java │ │ │ │ ├── DataViewTabbedPropertySelectionProvider.java │ │ │ │ ├── DocumentTabbedPropertyProvider.java │ │ │ │ ├── ExecutionViewTabbedPropertySelectionProvider.java │ │ │ │ ├── FormMappingTabbedPropertyProvider.java │ │ │ │ ├── KPITabbedPropertyProvider.java │ │ │ │ ├── OperationTabbedPropertyProvider.java │ │ │ │ ├── ParameterTabbedPropertyProvider.java │ │ │ │ ├── ProcessGeneralTabbedPropertySelectionProvider.java │ │ │ │ └── SearchIndexTabbedPropertyProvider.java │ │ │ ├── gmfgraph │ │ │ └── BorderForTextAnnotation.java │ │ │ ├── handlers │ │ │ ├── CopyHandler.java │ │ │ ├── CutHandler.java │ │ │ ├── DefaultPasteHandler.java │ │ │ └── SaveAsImageHandler.java │ │ │ ├── preferences │ │ │ └── CommonDiagramPreferencesConstants.java │ │ │ └── properties │ │ │ └── PropertySectionWithTabs.java │ ├── org.bonitasoft.studio.common.repository.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── dependencies.csv │ │ │ ├── legacyConnectorsProject.zip │ │ │ ├── legacyParentPom │ │ │ │ └── pom.xml │ │ │ ├── parentPomUpdate │ │ │ │ └── pom.xml │ │ │ ├── pom.xml.nobdm.test │ │ │ ├── pom.xml.reporting-app.test │ │ │ ├── pom.xml.test │ │ │ ├── pom.xml.version.property.test │ │ │ └── testProjectDescriptor │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── common │ │ │ └── repository │ │ │ ├── AbstractRepositoryTest.java │ │ │ ├── RepositoryNameValidatorTest.java │ │ │ ├── TestRepository.java │ │ │ ├── core │ │ │ ├── CreateBonitaProjectOperationTest.java │ │ │ ├── internal │ │ │ │ └── BonitaProjectImplTest.java │ │ │ ├── job │ │ │ │ └── WorkspaceInitializationJobTest.java │ │ │ ├── maven │ │ │ │ ├── BonitaProjectBuilderTest.java │ │ │ │ ├── MavenProjectHelperTest.java │ │ │ │ ├── contribution │ │ │ │ │ ├── MavenArtifactParserTest.java │ │ │ │ │ └── MavenLocalRepositoryContributorTest.java │ │ │ │ ├── model │ │ │ │ │ └── GAVTest.java │ │ │ │ └── plugin │ │ │ │ │ └── CreateBdmModulePluginTest.java │ │ │ └── migration │ │ │ │ └── step │ │ │ │ ├── BdmModelArtifactMigrationStepTest.java │ │ │ │ ├── BonitaProjectParentVersionStepTest.java │ │ │ │ ├── CleanParentStepTest.java │ │ │ │ ├── ConnectorsModuleMigrationStepTest.java │ │ │ │ ├── ProvidedGroovyScriptRemovedStepTest.java │ │ │ │ ├── RemoveLegacyFolderStepTest.java │ │ │ │ ├── ReportingAppUpdateMigrationStepTest.java │ │ │ │ └── UpdateProjectDescriptionMigrationStepTest.java │ │ │ ├── filestore │ │ │ ├── AbstractFileStoreTest.java │ │ │ ├── FileStoreFinderTest.java │ │ │ └── SourceFileStoreTest.java │ │ │ ├── jdt │ │ │ ├── CreateJarOperationTest.java │ │ │ └── JDTTypeHierarchyManagerTest.java │ │ │ ├── store │ │ │ ├── FileStoreCollectorTest.java │ │ │ └── SourceRepositoryStoreTest.java │ │ │ └── ui │ │ │ ├── internal │ │ │ └── DisplayableAdapterFactoryTest.java │ │ │ └── viewer │ │ │ ├── CheckboxRepositoryTreeViewerTest.java │ │ │ ├── RepositoryTreeContentProviderTest.java │ │ │ └── RepositoryTreeLabelProviderTest.java │ ├── org.bonitasoft.studio.common.repository │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── bos.png │ │ │ ├── conf.png │ │ │ ├── export-zip.png │ │ │ ├── export_repository.png │ │ │ ├── git.png │ │ │ ├── import-zip.png │ │ │ ├── import_repository.png │ │ │ ├── java.gif │ │ │ ├── package.gif │ │ │ ├── shared-repository.png │ │ │ └── svnIcon.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── initializer.exsd │ │ │ ├── lockStatusProvider.exsd │ │ │ ├── org.bonitasoft.studio.bosArchiveProvider.exsd │ │ │ ├── org.bonitasoft.studio.projectListenerProvider.exsd │ │ │ ├── org.bonitasoft.studio.repository.fileContribution.exsd │ │ │ ├── org.bonitasoft.studio.repositoryFactory.exsd │ │ │ ├── org.bonitasoft.studio.repositoryStore.exsd │ │ │ ├── postinitrepository.exsd │ │ │ ├── repository.exsd │ │ │ └── repositoryListener.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── common │ │ │ └── repository │ │ │ ├── AbstractRepository.java │ │ │ ├── BonitaProjectNature.java │ │ │ ├── BuildScheduler.java │ │ │ ├── ClassGenerator.java │ │ │ ├── CommonRepositoryPlugin.java │ │ │ ├── FakeRepository.java │ │ │ ├── IBonitaProjectListener.java │ │ │ ├── IRepositoryFactory.java │ │ │ ├── ImportArchiveData.java │ │ │ ├── Messages.java │ │ │ ├── ProjectIdValidator.java │ │ │ ├── ProjectMigrationListener.java │ │ │ ├── RepositoryAccessor.java │ │ │ ├── RepositoryChangeNotifier.java │ │ │ ├── RepositoryManager.java │ │ │ ├── RepositoryNameValidator.java │ │ │ ├── core │ │ │ ├── ActiveOrganizationProvider.java │ │ │ ├── BonitaProject.java │ │ │ ├── CreateBonitaProjectOperation.java │ │ │ ├── DatabaseHandler.java │ │ │ ├── FileInputStreamSupplier.java │ │ │ ├── IBonitaProjectListenerProvider.java │ │ │ ├── IFileInputStreamSupplier.java │ │ │ ├── IProjectContainer.java │ │ │ ├── ImportBonitaProjectOperation.java │ │ │ ├── InputStreamSupplier.java │ │ │ ├── LocalDependencyInputStreamSupplier.java │ │ │ ├── MavenAppModuleModelBuilder.java │ │ │ ├── MavenModelBuilder.java │ │ │ ├── MavenParentProjectModelBuilder.java │ │ │ ├── MavenProjectModelBuilder.java │ │ │ ├── ProjectDependenciesStore.java │ │ │ ├── ProjectDescriptionBuilder.java │ │ │ ├── RepositoryFactory.java │ │ │ ├── internal │ │ │ │ ├── BonitaProjectAdapterFactory.java │ │ │ │ ├── BonitaProjectImpl.java │ │ │ │ ├── RepositoryImpl.java │ │ │ │ ├── UpdateProjectMetadataOperation.java │ │ │ │ └── team │ │ │ │ │ ├── .gitignore.parent.template │ │ │ │ │ ├── .gitignore.template │ │ │ │ │ └── GitProjectImpl.java │ │ │ ├── job │ │ │ │ └── WorkspaceInitializationJob.java │ │ │ ├── maven │ │ │ │ ├── AddDependencyOperation.java │ │ │ │ ├── BonitaProjectBuilder.java │ │ │ │ ├── DefinitionUsageOperation.java │ │ │ │ ├── DependencyGetOperation.java │ │ │ │ ├── DependencyUsageOperation.java │ │ │ │ ├── FileDependencyLookupOperation.java │ │ │ │ ├── MavenCentralJarLookupOperation.java │ │ │ │ ├── MavenInstallFileOperation.java │ │ │ │ ├── MavenModelOperation.java │ │ │ │ ├── MavenProjectDependenciesStore.java │ │ │ │ ├── MavenProjectHelper.java │ │ │ │ ├── MavenRepositoryRegistry.java │ │ │ │ ├── ProjectDependenciesLookupOperation.java │ │ │ │ ├── ProjectDependenciesResolver.java │ │ │ │ ├── RemoveDependencyOperation.java │ │ │ │ ├── UpdateDependencyVersionOperation.java │ │ │ │ ├── contribution │ │ │ │ │ ├── DependencyCatalog.java │ │ │ │ │ ├── InstallBonitaMavenArtifactsOperation.java │ │ │ │ │ ├── MavenArtifactParser.java │ │ │ │ │ └── MavenLocalRepositoryContributor.java │ │ │ │ ├── migration │ │ │ │ │ ├── BonitaJarDependencyReplacement.java │ │ │ │ │ ├── DatabaseDriverDependencyReplacement.java │ │ │ │ │ ├── ProjectDependenciesMigrationOperation.java │ │ │ │ │ ├── connector │ │ │ │ │ │ ├── CMISConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── DatabaseConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── DocumentConverterDependenciesReplacement.java │ │ │ │ │ │ ├── DocumentTemplatingDependenciesReplacement.java │ │ │ │ │ │ ├── EmailConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── GoogleCalendarConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── GroovyScriptConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── LDAPConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── RestConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── SAPConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── SalesforceConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── ShellScriptConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── TwitterConnectorDependenciesReplacement.java │ │ │ │ │ │ ├── UIPathConnectorDependenciesReplacement.java │ │ │ │ │ │ └── WebServiceConnectorDependenciesReplacement.java │ │ │ │ │ ├── driver │ │ │ │ │ │ ├── DerbyJDBCDriverDependenciesReplacement.java │ │ │ │ │ │ ├── H2JDBCDriverDependenciesReplacement.java │ │ │ │ │ │ ├── HSQLJDBCDriverDependenciesReplacement.java │ │ │ │ │ │ ├── MySQLJDBCDriverDependenciesReplacement.java │ │ │ │ │ │ ├── Oracle5JDBCDriverDependenciesReplacement.java │ │ │ │ │ │ ├── Oracle6JDBCDriverDependenciesReplacement.java │ │ │ │ │ │ ├── PostgresJDBCDriverDependenciesReplacement.java │ │ │ │ │ │ ├── SQLServerJDBCDriverDependenciesReplacement.java │ │ │ │ │ │ └── SQLiteJDBCDriverDependenciesReplacement.java │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── CustomUserInfoActorFilterDependenciesReplacement.java │ │ │ │ │ │ ├── InitiatorActorFilterDependenciesReplacement.java │ │ │ │ │ │ ├── InitiatorManagerActorFilterDependenciesReplacement.java │ │ │ │ │ │ ├── SameTaskUserActorFilterDependenciesReplacement.java │ │ │ │ │ │ ├── SingleUserActorFilterDependenciesReplacement.java │ │ │ │ │ │ └── UserManagerActorFilterDependenciesReplacement.java │ │ │ │ │ └── model │ │ │ │ │ │ ├── ConflictVersion.java │ │ │ │ │ │ └── DependencyLookup.java │ │ │ │ ├── model │ │ │ │ │ ├── AppProjectConfiguration.java │ │ │ │ │ ├── BonitaAdminAppDependency.java │ │ │ │ │ ├── BonitaCommonDependency.java │ │ │ │ │ ├── DefaultPluginVersions.java │ │ │ │ │ ├── GAV.java │ │ │ │ │ ├── MavenDependency.java │ │ │ │ │ ├── MavenPlugin.java │ │ │ │ │ ├── ProjectDefaultConfiguration.java │ │ │ │ │ ├── ProjectMetadata.java │ │ │ │ │ └── UiToolsPreferences.java │ │ │ │ ├── plugin │ │ │ │ │ ├── AnalyzeBonitaProjectDependenciesPlugin.java │ │ │ │ │ ├── CreateBdmModulePlugin.java │ │ │ │ │ ├── CreateBonitaProjectModulePlugin.java │ │ │ │ │ ├── CreateExtensionsModulePlugin.java │ │ │ │ │ ├── ImportMavenModuleOperation.java │ │ │ │ │ └── InstallLocalDependenciesPlugin.java │ │ │ │ └── repository │ │ │ │ │ └── MavenRepositories.java │ │ │ ├── migration │ │ │ │ ├── BonitaProjectMigrator.java │ │ │ │ ├── MavenModelMigration.java │ │ │ │ ├── MigrationStep.java │ │ │ │ ├── StepDescription.java │ │ │ │ ├── StepPrerequisiteException.java │ │ │ │ ├── dependencies │ │ │ │ │ ├── ConfigurationCollector.java │ │ │ │ │ ├── DependentArtifactCollector.java │ │ │ │ │ ├── DependentArtifactCollectorRegistry.java │ │ │ │ │ ├── Synchronizer.java │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── ProcessConfigurationChange.java │ │ │ │ │ │ └── ProcessConfigurationUpdater.java │ │ │ │ │ ├── connector │ │ │ │ │ │ ├── ConnectorImplementationChange.java │ │ │ │ │ │ └── ConnectorImplementationUpdater.java │ │ │ │ │ └── operation │ │ │ │ │ │ ├── ConfigurationSynchronizationOperation.java │ │ │ │ │ │ ├── DependenciesUpdateOperation.java │ │ │ │ │ │ ├── DependenciesUpdateOperationFactory.java │ │ │ │ │ │ ├── JarRemovedChange.java │ │ │ │ │ │ └── JarUpdateChange.java │ │ │ │ ├── handler │ │ │ │ │ └── MigrateProjectHandler.java │ │ │ │ ├── report │ │ │ │ │ ├── AsciidocMigrationReportWriter.java │ │ │ │ │ ├── MigrationReport.java │ │ │ │ │ └── MigrationReportWriter.java │ │ │ │ ├── step │ │ │ │ │ ├── ApplicationModuleConfigurationStep.java │ │ │ │ │ ├── BdmAssemblyConfigurationStep.java │ │ │ │ │ ├── BdmModelArtifactMigrationStep.java │ │ │ │ │ ├── BonitaProjectParentVersionStep.java │ │ │ │ │ ├── CleanParentStep.java │ │ │ │ │ ├── CommunityToEnterpriseMigrationStep.java │ │ │ │ │ ├── ConnectorsModuleMigrationStep.java │ │ │ │ │ ├── CreatePomMigrationStep.java │ │ │ │ │ ├── DeleteProjectSettingsMigrationStep.java │ │ │ │ │ ├── ExtensionsModuleMigrationStep.java │ │ │ │ │ ├── GitIgnoreMigrationStep.java │ │ │ │ │ ├── Java17UpdateStep.java │ │ │ │ │ ├── JavaDependenciesMigrationStep.java │ │ │ │ │ ├── MultiModuleMigrationStep.java │ │ │ │ │ ├── ProvidedGroovyScriptRemovedStep.java │ │ │ │ │ ├── RemoveFlattenPluginExecutionStep.java │ │ │ │ │ ├── RemoveLegacyFolderStep.java │ │ │ │ │ ├── ReportingAppUpdateMigrationStep.java │ │ │ │ │ ├── SplitGroovyAllIntoModulesStep.java │ │ │ │ │ └── UpdateProjectDescriptionMigrationStep.java │ │ │ │ └── ui │ │ │ │ │ ├── MigrationStepWizardPage.java │ │ │ │ │ ├── ProjectMigrationWizard.java │ │ │ │ │ └── ProjectMigrationWizardDialog.java │ │ │ └── team │ │ │ │ └── GitProject.java │ │ │ ├── extension │ │ │ ├── ExtensionAction.java │ │ │ ├── ExtensionActionRegistry.java │ │ │ ├── IConfigurationSynchronizer.java │ │ │ ├── IEngineAction.java │ │ │ ├── IGetLockStatusOperation.java │ │ │ ├── ILockedResourceStatus.java │ │ │ ├── IPostInitRepositoryJobContribution.java │ │ │ └── update │ │ │ │ ├── DependencyUpdate.java │ │ │ │ ├── participant │ │ │ │ ├── ExtensionUpdateParticipant.java │ │ │ │ ├── ExtensionUpdateParticipantFactory.java │ │ │ │ └── ExtensionUpdateParticipantFactoryRegistry.java │ │ │ │ └── preview │ │ │ │ ├── ChangePreview.java │ │ │ │ ├── PreviewMessageProvider.java │ │ │ │ ├── PreviewResult.java │ │ │ │ └── Previewable.java │ │ │ ├── filestore │ │ │ ├── AbstractFileStore.java │ │ │ ├── DefinitionConfigurationFileStore.java │ │ │ ├── EMFFileStore.java │ │ │ ├── EditorFinder.java │ │ │ ├── FileStoreChangeEvent.java │ │ │ ├── FileStoreFinder.java │ │ │ ├── PackageFileStore.java │ │ │ ├── PropertiesFileStore.java │ │ │ ├── RepositoryFileStoreComparator.java │ │ │ └── SourceFileStore.java │ │ │ ├── handler │ │ │ └── ExportArtifactsToZip.java │ │ │ ├── jdt │ │ │ ├── CreateJarOperation.java │ │ │ └── JDTTypeHierarchyManager.java │ │ │ ├── model │ │ │ ├── DependencyResolver.java │ │ │ ├── DeployOptions.java │ │ │ ├── IBuildable.java │ │ │ ├── IDefinitionRepositoryStore.java │ │ │ ├── IDeployable.java │ │ │ ├── IFileStoreChangeListener.java │ │ │ ├── IFileStoreChangeNotifier.java │ │ │ ├── IFileStoreContribution.java │ │ │ ├── IJavaContainer.java │ │ │ ├── ILocalizedResourceProvider.java │ │ │ ├── IRenamable.java │ │ │ ├── IRepository.java │ │ │ ├── IRepositoryFileStore.java │ │ │ ├── IRepositoryStore.java │ │ │ ├── IResourceContainer.java │ │ │ ├── ITenantResource.java │ │ │ ├── IValidable.java │ │ │ ├── ReadFileStoreException.java │ │ │ └── smartImport │ │ │ │ ├── ISmartImportable.java │ │ │ │ ├── SmartImportableModel.java │ │ │ │ └── SmartImportableUnit.java │ │ │ ├── operation │ │ │ └── ExportBosArchiveOperation.java │ │ │ ├── preferences │ │ │ ├── OrganizationPreferenceConstants.java │ │ │ ├── RepositoryPreferenceConstant.java │ │ │ └── RepositoryPreferenceInitializer.java │ │ │ ├── provider │ │ │ ├── BundleDefinitionImageResourceLoader.java │ │ │ ├── BundleResourceLoader.java │ │ │ ├── ConnectorDefinitionRegistry.java │ │ │ ├── DefinitionControl.java │ │ │ ├── DefinitionImageResourceLoader.java │ │ │ ├── DefinitionResourceLoaderProvider.java │ │ │ ├── DefinitionResourceProvider.java │ │ │ ├── ExtendedCategory.java │ │ │ ├── ExtendedConnectorDefinition.java │ │ │ ├── FileStoreLabelProvider.java │ │ │ ├── IBOSArchiveFileStoreProvider.java │ │ │ ├── JarBundleResourceLoader.java │ │ │ ├── JarDefinitionResourceLoader.java │ │ │ ├── LocalizedConnectorDefinition.java │ │ │ ├── LocalizedResourceProvider.java │ │ │ ├── OSGIBundleResourceLoader.java │ │ │ ├── RepositoryLabelProvider.java │ │ │ └── StoreControl.java │ │ │ ├── store │ │ │ ├── AbstractEMFRepositoryStore.java │ │ │ ├── AbstractFolderRepositoryStore.java │ │ │ ├── AbstractRepositoryStore.java │ │ │ ├── FileStoreCollector.java │ │ │ ├── LocalDependenciesStore.java │ │ │ ├── RepositoryStoreComparator.java │ │ │ ├── SourceRepositoryStore.java │ │ │ └── TypeNameFoundRequestor.java │ │ │ └── ui │ │ │ ├── OverwriteFileFilter.java │ │ │ ├── internal │ │ │ └── DisplayableAdapterFactory.java │ │ │ ├── validator │ │ │ └── MavenIdValidator.java │ │ │ ├── viewer │ │ │ ├── CheckboxRepositoryTreeViewer.java │ │ │ ├── FileStoreObservableFactory.java │ │ │ ├── FileStoreTreeStructureAdvisor.java │ │ │ ├── RepositoryTreeContentProvider.java │ │ │ ├── RepositoryTreeLabelProvider.java │ │ │ └── RepositoryTreeViewer.java │ │ │ └── wizard │ │ │ ├── ExportRepositoryWizard.java │ │ │ └── ExportRepositoryWizardPage.java │ ├── org.bonitasoft.studio.common.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── EP3.PR.N1001 Šalutiniai gyvūniniai produktai-1.0.proc │ │ │ └── README │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── common │ │ │ ├── NamingUtilsTest.java │ │ │ ├── ProductVersionTest.java │ │ │ ├── ZipUtilTest.java │ │ │ ├── databinding │ │ │ └── validator │ │ │ │ ├── EmptyInputValidatorTest.java │ │ │ │ ├── FileNameValidatorTest.java │ │ │ │ ├── ForbiddenCharactersValidatorTest.java │ │ │ │ ├── PathValidatorTest.java │ │ │ │ ├── RegExpValidatorTest.java │ │ │ │ ├── ReservedRESTAPIKeywordsValidatorTest.java │ │ │ │ └── UniqueValidatorTest.java │ │ │ ├── emf │ │ │ └── tools │ │ │ │ ├── EMFResourceUtilTest.java │ │ │ │ ├── ExpressionHelperTest.java │ │ │ │ ├── ModelHelperTest.java │ │ │ │ └── ProcessVersionComparatorTest.java │ │ │ ├── model │ │ │ ├── NamespaceUtilTest.java │ │ │ └── validator │ │ │ │ └── ModelNamespaceValidatorTest.java │ │ │ ├── palette │ │ │ ├── DefaultElementNameProviderTest.java │ │ │ └── ProcessPaletteLabelProviderTest.java │ │ │ ├── platform │ │ │ └── tools │ │ │ │ └── CopyInputStreamTest.java │ │ │ └── predicate │ │ │ ├── EMFPredicatesTest.java │ │ │ └── OperationPredicatesTest.java │ ├── org.bonitasoft.studio.common.ui.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── EP3.PR.N1001 Šalutiniai gyvūniniai produktai-1.0.proc │ │ │ └── README │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── common │ │ │ └── ui │ │ │ ├── dialog │ │ │ └── OutlineFilterTest.java │ │ │ ├── jface │ │ │ ├── BonitaErrorDialogTest.java │ │ │ └── databinding │ │ │ │ ├── StatusToMessageSeverityTest.java │ │ │ │ └── converter │ │ │ │ └── BooleanInverserConverterTest.java │ │ │ └── properties │ │ │ ├── PropertySectionHistoryTest.java │ │ │ └── WellTest.java │ ├── org.bonitasoft.studio.common.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── coolbarContributionItem.exsd │ │ │ ├── dashboardContribution.exsd │ │ │ ├── poststartup.exsd │ │ │ ├── propertiesContribution.exsd │ │ │ ├── propertiesContributionTextordata.exsd │ │ │ └── startupDialog.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── common │ │ │ ├── extension │ │ │ ├── BonitaStudioExtensionRegistryManager.java │ │ │ ├── ExtensionContextInjectionFactory.java │ │ │ ├── IBonitaContributionItem.java │ │ │ ├── IPostStartupContribution.java │ │ │ ├── IWidgetContribtution.java │ │ │ ├── OverviewContribution.java │ │ │ └── properties │ │ │ │ ├── ExtensionPagePropertiesReader.java │ │ │ │ └── PagePropertyConstants.java │ │ │ └── ui │ │ │ ├── DateWidgetUtil.java │ │ │ ├── IDisplayable.java │ │ │ ├── PlatformUtil.java │ │ │ ├── dialog │ │ │ ├── OutlineDialog.java │ │ │ ├── OutlineFilter.java │ │ │ └── WarningMessageDialogRunnable.java │ │ │ ├── internal │ │ │ └── IRunnableWithProgressAdapterFactory.java │ │ │ ├── jface │ │ │ ├── AbstractCheckboxLabelProvider.java │ │ │ ├── AbstractLabelDecorator.java │ │ │ ├── ArrayTreeContentProvider.java │ │ │ ├── BonitaErrorDialog.java │ │ │ ├── BonitaSashForm.java │ │ │ ├── BonitaStudioFontRegistry.java │ │ │ ├── CellEditorValidationStatusListener.java │ │ │ ├── ColumnViewerUpdateListener.java │ │ │ ├── CustomWizardDialog.java │ │ │ ├── DataAwareElementViewerFilter.java │ │ │ ├── DataStyledTreeLabelProvider.java │ │ │ ├── EMFFeatureLabelProvider.java │ │ │ ├── EMFListFeatureTreeContentProvider.java │ │ │ ├── ElementForIdLabelProvider.java │ │ │ ├── ExtensibleWizard.java │ │ │ ├── FakeTooltip.java │ │ │ ├── FileActionDialog.java │ │ │ ├── MessageDialogWithLink.java │ │ │ ├── MessageDialogWithPrompt.java │ │ │ ├── OpenNameDialog.java │ │ │ ├── RecursiveControlEnablement.java │ │ │ ├── SWTBotConstants.java │ │ │ ├── TableColumnSorter.java │ │ │ ├── TreeExplorer.java │ │ │ ├── UncancellableWizardDialog.java │ │ │ ├── ValidationDialog.java │ │ │ ├── YesNoToAllDialog.java │ │ │ ├── databinding │ │ │ │ ├── CellEditorViewerProperties.java │ │ │ │ ├── CustomCheckBoxColumnLabelProvider.java │ │ │ │ ├── CustomEMFEditObservables.java │ │ │ │ ├── CustomPropertyColumnLabelProvider.java │ │ │ │ ├── CustomTextEMFObservableValueEditingSupport.java │ │ │ │ ├── DateTimeObservable.java │ │ │ │ ├── DefaultRealm.java │ │ │ │ ├── DialogSupport.java │ │ │ │ ├── StatusToMarkerSeverity.java │ │ │ │ ├── StatusToMessageSeverity.java │ │ │ │ ├── UpdateSetStrategyFactory.java │ │ │ │ ├── UpdateStrategyFactory.java │ │ │ │ ├── UpdateValueStrategyFactory.java │ │ │ │ ├── WizardPageSupportWithoutMessages.java │ │ │ │ ├── converter │ │ │ │ │ ├── BooleanInverserConverter.java │ │ │ │ │ └── ElementToStringConverter.java │ │ │ │ └── observables │ │ │ │ │ ├── DocumentObservable.java │ │ │ │ │ └── GroupTextProperty.java │ │ │ ├── dialog │ │ │ │ └── FinishAndAddCustomWizardDialog.java │ │ │ └── selection │ │ │ │ └── EObjectAdaptableSelectionProvider.java │ │ │ ├── perspectives │ │ │ ├── AbstractPerspectiveFactory.java │ │ │ ├── AutomaticSwitchPerspectivePartListener.java │ │ │ ├── BonitaPerspectivesUtils.java │ │ │ └── ViewIds.java │ │ │ ├── properties │ │ │ ├── AbstractBonitaDescriptionSection.java │ │ │ ├── AbstractNamePropertySectionContribution.java │ │ │ ├── AbstractPropertySectionContribution.java │ │ │ ├── BusyFormHandler.java │ │ │ ├── DescriptionPropertySectionContribution.java │ │ │ ├── DynamicAddRemoveLineComposite.java │ │ │ ├── EObjectSelectionProviderSection.java │ │ │ ├── ExtensibleGridPropertySection.java │ │ │ ├── IExtensibleGridPropertySectionContribution.java │ │ │ ├── NameChangedModifyListener.java │ │ │ ├── PropertySectionHistory.java │ │ │ ├── TogglePropertyHelpContributionItem.java │ │ │ └── Well.java │ │ │ ├── views │ │ │ ├── BonitaPropertiesBrowserPage.java │ │ │ └── TabListContentProviderViewAware.java │ │ │ └── widgets │ │ │ ├── CustomStackLayout.java │ │ │ ├── DurationComposite.java │ │ │ ├── DurationCompositeObservableValue.java │ │ │ ├── EventCircle.java │ │ │ ├── GTKStyleHandler.java │ │ │ ├── LifeCycleWidget.java │ │ │ └── MagicComposite.java │ ├── org.bonitasoft.studio.common │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── dataTypes.properties │ │ ├── filtered-resources │ │ │ └── build_info.properties │ │ ├── fragment.e4xmi │ │ ├── lib │ │ │ └── imgscalr-lib-3.2.jar │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── introModelPageId.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── common │ │ │ ├── Activator.java │ │ │ ├── BonitaConstants.java │ │ │ ├── CommandExecutor.java │ │ │ ├── ConsoleColors.java │ │ │ ├── DataTypeLabels.java │ │ │ ├── DataUtil.java │ │ │ ├── DatasourceConstants.java │ │ │ ├── DateUtil.java │ │ │ ├── FileUtil.java │ │ │ ├── IBonitaVariableContext.java │ │ │ ├── JarInputStreamIFileFriendly.java │ │ │ ├── Messages.java │ │ │ ├── ModelVersion.java │ │ │ ├── NamingUtils.java │ │ │ ├── Pair.java │ │ │ ├── ProductVersion.java │ │ │ ├── RedirectURLBuilder.java │ │ │ ├── RestAPIExtensionNature.java │ │ │ ├── StringOperation.java │ │ │ ├── Strings.java │ │ │ ├── TimerEventLabelProvider.java │ │ │ ├── Triple.java │ │ │ ├── WriteType.java │ │ │ ├── ZipInputStreamIFileFriendly.java │ │ │ ├── ZipUtil.java │ │ │ ├── api │ │ │ └── BonitaAPI.java │ │ │ ├── core │ │ │ ├── IRunnableWithProgress.java │ │ │ └── IRunnableWithStatus.java │ │ │ ├── databinding │ │ │ └── validator │ │ │ │ ├── EAttributeValidatorFactory.java │ │ │ │ ├── EmptyInputValidator.java │ │ │ │ ├── FileNameValidator.java │ │ │ │ ├── ForbiddenCharacterSequenceValidator.java │ │ │ │ ├── ForbiddenCharactersValidator.java │ │ │ │ ├── GroovyReferenceValidator.java │ │ │ │ ├── GroovyReferenceValidatorFactory.java │ │ │ │ ├── IValidatorFactory.java │ │ │ │ ├── InputLengthValidator.java │ │ │ │ ├── MultiValidator.java │ │ │ │ ├── MultiValidatorFactory.java │ │ │ │ ├── PathValidator.java │ │ │ │ ├── RegExpValidator.java │ │ │ │ ├── ReservedRESTAPIKeywordsValidator.java │ │ │ │ ├── TypedValidator.java │ │ │ │ ├── URLEncodableInputValidator.java │ │ │ │ ├── UTF8InputValidator.java │ │ │ │ ├── UniqueValidator.java │ │ │ │ ├── UniqueValidatorFactory.java │ │ │ │ ├── ValidatorEvent.java │ │ │ │ └── ValidatorFactory.java │ │ │ ├── emf │ │ │ └── tools │ │ │ │ ├── EMFModelUpdater.java │ │ │ │ ├── EMFResourceUtil.java │ │ │ │ ├── ElementProcessor.java │ │ │ │ ├── ExpressionHelper.java │ │ │ │ ├── ModelHelper.java │ │ │ │ └── ProcessVersionComparator.java │ │ │ ├── event │ │ │ └── BdmEvents.java │ │ │ ├── functions │ │ │ └── ContractInputFunctions.java │ │ │ ├── log │ │ │ ├── BonitaStudioLog.java │ │ │ └── BonitaStudioLogger.java │ │ │ ├── model │ │ │ ├── ConflictStatus.java │ │ │ ├── IConnectorDefContextProvider.java │ │ │ ├── IProcessContextProvider.java │ │ │ ├── ImportAction.java │ │ │ ├── NamespaceUtil.java │ │ │ └── validator │ │ │ │ ├── ModelNamespaceValidator.java │ │ │ │ ├── ModelVersionValidator.java │ │ │ │ └── XMLModelCompatibilityValidator.java │ │ │ ├── net │ │ │ ├── HttpClientFactory.java │ │ │ └── PortSelector.java │ │ │ ├── palette │ │ │ ├── DefaultElementNameProvider.java │ │ │ └── ProcessPaletteLabelProvider.java │ │ │ ├── platform │ │ │ └── tools │ │ │ │ ├── ClearPersistedStateIndication.java │ │ │ │ ├── CopyInputStream.java │ │ │ │ └── IModelIntroPageIDProvider.java │ │ │ └── predicate │ │ │ ├── ConnectorParameterPredicates.java │ │ │ ├── ContractInputPredicates.java │ │ │ ├── DataPredicates.java │ │ │ ├── EMFPredicates.java │ │ │ ├── ExpressionPredicates.java │ │ │ └── OperationPredicates.java │ ├── org.bonitasoft.studio.configuration.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── configuration │ │ │ ├── ConfigurationValidatorTest.java │ │ │ └── ui │ │ │ ├── dialog │ │ │ └── DetailsEnvironmentDialogTest.java │ │ │ └── wizard │ │ │ └── page │ │ │ └── RunConfigurationWizardPageTest.java │ ├── org.bonitasoft.studio.configuration │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── configure.png │ │ │ ├── dependencies.png │ │ │ ├── jar.gif │ │ │ ├── problem.gif │ │ │ └── run.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── model │ │ │ ├── environment.ecore │ │ │ ├── environment.genmodel │ │ │ └── environment.history │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── org.bonitasoft.studio.configuration.environmentProvider.exsd │ │ │ ├── org.bonitasoft.studio.configuration.exportConfigurationAction.exsd │ │ │ ├── org.bonitasoft.studio.configuration.importConfigurationAction.exsd │ │ │ ├── org.bonitasoft.studio.configuration.synchronizer.exsd │ │ │ └── org.bonitasoft.studio.configuration.wizardPage.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── configuration │ │ │ ├── AbstractConnectorConfigurationSynchronizer.java │ │ │ ├── ConfigurationPlugin.java │ │ │ ├── ConfigurationSynchronizer.java │ │ │ ├── ConfigurationValidator.java │ │ │ ├── DefaultEnvironmentProvider.java │ │ │ ├── EnvironmentPropertyTester.java │ │ │ ├── EnvironmentProvider.java │ │ │ ├── EnvironmentProviderFactory.java │ │ │ ├── EnvironmentResourceProvider.java │ │ │ ├── coolbar │ │ │ └── ConfigureCoolbarItem.java │ │ │ ├── environment │ │ │ ├── Environment.java │ │ │ ├── EnvironmentFactory.java │ │ │ ├── EnvironmentPackage.java │ │ │ ├── impl │ │ │ │ ├── EnvironmentFactoryImpl.java │ │ │ │ ├── EnvironmentImpl.java │ │ │ │ └── EnvironmentPackageImpl.java │ │ │ └── util │ │ │ │ ├── EnvironmentAdapterFactory.java │ │ │ │ ├── EnvironmentContentDescriber.java │ │ │ │ ├── EnvironmentResourceFactoryImpl.java │ │ │ │ ├── EnvironmentResourceImpl.java │ │ │ │ ├── EnvironmentSwitch.java │ │ │ │ └── EnvironmentXMLProcessor.java │ │ │ ├── extension │ │ │ ├── IConfigurationExportAction.java │ │ │ ├── IConfigurationImportAction.java │ │ │ ├── IEnvironmentProvider.java │ │ │ └── IProcessConfigurationWizardPage.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── menu │ │ │ └── OpenEnvironmentMenuContribution.java │ │ │ ├── preferences │ │ │ ├── ConfigurationPreferenceConstants.java │ │ │ └── ConfigurationPreferenceInitializer.java │ │ │ ├── repository │ │ │ ├── DefaultConfigurationStyler.java │ │ │ ├── DefaultEnvironmentContribution.java │ │ │ ├── EnvironmentFileStore.java │ │ │ ├── EnvironmentRepositoryStore.java │ │ │ └── LocalEnvironmentFileStore.java │ │ │ └── ui │ │ │ ├── dialog │ │ │ ├── DetailsEnvironmentDialog.java │ │ │ └── NewEnvironmentDialog.java │ │ │ ├── handler │ │ │ ├── ConfigureHandler.java │ │ │ ├── CreateEnvironmentHandler.java │ │ │ └── SetSelectionAsDefaultConfigurationHandler.java │ │ │ └── wizard │ │ │ ├── ConfigurationWizard.java │ │ │ ├── ConfigurationWizardDialog.java │ │ │ ├── ExportWizard.java │ │ │ ├── ImportWizard.java │ │ │ ├── SelectProcessWizard.java │ │ │ ├── WizardPageContentProvider.java │ │ │ ├── WizardPageDecorator.java │ │ │ ├── WizardPageLabelProvider.java │ │ │ └── page │ │ │ ├── ActionLabelProvider.java │ │ │ ├── DependenciesTreeLabelProvider.java │ │ │ ├── ExportConfigurationWizardPage.java │ │ │ ├── FragmentTypeLabelProvider.java │ │ │ ├── ImportConfigurationWizardPage.java │ │ │ ├── ProcessContentProvider.java │ │ │ ├── ProcessTreeLabelProvider.java │ │ │ ├── RawDependenciesContentProvider.java │ │ │ ├── RunConfigurationWizardPage.java │ │ │ ├── SelectProcessWizardPage.java │ │ │ └── TreeDependenciesContentProvider.java │ ├── org.bonitasoft.studio.connector.wizard.office.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── connector │ │ │ └── wizard │ │ │ └── office │ │ │ ├── templating │ │ │ └── TableExpressionWithoutLazyLoadedRefsTest.java │ │ │ └── validation │ │ │ └── LazyLoadedBusinessObjectReferenceConstraintTest.java │ ├── org.bonitasoft.studio.connector.wizard.office │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── connector │ │ │ └── wizard │ │ │ └── office │ │ │ ├── AbstractOfficeConnectorOutputWizardPage.java │ │ │ ├── Activator.java │ │ │ ├── FilteredGeneratedConnectorConfigurationWizardPage.java │ │ │ ├── converter │ │ │ ├── DocumentConverterConnectorConfigurationWizardPage.java │ │ │ └── DocumentConverterConnectorOutputWizardPage.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── templating │ │ │ ├── DocumentTemplatingConnectorConfigurationWizardPage.java │ │ │ ├── DocumentTemplatingConnectorOutputWizardPage.java │ │ │ └── TableExpressionWithoutLazyLoadedRefs.java │ │ │ └── validation │ │ │ └── LazyLoadedBusinessObjectReferenceConstraint.java │ ├── org.bonitasoft.studio.connector.wizard.sapjco3 │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── connector │ │ │ └── wizard │ │ │ └── sapjco3 │ │ │ ├── Activator.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── pages │ │ │ ├── AbstractInputOutputPage.java │ │ │ ├── AbstractPage.java │ │ │ ├── SapConnectionPage.java │ │ │ ├── SapConnectionPageComponentSwitch.java │ │ │ ├── SapFonctionPage.java │ │ │ ├── SapFonctionPageComponentSwitch.java │ │ │ ├── SapInputPage.java │ │ │ ├── SapOutputPage.java │ │ │ └── dialogs │ │ │ │ ├── AbstractDialog.java │ │ │ │ ├── AbstractInputOutputDialog.java │ │ │ │ ├── SapNewInputDialog.java │ │ │ │ └── SapNewOutputDialog.java │ │ │ ├── providers │ │ │ ├── AutoCompleteExpressionProvider.java │ │ │ ├── TreeContentProvider.java │ │ │ └── TreeLabelProvider.java │ │ │ └── tooling │ │ │ ├── SAPMonoDestinationDataProvider.java │ │ │ ├── SapFunction.java │ │ │ ├── SapFunctionField.java │ │ │ └── SapTool.java │ ├── org.bonitasoft.studio.connector.wizard.sforce │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── connector │ │ │ └── wizard │ │ │ └── sforce │ │ │ ├── Activator.java │ │ │ ├── componentSwitch │ │ │ ├── AbstractSforceComponentSwitch.java │ │ │ ├── ExpressionNameNatureProvider.java │ │ │ ├── ExpressionNatureProvider.java │ │ │ ├── SForceCreateObjectComponentSwitch.java │ │ │ ├── SForceRetrievesObjectsComponentSwitch.java │ │ │ └── SForceUpdatesObjectComponentSwitch.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── pages │ │ │ ├── AbstractSforceWizardPage.java │ │ │ ├── SForceConnectionWizardPage.java │ │ │ ├── SForceCreateObjectWizardPage.java │ │ │ ├── SForceDeletesObjectsWizardPage.java │ │ │ ├── SForceQuerysObjectsWizardPage.java │ │ │ ├── SForceRetrievesObjectsWizardPage.java │ │ │ └── SForceUpdatesObjectWizardPage.java │ │ │ ├── querys │ │ │ ├── QueryCondition.java │ │ │ └── QueryHelper.java │ │ │ └── tooling │ │ │ ├── NoConnectionException.java │ │ │ ├── NoSObjectFoundException.java │ │ │ └── SalesforceTool.java │ ├── org.bonitasoft.studio.connector.wizard.uipath │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── connector │ │ │ └── wizard │ │ │ └── uipath │ │ │ ├── UIPathPlugin.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── page │ │ │ ├── UIPathStartJobConfigurationPage.java │ │ │ ├── UiPathAuthenticationWizardPage.java │ │ │ └── UiPathAuthenticationWizardPageWithOauth.java │ │ │ └── switchBuilder │ │ │ └── UIPathPageComponentSwitchBuilder.java │ ├── org.bonitasoft.studio.connectors.model.edit.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── custom-email-1.0.0.def │ │ │ ├── email-1.0.0.connectorconfig │ │ │ ├── email-1.0.0.def │ │ │ ├── email-1.2.0.def │ │ │ └── fake-email-1.0.1.def │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── connector │ │ │ └── model │ │ │ ├── definition │ │ │ └── migration │ │ │ │ ├── ConnectorConfigurationMigratorTest.java │ │ │ │ ├── ConnectorConfigurationToConnectorDefinitionConverterTest.java │ │ │ │ ├── ConnectorDefinitionComparatorTest.java │ │ │ │ ├── DefaultValueExpressionFactoryTest.java │ │ │ │ └── model │ │ │ │ ├── InputMandatoryChangeTest.java │ │ │ │ ├── InputTypeChangeTest.java │ │ │ │ ├── InputWidgetChangeTest.java │ │ │ │ ├── NewInputChangeTest.java │ │ │ │ ├── OutputTypeChangeTest.java │ │ │ │ ├── RemovedInputChangeTest.java │ │ │ │ └── RemovedOutputChangeTest.java │ │ │ └── implementation │ │ │ └── wizard │ │ │ └── ImplementationJarFilterTest.java │ ├── org.bonitasoft.studio.connectors.model.edit │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── full │ │ │ │ ├── ctool16 │ │ │ │ ├── CreateConnectorDefinition_category_Category.gif │ │ │ │ ├── CreateConnectorDefinition_input_Input.gif │ │ │ │ ├── CreateConnectorDefinition_output_Output.gif │ │ │ │ ├── CreateConnectorDefinition_page_Page.gif │ │ │ │ ├── CreateConnectorImplementation_description_AnyType.gif │ │ │ │ ├── CreateConnectorImplementation_description_Array.gif │ │ │ │ ├── CreateConnectorImplementation_description_Category.gif │ │ │ │ ├── CreateConnectorImplementation_description_Checkbox.gif │ │ │ │ ├── CreateConnectorImplementation_description_ConnectorDefinition.gif │ │ │ │ ├── CreateConnectorImplementation_description_ConnectorImplementation.gif │ │ │ │ ├── CreateConnectorImplementation_description_Group.gif │ │ │ │ ├── CreateConnectorImplementation_description_Input.gif │ │ │ │ ├── CreateConnectorImplementation_description_JarDependencies.gif │ │ │ │ ├── CreateConnectorImplementation_description_List.gif │ │ │ │ ├── CreateConnectorImplementation_description_Output.gif │ │ │ │ ├── CreateConnectorImplementation_description_Page.gif │ │ │ │ ├── CreateConnectorImplementation_description_Password.gif │ │ │ │ ├── CreateConnectorImplementation_description_RadioGroup.gif │ │ │ │ ├── CreateConnectorImplementation_description_Select.gif │ │ │ │ ├── CreateConnectorImplementation_description_Text.gif │ │ │ │ ├── CreateConnectorImplementation_description_TextArea.gif │ │ │ │ ├── CreateConnectorImplementation_description_WidgetComponent.gif │ │ │ │ ├── CreateConnectorImplementation_jarDependencies_JarDependencies.gif │ │ │ │ ├── CreateDocumentRoot_array_Array.gif │ │ │ │ ├── CreateDocumentRoot_category_Category.gif │ │ │ │ ├── CreateDocumentRoot_checkbox_Checkbox.gif │ │ │ │ ├── CreateDocumentRoot_component_Array.gif │ │ │ │ ├── CreateDocumentRoot_component_Checkbox.gif │ │ │ │ ├── CreateDocumentRoot_component_Group.gif │ │ │ │ ├── CreateDocumentRoot_component_List.gif │ │ │ │ ├── CreateDocumentRoot_component_Password.gif │ │ │ │ ├── CreateDocumentRoot_component_RadioGroup.gif │ │ │ │ ├── CreateDocumentRoot_component_Select.gif │ │ │ │ ├── CreateDocumentRoot_component_Text.gif │ │ │ │ ├── CreateDocumentRoot_component_TextArea.gif │ │ │ │ ├── CreateDocumentRoot_component_WidgetComponent.gif │ │ │ │ ├── CreateDocumentRoot_connectorDefinition_ConnectorDefinition.gif │ │ │ │ ├── CreateDocumentRoot_connectorDefinition_UnloadableConnectorDefinition.gif │ │ │ │ ├── CreateDocumentRoot_connectorImplementation_ConnectorImplementation.gif │ │ │ │ ├── CreateDocumentRoot_connectorImplementation_UnloadableConnectorImplementation.gif │ │ │ │ ├── CreateDocumentRoot_group_Group.gif │ │ │ │ ├── CreateDocumentRoot_input_Input.gif │ │ │ │ ├── CreateDocumentRoot_list_List.gif │ │ │ │ ├── CreateDocumentRoot_output_Output.gif │ │ │ │ ├── CreateDocumentRoot_page_Page.gif │ │ │ │ ├── CreateDocumentRoot_password_Password.gif │ │ │ │ ├── CreateDocumentRoot_radioGroup_RadioGroup.gif │ │ │ │ ├── CreateDocumentRoot_select_Select.gif │ │ │ │ ├── CreateDocumentRoot_textArea_TextArea.gif │ │ │ │ ├── CreateDocumentRoot_text_Password.gif │ │ │ │ ├── CreateDocumentRoot_text_Text.gif │ │ │ │ ├── CreateDocumentRoot_widgetComponent_Array.gif │ │ │ │ ├── CreateDocumentRoot_widgetComponent_Checkbox.gif │ │ │ │ ├── CreateDocumentRoot_widgetComponent_List.gif │ │ │ │ ├── CreateDocumentRoot_widgetComponent_Password.gif │ │ │ │ ├── CreateDocumentRoot_widgetComponent_RadioGroup.gif │ │ │ │ ├── CreateDocumentRoot_widgetComponent_Select.gif │ │ │ │ ├── CreateDocumentRoot_widgetComponent_Text.gif │ │ │ │ ├── CreateDocumentRoot_widgetComponent_TextArea.gif │ │ │ │ ├── CreateDocumentRoot_widgetComponent_WidgetComponent.gif │ │ │ │ ├── CreateDocumentRoot_widget_Array.gif │ │ │ │ ├── CreateDocumentRoot_widget_Checkbox.gif │ │ │ │ ├── CreateDocumentRoot_widget_List.gif │ │ │ │ ├── CreateDocumentRoot_widget_Password.gif │ │ │ │ ├── CreateDocumentRoot_widget_RadioGroup.gif │ │ │ │ ├── CreateDocumentRoot_widget_Select.gif │ │ │ │ ├── CreateDocumentRoot_widget_Text.gif │ │ │ │ ├── CreateDocumentRoot_widget_TextArea.gif │ │ │ │ ├── CreateGroup_widget_Array.gif │ │ │ │ ├── CreateGroup_widget_Checkbox.gif │ │ │ │ ├── CreateGroup_widget_Group.gif │ │ │ │ ├── CreateGroup_widget_List.gif │ │ │ │ ├── CreateGroup_widget_Password.gif │ │ │ │ ├── CreateGroup_widget_RadioGroup.gif │ │ │ │ ├── CreateGroup_widget_ScriptEditor.gif │ │ │ │ ├── CreateGroup_widget_Select.gif │ │ │ │ ├── CreateGroup_widget_Text.gif │ │ │ │ ├── CreateGroup_widget_TextArea.gif │ │ │ │ ├── CreateGroup_widget_WidgetComponent.gif │ │ │ │ ├── CreatePage_widget_Array.gif │ │ │ │ ├── CreatePage_widget_Checkbox.gif │ │ │ │ ├── CreatePage_widget_Group.gif │ │ │ │ ├── CreatePage_widget_List.gif │ │ │ │ ├── CreatePage_widget_Password.gif │ │ │ │ ├── CreatePage_widget_RadioGroup.gif │ │ │ │ ├── CreatePage_widget_ScriptEditor.gif │ │ │ │ ├── CreatePage_widget_Select.gif │ │ │ │ ├── CreatePage_widget_Text.gif │ │ │ │ ├── CreatePage_widget_TextArea.gif │ │ │ │ └── CreatePage_widget_WidgetComponent.gif │ │ │ │ └── obj16 │ │ │ │ ├── Array.gif │ │ │ │ ├── Category.gif │ │ │ │ ├── Checkbox.gif │ │ │ │ ├── ConnectorDefinition.gif │ │ │ │ ├── ConnectorImplementation.gif │ │ │ │ ├── DocumentRoot.gif │ │ │ │ ├── Group.gif │ │ │ │ ├── Input.gif │ │ │ │ ├── JarDependencies.gif │ │ │ │ ├── List.gif │ │ │ │ ├── Output.gif │ │ │ │ ├── Page.gif │ │ │ │ ├── Password.gif │ │ │ │ ├── RadioGroup.gif │ │ │ │ ├── ScriptEditor.gif │ │ │ │ ├── Select.gif │ │ │ │ ├── Text.gif │ │ │ │ ├── TextArea.gif │ │ │ │ ├── UnloadableConnectorDefinition.gif │ │ │ │ ├── UnloadableConnectorImplementation.gif │ │ │ │ └── WidgetComponent.gif │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ └── testConfigurationListener.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── connector │ │ │ └── model │ │ │ ├── definition │ │ │ ├── AbstractDefFileStore.java │ │ │ ├── AbstractDefinitionContentProvider.java │ │ │ ├── AbstractDefinitionRepositoryStore.java │ │ │ ├── AbstractFromArtifactFileStore.java │ │ │ ├── AbstractUniqueDefinitionContentProvider.java │ │ │ ├── CloudProblematicsConnectors.java │ │ │ ├── IConnectorDefinitionContainer.java │ │ │ ├── dialog │ │ │ │ ├── AbstractDefinitionWizardDialog.java │ │ │ │ ├── DefinitionCategoryContentProvider.java │ │ │ │ ├── ITestConfigurationListener.java │ │ │ │ ├── NewCategoryDialog.java │ │ │ │ ├── SaveConfigurationListener.java │ │ │ │ ├── SelectPageWidgetDialog.java │ │ │ │ ├── WidgetLabelProvider.java │ │ │ │ └── suport │ │ │ │ │ ├── CaptionEditingSupport.java │ │ │ │ │ ├── RadioGroupItemEditingSupport.java │ │ │ │ │ └── SelectItemEditingSupport.java │ │ │ ├── migration │ │ │ │ ├── ConnectorConfigurationMigrator.java │ │ │ │ ├── ConnectorConfigurationMigratorFactory.java │ │ │ │ ├── ConnectorConfigurationToConnectorDefinitionConverter.java │ │ │ │ ├── ConnectorDefinitionComparator.java │ │ │ │ ├── DefaultValueExpressionFactory.java │ │ │ │ ├── DefinitionChangesVisitor.java │ │ │ │ └── model │ │ │ │ │ ├── DefinitionInputChange.java │ │ │ │ │ ├── DefinitionOutputChange.java │ │ │ │ │ ├── InputMandatoryChange.java │ │ │ │ │ ├── InputTypeChange.java │ │ │ │ │ ├── InputWidgetChange.java │ │ │ │ │ ├── NewInputChange.java │ │ │ │ │ ├── NewOutputChange.java │ │ │ │ │ ├── OutputTypeChange.java │ │ │ │ │ ├── RemovedInputChange.java │ │ │ │ │ └── RemovedOutputChange.java │ │ │ └── wizard │ │ │ │ ├── AbstractConnectorConfigurationWizardPage.java │ │ │ │ ├── ConfigurationsContentProvider.java │ │ │ │ ├── ConnectorConfigurationLabelProvider.java │ │ │ │ ├── ConnectorConfigurationSupport.java │ │ │ │ ├── ConnectorDefinitionExplorerLabelProvider.java │ │ │ │ ├── ConnectorDefinitionTreeLabelProvider.java │ │ │ │ ├── ConnectorInputNameResolver.java │ │ │ │ ├── GeneratedConnectorWizardPage.java │ │ │ │ ├── PageComponentSwitch.java │ │ │ │ ├── PageComponentSwitchBuilder.java │ │ │ │ ├── SaveConnectorConfigurationWizard.java │ │ │ │ ├── SaveConnectorConfigurationWizardPage.java │ │ │ │ ├── SelectConnectorConfigurationWizard.java │ │ │ │ ├── SelectConnectorConfigurationWizardPage.java │ │ │ │ └── SelectNameAndDescWizardPage.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ └── implementation │ │ │ ├── AbstractConnectorImplRepositoryStore.java │ │ │ ├── IImplementationRepositoryStore.java │ │ │ ├── filter │ │ │ └── CustomConnectorViewerFilter.java │ │ │ ├── provider │ │ │ ├── ConnectorImplementationContentProvider.java │ │ │ └── ConnectorImplementationLabelProvider.java │ │ │ └── wizard │ │ │ ├── AbstractDefinitionSelectionImpementationWizardPage.java │ │ │ ├── AbstractImplementationWizardPage.java │ │ │ ├── AbstractSelectImplementationWizard.java │ │ │ ├── ImplementationJarFilter.java │ │ │ └── SelectConnectorImplementationWizardPage.java │ ├── org.bonitasoft.studio.connectors.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── connectors │ │ │ └── ui │ │ │ ├── property │ │ │ └── section │ │ │ │ ├── ConnectorEventFilterTest.java │ │ │ │ ├── ConnectorInSectionTest.java │ │ │ │ └── ConnectorOutSectionTest.java │ │ │ └── wizard │ │ │ ├── ConnectorAvailableExpressionTypeFilterTest.java │ │ │ ├── MoveConnectorWizardTest.java │ │ │ └── page │ │ │ ├── ConnectorOutputAvailableExpressionTypeFilterTest.java │ │ │ ├── DefaultDatabaseOutputAvailableExpressionTypeFilterTest.java │ │ │ └── MoveConnectorWizardPageTest.java │ ├── org.bonitasoft.studio.connectors │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── column_placeholder.png │ │ │ ├── column_placeholder_disabled.png │ │ │ ├── conf.png │ │ │ ├── database_driver_add.png │ │ │ ├── database_driver_add@2x.png │ │ │ ├── database_driver_add_dark.png │ │ │ ├── database_driver_add_dark@2x.png │ │ │ ├── database_driver_settings.png │ │ │ ├── database_driver_settings@2x.png │ │ │ ├── database_driver_settings_dark.png │ │ │ ├── database_driver_settings_dark@2x.png │ │ │ ├── databases_driver.png │ │ │ ├── debug.png │ │ │ ├── jar.gif │ │ │ ├── java.gif │ │ │ ├── output.png │ │ │ ├── refresh.png │ │ │ ├── row_placeholder.png │ │ │ ├── row_placeholder_disabled.png │ │ │ ├── single_placeholder.png │ │ │ ├── single_placeholder_disabled.png │ │ │ ├── table_placeholder.png │ │ │ ├── table_placeholder_disabled.png │ │ │ └── test.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── connectorDefFilter.exsd │ │ │ ├── connectorMapper.exsd │ │ │ └── connectorWizard.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── connectors │ │ │ ├── ConnectorPlugin.java │ │ │ ├── configuration │ │ │ ├── ConnectorAssociationLabelProvider.java │ │ │ ├── ConnectorConfigurationWizardPage.java │ │ │ ├── ConnectorsConfigurationSynchronizer.java │ │ │ ├── CustomConnectorDefinitionInput.java │ │ │ ├── DefinitionLabelProvider.java │ │ │ ├── DefinitionMappingsContentProvider.java │ │ │ ├── ImplementationLabelProvider.java │ │ │ └── SelectConnectorImplementationWizard.java │ │ │ ├── expression │ │ │ ├── ConnectorExpressionProvider.java │ │ │ └── ConnectorOutputExpressionProvider.java │ │ │ ├── extension │ │ │ ├── AbstractConnectorDefinitionMapper.java │ │ │ ├── CustomWizardExtension.java │ │ │ ├── DatabaseConnectorActionExtension.java │ │ │ ├── ICanBeUsedProvider.java │ │ │ ├── ICanFinishProvider.java │ │ │ ├── IConnectorDefinitionMapper.java │ │ │ └── ICustomExtensionWizardPage.java │ │ │ ├── handler │ │ │ ├── ConfigureDatabaseDriverHandler.java │ │ │ ├── TestConnectorHandler.java │ │ │ └── TestConnectorWizardHandler.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── menu │ │ │ └── ConnectorMenuContributionItem.java │ │ │ ├── operation │ │ │ └── TestConnectorOperation.java │ │ │ ├── propertyTester │ │ │ └── ConnectorPropertyTester.java │ │ │ ├── repository │ │ │ ├── ConnectorConfRepositoryStore.java │ │ │ ├── ConnectorDefFileStore.java │ │ │ ├── ConnectorDefRepositoryStore.java │ │ │ ├── ConnectorImplFileStore.java │ │ │ ├── ConnectorImplRepositoryStore.java │ │ │ ├── ConnectorResourceProvider.java │ │ │ ├── DatabaseConnectorPropertiesFileStore.java │ │ │ ├── DatabaseConnectorPropertiesRepositoryStore.java │ │ │ ├── DependencyConnectorDefFileStore.java │ │ │ └── DependencyConnectorImplFileStore.java │ │ │ ├── ui │ │ │ ├── PojoBrowserContentProvider.java │ │ │ ├── ReflectionUtil.java │ │ │ ├── TestConfigurationListener.java │ │ │ ├── TestConnectorResultDialog.java │ │ │ ├── XmlDocumentContentProvider.java │ │ │ ├── XmlLabelProvider.java │ │ │ ├── preferences │ │ │ │ ├── DBConnectorsPreferencePage.java │ │ │ │ └── DriverAssociationPage.java │ │ │ ├── property │ │ │ │ ├── filter │ │ │ │ │ └── ConnectableElementWithoutSendTaskAndSubProcessEvent.java │ │ │ │ └── section │ │ │ │ │ ├── ConnectorEventFilter.java │ │ │ │ │ ├── ConnectorInSection.java │ │ │ │ │ ├── ConnectorOutSection.java │ │ │ │ │ ├── ConnectorSection.java │ │ │ │ │ └── SelectDefinitionVersionDialog.java │ │ │ ├── provider │ │ │ │ ├── ConnectorConfigurationContentProvider.java │ │ │ │ ├── ConnectorConfigurationLabelProvider.java │ │ │ │ ├── ConnectorDefinitionContentProvider.java │ │ │ │ ├── DabaBaseConnectorDefinitionLabelProvider.java │ │ │ │ ├── DatabaseConnectorDefinitionContentProvider.java │ │ │ │ ├── DatabaseDriversContentProvider.java │ │ │ │ ├── DatabaseDriversLabelProvider.java │ │ │ │ ├── StyledConnectorLabelProvider.java │ │ │ │ ├── SwitchConnectorLabelProvider.java │ │ │ │ └── UniqueConnectorDefinitionContentProvider.java │ │ │ └── wizard │ │ │ │ ├── ConnectorAvailableExpressionTypeFilter.java │ │ │ │ ├── ConnectorDefinitionWizardDialog.java │ │ │ │ ├── ConnectorWizard.java │ │ │ │ ├── DeprecatedConnectorViewerFilter.java │ │ │ │ ├── EditConnectorConfigurationWizard.java │ │ │ │ ├── MoveConnectorWizard.java │ │ │ │ ├── SelectUserConnectorDefinitionWizard.java │ │ │ │ ├── SelectUserConnectorImplementationWizard.java │ │ │ │ ├── TestConnectorDefinitionWizardDialog.java │ │ │ │ ├── TestConnectorUtil.java │ │ │ │ ├── TestConnectorWizard.java │ │ │ │ ├── command │ │ │ │ └── ChangeConnectorContainerCommand.java │ │ │ │ ├── custom │ │ │ │ ├── GroovyScriptConfigurationWizardPage.java │ │ │ │ ├── MailContentComponentSwitch.java │ │ │ │ ├── MailContentWizardPage.java │ │ │ │ └── webservice │ │ │ │ │ ├── CustomNamespaceContext.java │ │ │ │ │ ├── IsConnectorEditing.java │ │ │ │ │ ├── SecuredWSConnectorWizardPage.java │ │ │ │ │ ├── WSDLParsingTool.java │ │ │ │ │ └── WSDLPreferences.java │ │ │ │ └── page │ │ │ │ ├── AbstractConnectorOutputWizardPage.java │ │ │ │ ├── ConnectableElementViewerFilter.java │ │ │ │ ├── ConnectorOutputAvailableExpressionTypeFilter.java │ │ │ │ ├── ConnectorOutputWizardPage.java │ │ │ │ ├── ConnectorTestWizardPage.java │ │ │ │ ├── DatabaseConnectorConstants.java │ │ │ │ ├── DatabaseConnectorDriversWizardPage.java │ │ │ │ ├── DatabaseConnectorOutputWizardPage.java │ │ │ │ ├── DefaultDatabaseOutputAvailableExpressionTypeFilter.java │ │ │ │ ├── ExportConnectorWizardPage.java │ │ │ │ ├── MoveConnectorWizardPage.java │ │ │ │ ├── SelectAdvancedConnectorDefinitionWizardPage.java │ │ │ │ ├── SelectConnectorConfigurationWizardPage.java │ │ │ │ ├── SelectConnectorDefinitionWizardPage.java │ │ │ │ ├── SelectDatabaseOutputTypeWizardPage.java │ │ │ │ ├── SelectEventConnectorNameAndDescWizardPage.java │ │ │ │ ├── SelectUserConnectorDefinitionWizardPage.java │ │ │ │ ├── TestConnectorOutputWizardPage.java │ │ │ │ ├── TestDatabaseConnectorOutputWizardPage.java │ │ │ │ └── sqlutil │ │ │ │ └── SQLQueryUtil.java │ │ │ └── util │ │ │ └── DriverConstants.java │ ├── org.bonitasoft.studio.contract.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── contract │ │ │ ├── UngenerateAggregatedReferenceChildrenTest.java │ │ │ ├── core │ │ │ ├── constraint │ │ │ │ └── ConstraintInputIndexerTest.java │ │ │ ├── expression │ │ │ │ └── ContractInputExpressionProviderTest.java │ │ │ ├── mapping │ │ │ │ ├── ContractConstraintBuilderTest.java │ │ │ │ ├── FieldToContractInputMappingFactoryTest.java │ │ │ │ ├── RelationFieldToContractInputMappingTest.java │ │ │ │ ├── RootContractInputGeneratorTest.java │ │ │ │ ├── SimpleFieldToContractInputMappingTest.java │ │ │ │ ├── expression │ │ │ │ │ └── FieldToContractInputMappingExpressionBuilderTest.java │ │ │ │ ├── operation │ │ │ │ │ ├── DefaultFormatterPreferencesTest.java │ │ │ │ │ ├── DocumentUpdateOperationBuilderTest.java │ │ │ │ │ ├── FieldToContractInputMappingBuilder.java │ │ │ │ │ ├── FieldToContractInputMappingOperationBuilderTest.java │ │ │ │ │ ├── MappingOperationScriptBuilderTest.java │ │ │ │ │ ├── PropertySetterTest.java │ │ │ │ │ ├── VariableNameResolverTest.java │ │ │ │ │ └── initializer │ │ │ │ │ │ ├── AggregationReferencePropertyInitializerTest.java │ │ │ │ │ │ ├── BusinessObjectQueryInitializerTest.java │ │ │ │ │ │ ├── CompositionReferencePropertyInitializerTest.java │ │ │ │ │ │ ├── InitializerContextTest.java │ │ │ │ │ │ ├── MultipleAggregationBusinessObjectQueryInitializerTest.java │ │ │ │ │ │ ├── MultipleAggregationReferencePropertyInitializerTest.java │ │ │ │ │ │ ├── MultipleCompositionReferencePropertyInitializerTest.java │ │ │ │ │ │ ├── NewBusinessObjectInitializerTest.java │ │ │ │ │ │ ├── NewBusinessObjectListInitializerTest.java │ │ │ │ │ │ ├── SimpleFieldPropertyInitializerTest.java │ │ │ │ │ │ └── factory │ │ │ │ │ │ ├── BusinessObjectInitializerFactoryTest.java │ │ │ │ │ │ ├── PropertyInitializerFactoryTest.java │ │ │ │ │ │ └── RelationPropertyInitializerFactoryTest.java │ │ │ │ └── treeMaching │ │ │ │ │ ├── TreeBuilderTest.java │ │ │ │ │ └── resolver │ │ │ │ │ └── ContractToBusinessDataResolverTest.java │ │ │ ├── operation │ │ │ │ ├── CreateFormFromContractOperationTest.java │ │ │ │ └── ToWebContractTest.java │ │ │ ├── refactoring │ │ │ │ ├── ConstraintExpressionScriptContainerTest.java │ │ │ │ ├── ContractInputRefactorOperationFactoryTest.java │ │ │ │ ├── ContractInputRefactorPairTest.java │ │ │ │ └── RefactorContractInputOperationTest.java │ │ │ └── validation │ │ │ │ └── ContractConstraintInputValidatorTest.java │ │ │ └── ui │ │ │ ├── property │ │ │ ├── AddRowOnEnterCellNavigationStrategyTest.java │ │ │ ├── CharriageColumnViewerEditorActivationStrategyTest.java │ │ │ ├── ContractContainerAdaptableSelectionProviderTest.java │ │ │ ├── ContractContainerFilterTest.java │ │ │ ├── ContractPropertySectionTest.java │ │ │ ├── FieldDecoratorProviderTest.java │ │ │ ├── constraint │ │ │ │ ├── ContractConstraintControllerTest.java │ │ │ │ ├── ContractConstraintsTableViewerTest.java │ │ │ │ └── edit │ │ │ │ │ ├── ConstraintExpressionPropertyEditingSupportTest.java │ │ │ │ │ ├── ConstraintNameObservableEditingSupportTest.java │ │ │ │ │ ├── ErrorMessageObservableEditingSupportTest.java │ │ │ │ │ └── editor │ │ │ │ │ ├── CompilationProblemRequestorTest.java │ │ │ │ │ ├── ConstraintEditorFactoryTest.java │ │ │ │ │ ├── ConstraintEditorWizardDialogTest.java │ │ │ │ │ ├── ConstraintExpressionEditorValidatorTest.java │ │ │ │ │ ├── ContractConstraintExpressionDialogCellEditorTest.java │ │ │ │ │ ├── ContractConstraintExpressionWizardTest.java │ │ │ │ │ ├── WebBrowserFactoryTest.java │ │ │ │ │ └── contentassist │ │ │ │ │ └── ContractInputCompletionProposalComputerTest.java │ │ │ └── input │ │ │ │ ├── CellEditorControlAdapterTest.java │ │ │ │ ├── ComplexTypeChildrenViewerFilterTest.java │ │ │ │ ├── ContractInputControllerTest.java │ │ │ │ ├── ContractInputObservableFactoryTest.java │ │ │ │ ├── ContractInputTreeStructureAdvisorTest.java │ │ │ │ ├── ContractInputTreeViewerTest.java │ │ │ │ ├── edit │ │ │ │ ├── ContractInputTypeEditingSupportTest.java │ │ │ │ ├── DescriptionObservableEditingSupportTest.java │ │ │ │ ├── InputMappingPropertyEditingSupportTest.java │ │ │ │ └── InputNameObservableEditingSupportTest.java │ │ │ │ └── labelProvider │ │ │ │ ├── ContractInputTypeCellLabelProviderTest.java │ │ │ │ └── MultipleInputCheckboxLabelProviderTest.java │ │ │ └── wizard │ │ │ ├── AvailableDataValidatorTest.java │ │ │ ├── ContractInputGenerationWizardTest.java │ │ │ ├── CreateContractInputFromBusinessObjectWizardPageTest.java │ │ │ ├── EmptySelectionMultivalidatorTest.java │ │ │ ├── FieldToContractInputMappingObservableFactoryTest.java │ │ │ ├── FieldToContractInputMappingViewerCheckStateManagerTest.java │ │ │ ├── GeneratedScriptPreviewPageTest.java │ │ │ ├── SelectDataWizardPageTest.java │ │ │ ├── TestWizardContainer.java │ │ │ └── labelProvider │ │ │ ├── FieldNameColumnLabelProviderTest.java │ │ │ ├── FieldTypeColumnLabelProviderTest.java │ │ │ ├── InputTypeColumnLabelProviderTest.java │ │ │ └── MandatoryColumnLabelProviderTest.java │ ├── org.bonitasoft.studio.contract │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── ContractConstraint.gif │ │ │ └── ContractInput.gif │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── src-test │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── bonitasoft │ │ │ │ └── studio │ │ │ │ └── contract │ │ │ │ ├── UngenerateAggregatedReferenceChildrenTest.java │ │ │ │ ├── core │ │ │ │ ├── ContractEngineDefinitionBuilderTest.java │ │ │ │ ├── constraint │ │ │ │ │ └── ConstraintInputIndexerTest.java │ │ │ │ ├── expression │ │ │ │ │ └── ContractInputExpressionProviderTest.java │ │ │ │ ├── mapping │ │ │ │ │ ├── ContractConstraintBuilderTest.java │ │ │ │ │ ├── FieldToContractInputMappingFactoryTest.java │ │ │ │ │ ├── RelationFieldToContractInputMappingTest.java │ │ │ │ │ ├── RootContractInputGeneratorTest.java │ │ │ │ │ ├── SimpleFieldToContractInputMappingTest.java │ │ │ │ │ ├── expression │ │ │ │ │ │ └── FieldToContractInputMappingExpressionBuilderTest.java │ │ │ │ │ ├── operation │ │ │ │ │ │ ├── DefaultFormatterPreferencesTest.java │ │ │ │ │ │ ├── DocumentUpdateOperationBuilderTest.java │ │ │ │ │ │ ├── FieldToContractInputMappingBuilder.java │ │ │ │ │ │ ├── FieldToContractInputMappingOperationBuilderTest.java │ │ │ │ │ │ ├── MappingOperationScriptBuilderTest.java │ │ │ │ │ │ ├── PropertySetterTest.java │ │ │ │ │ │ ├── VariableNameResolverTest.java │ │ │ │ │ │ └── initializer │ │ │ │ │ │ │ ├── AggregationReferencePropertyInitializerTest.java │ │ │ │ │ │ │ ├── BusinessObjectQueryInitializerTest.java │ │ │ │ │ │ │ ├── CompositionReferencePropertyInitializerTest.java │ │ │ │ │ │ │ ├── InitializerContextTest.java │ │ │ │ │ │ │ ├── MultipleAggregationBusinessObjectQueryInitializerTest.java │ │ │ │ │ │ │ ├── MultipleAggregationReferencePropertyInitializerTest.java │ │ │ │ │ │ │ ├── MultipleCompositionReferencePropertyInitializerTest.java │ │ │ │ │ │ │ ├── NewBusinessObjectInitializerTest.java │ │ │ │ │ │ │ ├── NewBusinessObjectListInitializerTest.java │ │ │ │ │ │ │ ├── SimpleFieldPropertyInitializerTest.java │ │ │ │ │ │ │ └── factory │ │ │ │ │ │ │ ├── BusinessObjectInitializerFactoryTest.java │ │ │ │ │ │ │ ├── PropertyInitializerFactoryTest.java │ │ │ │ │ │ │ └── RelationPropertyInitializerFactoryTest.java │ │ │ │ │ └── treeMaching │ │ │ │ │ │ ├── TreeBuilderTest.java │ │ │ │ │ │ └── resolver │ │ │ │ │ │ └── ContractToBusinessDataResolverTest.java │ │ │ │ ├── operation │ │ │ │ │ ├── CreateFormFromContractOperationTest.java │ │ │ │ │ └── ToWebContractTest.java │ │ │ │ ├── refactoring │ │ │ │ │ ├── ConstraintExpressionScriptContainerTest.java │ │ │ │ │ ├── ContractInputRefactorOperationFactoryTest.java │ │ │ │ │ ├── ContractInputRefactorPairTest.java │ │ │ │ │ └── RefactorContractInputOperationTest.java │ │ │ │ └── validation │ │ │ │ │ └── ContractConstraintInputValidatorTest.java │ │ │ │ └── ui │ │ │ │ ├── property │ │ │ │ ├── AddRowOnEnterCellNavigationStrategyTest.java │ │ │ │ ├── CharriageColumnViewerEditorActivationStrategyTest.java │ │ │ │ ├── ContractContainerAdaptableSelectionProviderTest.java │ │ │ │ ├── ContractContainerFilterTest.java │ │ │ │ ├── ContractPropertySectionTest.java │ │ │ │ ├── FieldDecoratorProviderTest.java │ │ │ │ ├── constraint │ │ │ │ │ ├── ContractConstraintControllerTest.java │ │ │ │ │ ├── ContractConstraintsTableViewerTest.java │ │ │ │ │ └── edit │ │ │ │ │ │ ├── ConstraintExpressionPropertyEditingSupportTest.java │ │ │ │ │ │ ├── ConstraintNameObservableEditingSupportTest.java │ │ │ │ │ │ ├── ErrorMessageObservableEditingSupportTest.java │ │ │ │ │ │ └── editor │ │ │ │ │ │ ├── CompilationProblemRequestorTest.java │ │ │ │ │ │ ├── ConstraintEditorFactoryTest.java │ │ │ │ │ │ ├── ConstraintEditorWizardDialogTest.java │ │ │ │ │ │ ├── ConstraintExpressionEditorValidatorTest.java │ │ │ │ │ │ ├── ContractConstraintEditorTest.java │ │ │ │ │ │ ├── ContractConstraintExpressionDialogCellEditorTest.java │ │ │ │ │ │ ├── ContractConstraintExpressionWizardPageTest.java │ │ │ │ │ │ ├── ContractConstraintExpressionWizardTest.java │ │ │ │ │ │ ├── WebBrowserFactoryTest.java │ │ │ │ │ │ └── contentassist │ │ │ │ │ │ └── ContractInputCompletionProposalComputerTest.java │ │ │ │ └── input │ │ │ │ │ ├── CellEditorControlAdapterTest.java │ │ │ │ │ ├── ComplexTypeChildrenViewerFilterTest.java │ │ │ │ │ ├── ContractInputControllerTest.java │ │ │ │ │ ├── ContractInputObservableFactoryTest.java │ │ │ │ │ ├── ContractInputTreeStructureAdvisorTest.java │ │ │ │ │ ├── ContractInputTreeViewerTest.java │ │ │ │ │ ├── edit │ │ │ │ │ ├── ContractInputTypeEditingSupportTest.java │ │ │ │ │ ├── DescriptionObservableEditingSupportTest.java │ │ │ │ │ ├── InputMappingPropertyEditingSupportTest.java │ │ │ │ │ └── InputNameObservableEditingSupportTest.java │ │ │ │ │ └── labelProvider │ │ │ │ │ ├── ContractInputTypeCellLabelProviderTest.java │ │ │ │ │ └── MultipleInputCheckboxLabelProviderTest.java │ │ │ │ └── wizard │ │ │ │ ├── AvailableDataValidatorTest.java │ │ │ │ ├── ContractInputGenerationWizardTest.java │ │ │ │ ├── CreateContractInputFromBusinessObjectWizardPageTest.java │ │ │ │ ├── EmptySelectionMultivalidatorTest.java │ │ │ │ ├── FieldToContractInputMappingObservableFactoryTest.java │ │ │ │ ├── FieldToContractInputMappingViewerCheckStateManagerTest.java │ │ │ │ ├── GeneratedScriptPreviewPageTest.java │ │ │ │ ├── SelectDataWizardPageTest.java │ │ │ │ ├── TestWizardContainer.java │ │ │ │ └── labelProvider │ │ │ │ ├── FieldNameColumnLabelProviderTest.java │ │ │ │ ├── FieldTypeColumnLabelProviderTest.java │ │ │ │ ├── InputTypeColumnLabelProviderTest.java │ │ │ │ └── MandatoryColumnLabelProviderTest.java │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── contract │ │ │ ├── ContractPlugin.java │ │ │ ├── UngenerateAggregatedReferenceChildren.java │ │ │ ├── core │ │ │ ├── constraint │ │ │ │ └── ConstraintInputIndexer.java │ │ │ ├── expression │ │ │ │ └── ContractInputExpressionProvider.java │ │ │ ├── mapping │ │ │ │ ├── ContractConstraintBuilder.java │ │ │ │ ├── FieldToContractInputMapping.java │ │ │ │ ├── FieldToContractInputMappingFactory.java │ │ │ │ ├── RelationFieldToContractInputMapping.java │ │ │ │ ├── RemoveAggregateReferencesChildren.java │ │ │ │ ├── RootContractInputGenerator.java │ │ │ │ ├── SimpleFieldToContractInputMapping.java │ │ │ │ ├── UnselectLazyReferencesInMultipleContainer.java │ │ │ │ ├── expression │ │ │ │ │ └── FieldToContractInputMappingExpressionBuilder.java │ │ │ │ ├── operation │ │ │ │ │ ├── BusinessObjectInstantiationException.java │ │ │ │ │ ├── DefaultFormatterPreferences.java │ │ │ │ │ ├── DocumentUpdateOperationBuilder.java │ │ │ │ │ ├── FieldToContractInputMappingOperationBuilder.java │ │ │ │ │ ├── MappingOperationScriptBuilder.java │ │ │ │ │ ├── OperationCreationException.java │ │ │ │ │ ├── PropertySetter.java │ │ │ │ │ ├── VariableNameResolver.java │ │ │ │ │ └── initializer │ │ │ │ │ │ ├── AbstractBusinessObjectInitializer.java │ │ │ │ │ │ ├── AggregationReferencePropertyInitializer.java │ │ │ │ │ │ ├── BusinessObjectQueryInitializer.java │ │ │ │ │ │ ├── CompositionReferencePropertyInitializer.java │ │ │ │ │ │ ├── IPropertyInitializer.java │ │ │ │ │ │ ├── InitializerContext.java │ │ │ │ │ │ ├── MultipleAggregationBusinessObjectQueryInitializer.java │ │ │ │ │ │ ├── MultipleAggregationReferencePropertyInitializer.java │ │ │ │ │ │ ├── MultipleCompositionBusinessObjectQueryInitializer.java │ │ │ │ │ │ ├── MultipleCompositionReferencePropertyInitializer.java │ │ │ │ │ │ ├── NewBusinessObjectInitializer.java │ │ │ │ │ │ ├── NewBusinessObjectListInitializer.java │ │ │ │ │ │ ├── SimpleFieldPropertyInitializer.java │ │ │ │ │ │ └── factory │ │ │ │ │ │ ├── AbsractInitializerFactory.java │ │ │ │ │ │ ├── BusinessObjectInitializerFactory.java │ │ │ │ │ │ ├── InitializerFactory.java │ │ │ │ │ │ ├── PropertyInitializerFactory.java │ │ │ │ │ │ └── RelationPropertyInitializerFactory.java │ │ │ │ └── treeMaching │ │ │ │ │ ├── BusinessDataStore.java │ │ │ │ │ ├── ContractInputToFieldMatcher.java │ │ │ │ │ ├── TreeBuilder.java │ │ │ │ │ ├── TreeNode.java │ │ │ │ │ ├── TreeResult.java │ │ │ │ │ └── resolver │ │ │ │ │ └── ContractToBusinessDataResolver.java │ │ │ ├── operation │ │ │ │ ├── CreateFormFromContractOperation.java │ │ │ │ ├── NewFormFromContractOperationFactory.java │ │ │ │ └── ToWebContract.java │ │ │ ├── refactoring │ │ │ │ ├── ConstraintExpressionScriptContainer.java │ │ │ │ ├── ContractInputRefactorOperationFactory.java │ │ │ │ ├── ContractInputRefactorPair.java │ │ │ │ └── RefactorContractInputOperation.java │ │ │ └── validation │ │ │ │ └── ContractConstraintInputValidator.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ └── ui │ │ │ ├── expression │ │ │ └── ContractInputLabelProvider.java │ │ │ ├── property │ │ │ ├── AddRowOnEnterCellNavigationStrategy.java │ │ │ ├── CharriageColumnViewerEditorActivationStrategy.java │ │ │ ├── ContractContainerAdaptableSelectionProvider.java │ │ │ ├── ContractContainerFilter.java │ │ │ ├── ContractPropertySection.java │ │ │ ├── FieldDecoratorProvider.java │ │ │ ├── IViewerController.java │ │ │ ├── constraint │ │ │ │ ├── ContractConstraintController.java │ │ │ │ ├── ContractConstraintsTableViewer.java │ │ │ │ └── edit │ │ │ │ │ ├── ConstraintExpressionPropertyEditingSupport.java │ │ │ │ │ ├── ConstraintNameObservableEditingSupport.java │ │ │ │ │ ├── DescriptionObservableEditingSupport.java │ │ │ │ │ ├── ErrorMessageObservableEditingSupport.java │ │ │ │ │ └── editor │ │ │ │ │ ├── CompilationProblemRequestor.java │ │ │ │ │ ├── ConstraintEditorFactory.java │ │ │ │ │ ├── ConstraintEditorWizardDialog.java │ │ │ │ │ ├── ConstraintExpressionEditorValidator.java │ │ │ │ │ ├── ConstraintExpressionSourceViewerConfiguration.java │ │ │ │ │ ├── ContractConstraintEditor.java │ │ │ │ │ ├── ContractConstraintEditorFactory.java │ │ │ │ │ ├── ContractConstraintExpressionDialogCellEditor.java │ │ │ │ │ ├── ContractConstraintExpressionWizard.java │ │ │ │ │ ├── ContractConstraintExpressionWizardPage.java │ │ │ │ │ ├── WebBrowserFactory.java │ │ │ │ │ └── contentassist │ │ │ │ │ ├── CodeVisitorSupportContext.java │ │ │ │ │ ├── ContractInputCompletionProposalComputer.java │ │ │ │ │ └── ContractInputProposalsCodeVisitorSupport.java │ │ │ └── input │ │ │ │ ├── CellEditorControlAdapter.java │ │ │ │ ├── ComplexTypeChildrenViewerFilter.java │ │ │ │ ├── ContractInputController.java │ │ │ │ ├── ContractInputObservableFactory.java │ │ │ │ ├── ContractInputTreeStructureAdvisor.java │ │ │ │ ├── ContractInputTreeViewer.java │ │ │ │ ├── CustomAdapterFactoryContentProvider.java │ │ │ │ ├── edit │ │ │ │ ├── ContractInputCardinalityEditingSupport.java │ │ │ │ ├── ContractInputTypeEditingSupport.java │ │ │ │ ├── ContractInputTypePropertyDescriptor.java │ │ │ │ ├── DescriptionObservableEditingSupport.java │ │ │ │ └── InputNameObservableEditingSupport.java │ │ │ │ └── labelProvider │ │ │ │ ├── ContractInputTypeCellLabelProvider.java │ │ │ │ └── MultipleInputCheckboxLabelProvider.java │ │ │ └── wizard │ │ │ ├── AddInputContractFromDataWizardDialog.java │ │ │ ├── AvailableDataValidator.java │ │ │ ├── BusinessDataSelectedValidator.java │ │ │ ├── ContractInputGenerationInfoDialogFactory.java │ │ │ ├── ContractInputGenerationWizard.java │ │ │ ├── ContractInputGenerationWizardPagesFactory.java │ │ │ ├── CreateContractInputFromBusinessObjectWizardPage.java │ │ │ ├── DocumentStyledLabelProvider.java │ │ │ ├── EmptySelectionMultivalidator.java │ │ │ ├── FieldToContractInputMappingObservableFactory.java │ │ │ ├── FieldToContractInputMappingTreeStructureAdvisor.java │ │ │ ├── FieldToContractInputMappingViewerCheckStateManager.java │ │ │ ├── GeneratedScriptPreviewPage.java │ │ │ ├── GenerationOptions.java │ │ │ ├── SelectDataWizardPage.java │ │ │ ├── edit │ │ │ └── ContractInputTypeEditingSupport.java │ │ │ └── labelProvider │ │ │ ├── FieldNameColumnLabelProvider.java │ │ │ ├── FieldTypeColumnLabelProvider.java │ │ │ ├── InputTypeColumnLabelProvider.java │ │ │ └── MandatoryColumnLabelProvider.java │ ├── org.bonitasoft.studio.data.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── data │ │ │ └── ui │ │ │ ├── property │ │ │ └── section │ │ │ │ └── AbstractDataSectionTest.java │ │ │ └── wizard │ │ │ ├── CreateVariableProposalListenerTest.java │ │ │ ├── DataDefaultValueExpressionFilterTest.java │ │ │ ├── DataNameUnicityValidatorTest.java │ │ │ └── DataWizardTest.java │ ├── org.bonitasoft.studio.data │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── defineBdm_60.png │ │ │ └── filenew.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── data │ │ │ ├── DataPlugin.java │ │ │ ├── commands │ │ │ ├── AddDataCommand.java │ │ │ ├── AddDataTypeCommand.java │ │ │ ├── MoveDataCommand.java │ │ │ ├── RemoveDataCommand.java │ │ │ ├── RemoveDataTypeCommand.java │ │ │ ├── UpdateDataCommand.java │ │ │ └── UpdateDataTypeCommand.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── provider │ │ │ ├── DataExpressionProvider.java │ │ │ ├── JavaSetterContentProvider.java │ │ │ ├── JavaSetterOperatorEditor.java │ │ │ └── PojoBrowserContentProvider.java │ │ │ ├── ui │ │ │ ├── dialog │ │ │ │ ├── EnumDataTypeDialog.java │ │ │ │ └── editingsupport │ │ │ │ │ ├── DataTypeDescriptionEditingSupport.java │ │ │ │ │ ├── DataTypeNameEditingSupport.java │ │ │ │ │ └── LiteralEditingSupport.java │ │ │ ├── property │ │ │ │ └── section │ │ │ │ │ ├── AbstractDataSection.java │ │ │ │ │ ├── DataLabelProvider.java │ │ │ │ │ ├── DataSection.java │ │ │ │ │ ├── DiagramAdaptableSelectionProvider.java │ │ │ │ │ ├── HasDataFilter.java │ │ │ │ │ ├── IAddData.java │ │ │ │ │ ├── LocalDataFilter.java │ │ │ │ │ ├── PoolAdaptableSelectionProvider.java │ │ │ │ │ ├── PoolDataSection.java │ │ │ │ │ ├── RemoveDataHandler.java │ │ │ │ │ └── control │ │ │ │ │ ├── BusinessDataViewer.java │ │ │ │ │ ├── DataViewer.java │ │ │ │ │ ├── DataWizardFactory.java │ │ │ │ │ └── ProcessDataViewer.java │ │ │ └── wizard │ │ │ │ ├── CreateVariableProposalListener.java │ │ │ │ ├── DataDefaultValueExpressionFilter.java │ │ │ │ ├── DataDefaultValueExpressionNameResolver.java │ │ │ │ ├── DataNameUnicityValidator.java │ │ │ │ ├── DataTypeLabelProvider.java │ │ │ │ ├── DataTypeProcessSwitch.java │ │ │ │ ├── DataWizard.java │ │ │ │ ├── DataWizardDialog.java │ │ │ │ ├── DataWizardPage.java │ │ │ │ ├── MoveDataWizard.java │ │ │ │ ├── MoveDataWizardPage.java │ │ │ │ └── provider │ │ │ │ ├── BooleanExpressionNatureProvider.java │ │ │ │ ├── NowDateExpressionNatureProvider.java │ │ │ │ └── OptionsExpressionNatureProvider.java │ │ │ └── util │ │ │ └── DataUtil.java │ ├── org.bonitasoft.studio.datatools │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── datatools │ │ │ ├── ConnectionProfileUtil.java │ │ │ ├── DatatoolsPlugin.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ └── ui │ │ │ ├── DatabaseConnectionWizardPage.java │ │ │ └── DriverTemplateLabelProvider.java │ ├── org.bonitasoft.studio.decision.table │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── decision │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ ├── DecisionTableGridPaintListener.java │ │ │ ├── DecisionTableWizard.java │ │ │ ├── DecisionTableWizardPage.java │ │ │ └── condition │ │ │ ├── DecisionTableComboProvider.java │ │ │ ├── MaximizableWizardDialog.java │ │ │ └── TakeTransitionLabelProvider.java │ ├── org.bonitasoft.studio.dependencies.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ └── org │ │ │ │ └── bonitasoft │ │ │ │ └── studio │ │ │ │ └── dependencies │ │ │ │ └── handler │ │ │ │ ├── NoJar.zip │ │ │ │ ├── test-2.zip │ │ │ │ └── test.zip │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── dependencies │ │ │ └── repository │ │ │ └── DependencyFileStoreTest.java │ ├── org.bonitasoft.studio.dependencies │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── add_remove_jar_files.png │ │ │ ├── add_remove_jar_files_disabl.png │ │ │ ├── dependencies.png │ │ │ ├── jar.gif │ │ │ └── refresh_connector_repositor.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── dependencies │ │ │ ├── DependenciesPlugin.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── repository │ │ │ ├── DependencyFileStore.java │ │ │ ├── DependencyRepositoryStore.java │ │ │ └── MavenDependencyFileStore.java │ │ │ └── ui │ │ │ ├── MissingDependenciesDecorator.java │ │ │ └── dialog │ │ │ ├── ManageConnectorJarDialog.java │ │ │ ├── ManageJarDialog.java │ │ │ └── SelectJarsDialog.java │ ├── org.bonitasoft.studio.designer.linux │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ └── pom.xml │ ├── org.bonitasoft.studio.designer.macosx │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ └── pom.xml │ ├── org.bonitasoft.studio.designer.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── invalidJson.json │ │ │ ├── myJson.json │ │ │ ├── noIdJson.json │ │ │ ├── noNameJson.json │ │ │ ├── page-Step1.zip │ │ │ └── pbButton.json │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── designer │ │ │ ├── core │ │ │ ├── PageDesignerURLFactoryTest.java │ │ │ ├── WorkspaceSystemPropertiesTest.java │ │ │ ├── bos │ │ │ │ └── WebFormBOSArchiveFileStoreProviderTest.java │ │ │ ├── command │ │ │ │ └── UpdateFormMappingCommandTest.java │ │ │ ├── expression │ │ │ │ ├── CreateNewFormProposalListenerTest.java │ │ │ │ └── FormReferenceExpressionProviderTest.java │ │ │ ├── operation │ │ │ │ ├── CreateFormOperationTest.java │ │ │ │ └── CreateUIDArtifactOperationTest.java │ │ │ └── repository │ │ │ │ ├── JSONFileStoreTest.java │ │ │ │ ├── NamedJSONFileStoreTest.java │ │ │ │ ├── WebPageFileStoreTest.java │ │ │ │ └── WebWidgetFileStoreTest.java │ │ │ └── ui │ │ │ ├── contribution │ │ │ ├── CreateAndEditFormContributionItemTest.java │ │ │ └── OpenUIDesignerCoolBarItemTest.java │ │ │ ├── handler │ │ │ └── OpenUIDesignerHandlerTest.java │ │ │ └── property │ │ │ ├── filter │ │ │ ├── PoolOrLaneFilterTest.java │ │ │ └── TaskFilterTest.java │ │ │ └── section │ │ │ ├── CaseOverviewFormMappingPropertySectionTest.java │ │ │ ├── EntryFormMappingPropertySectionTest.java │ │ │ ├── FormReferenceProposalLabelProviderTest.java │ │ │ ├── PageFlowAdaptableSelectionProviderTest.java │ │ │ └── control │ │ │ ├── CreateOrEditFormProposalListenerTest.java │ │ │ ├── FormReferenceExpressionValidatorTest.java │ │ │ ├── FormReferenceExpressionViewerTest.java │ │ │ └── InfoMessageConverterTest.java │ ├── org.bonitasoft.studio.designer.war │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ └── pom.xml │ ├── org.bonitasoft.studio.designer.win32 │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ └── pom.xml │ ├── org.bonitasoft.studio.designer │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ └── CustomWidgetTemplate.json │ │ ├── schema │ │ │ └── formOperationFactory.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── designer │ │ │ ├── UIDesignerPlugin.java │ │ │ ├── core │ │ │ ├── DataRepositoryServerManager.java │ │ │ ├── DeleteBDMEventHandler.java │ │ │ ├── FormScope.java │ │ │ ├── PageDesignerURLFactory.java │ │ │ ├── PostBDMEventHandler.java │ │ │ ├── UIDWorkspaceSynchronizer.java │ │ │ ├── UIDesignerServerManager.java │ │ │ ├── WorkspaceSystemProperties.java │ │ │ ├── bar │ │ │ │ └── RestFormBuilder.java │ │ │ ├── bos │ │ │ │ └── WebFormBOSArchiveFileStoreProvider.java │ │ │ ├── command │ │ │ │ └── UpdateFormMappingCommand.java │ │ │ ├── exception │ │ │ │ ├── PageIncompatibleException.java │ │ │ │ └── UIDBackendException.java │ │ │ ├── expression │ │ │ │ ├── CreateNewFormProposalListener.java │ │ │ │ └── FormReferenceExpressionProvider.java │ │ │ ├── operation │ │ │ │ ├── CreateCustomWidgetOperation.java │ │ │ │ ├── CreateFormOperation.java │ │ │ │ ├── CreateFragmentOperation.java │ │ │ │ ├── CreateLayoutOperation.java │ │ │ │ ├── CreatePageOperation.java │ │ │ │ ├── CreateUIDArtifactOperation.java │ │ │ │ ├── DeleteUIDArtifactOperation.java │ │ │ │ ├── IContractReferenceResolver.java │ │ │ │ ├── INewFormOperationFactory.java │ │ │ │ ├── IndexingUIDOperation.java │ │ │ │ ├── MigrateUIDOperation.java │ │ │ │ ├── NewFormOperationFactoryDelegate.java │ │ │ │ └── UIDArtifactMigrationVisitor.java │ │ │ ├── preference │ │ │ │ └── DesignerPreferenceConstants.java │ │ │ ├── propertytester │ │ │ │ └── WebArtifactPropertyTester.java │ │ │ └── repository │ │ │ │ ├── InFolderJSONFileStore.java │ │ │ │ ├── JSONFileStore.java │ │ │ │ ├── NamedJSONFileStore.java │ │ │ │ ├── PageUUIDResolver.java │ │ │ │ ├── UIDArtifactsMigrationStep.java │ │ │ │ ├── UIDModelValidator.java │ │ │ │ ├── WebArtifactRepositoryStore.java │ │ │ │ ├── WebFragmentFileStore.java │ │ │ │ ├── WebFragmentRepositoryStore.java │ │ │ │ ├── WebPageFileStore.java │ │ │ │ ├── WebPageRepositoryStore.java │ │ │ │ ├── WebResource.java │ │ │ │ ├── WebWidgetFileStore.java │ │ │ │ └── WebWidgetRepositoryStore.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── menu │ │ │ ├── NewFragmentMenuContribution.java │ │ │ ├── NewLayoutMenuContribution.java │ │ │ ├── NewPageMenuContribution.java │ │ │ └── NewWidgetMenuContribution.java │ │ │ └── ui │ │ │ ├── contribution │ │ │ ├── CreateAndEditFormContributionItem.java │ │ │ └── OpenUIDesignerCoolBarItem.java │ │ │ ├── handler │ │ │ ├── CreateCustomWidgetHandler.java │ │ │ ├── CreateFragmentHandler.java │ │ │ ├── CreateLayoutHandler.java │ │ │ ├── CreatePageHandler.java │ │ │ └── OpenUIDesignerHandler.java │ │ │ ├── overview │ │ │ └── PageAndFormOverviewContribution.java │ │ │ └── property │ │ │ ├── filter │ │ │ ├── PoolOrLaneFilter.java │ │ │ └── TaskFilter.java │ │ │ └── section │ │ │ ├── CaseOverviewFormMappingPropertySection.java │ │ │ ├── CaseStartFormMappingPropertySection.java │ │ │ ├── EntryFormMappingPropertySection.java │ │ │ ├── FormReferenceProposalLabelProvider.java │ │ │ ├── PageFlowAdaptableSelectionProvider.java │ │ │ └── control │ │ │ ├── CreateOrEditFormProposalListener.java │ │ │ ├── FormMappingRadioGroup.java │ │ │ ├── FormReferenceExpressionValidator.java │ │ │ ├── FormReferenceExpressionViewer.java │ │ │ ├── InfoMessageComposite.java │ │ │ ├── InfoMessageConverter.java │ │ │ ├── InternalMappingComposite.java │ │ │ ├── URLMappingComposite.java │ │ │ └── WebPageNameResourceChangeListener.java │ ├── org.bonitasoft.studio.diagram.custom.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── ProcessWithLegacyForms-1.0.proc │ │ │ └── ProcessWithoutLegacyForms-1.0.proc │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── diagram │ │ │ └── custom │ │ │ ├── clipboard │ │ │ └── CustomPasteCommandTest.java │ │ │ ├── editPolicies │ │ │ └── command │ │ │ │ └── OverlapSetBoundsCommandTest.java │ │ │ ├── part │ │ │ └── BonitaDataPropertiesBrowserPageTest.java │ │ │ └── repository │ │ │ ├── DiagramFileStoreTest.java │ │ │ ├── DiagramLegacyFormsValidatorTest.java │ │ │ ├── DiagramRepositoryStoreTest.java │ │ │ └── NewDiagramFactoryTest.java │ ├── org.bonitasoft.studio.diagram.custom │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── Event.png │ │ │ ├── Icon_tools.png │ │ │ ├── boundary_tool.png │ │ │ ├── connecteur.png │ │ │ ├── menuIcons │ │ │ │ ├── align-horizontal.png │ │ │ │ ├── align-vertical.png │ │ │ │ ├── aligncenter.gif │ │ │ │ ├── alignmid.gif │ │ │ │ ├── copy.png │ │ │ │ ├── copy_disabled.png │ │ │ │ ├── copy_hover.png │ │ │ │ ├── copy_selected.png │ │ │ │ ├── delete.gif │ │ │ │ ├── edit.png │ │ │ │ ├── extractSubProcess.png │ │ │ │ ├── paste.png │ │ │ │ ├── paste_disabled.png │ │ │ │ ├── paste_hover.png │ │ │ │ ├── paste_selected.png │ │ │ │ ├── print.png │ │ │ │ ├── save-as-image.png │ │ │ │ ├── save.png │ │ │ │ ├── save@2x.png │ │ │ │ ├── save_dark.png │ │ │ │ ├── save_dark@2x.png │ │ │ │ ├── zoom100.gif │ │ │ │ ├── zoomminus.gif │ │ │ │ └── zoomplus.gif │ │ │ ├── resources.gif │ │ │ ├── run.png │ │ │ └── timer.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── diagram │ │ │ └── custom │ │ │ ├── Activator.java │ │ │ ├── BonitaNodesElementTypeResolver.java │ │ │ ├── DiagramPropertyTester.java │ │ │ ├── ProcessElementLabelProvider.java │ │ │ ├── actions │ │ │ ├── DuplicateDiagramAction.java │ │ │ ├── HorizontalArrangeAction.java │ │ │ ├── OpenLatestSubprocessCommand.java │ │ │ ├── OpenSpecificProcessCommand.java │ │ │ └── VerticalArrangeAction.java │ │ │ ├── anchors │ │ │ ├── AnchorPosition.java │ │ │ ├── AnchorUtil.java │ │ │ ├── FixedConnectionAnchor.java │ │ │ ├── SourceFixedConnectionAnchor.java │ │ │ └── TargetFixedConnectionAnchor.java │ │ │ ├── clipboard │ │ │ ├── Clipboard.java │ │ │ ├── CustomClipboardSupportGlobalActionHandler.java │ │ │ ├── CustomCopyCommand.java │ │ │ ├── CustomCutCommand.java │ │ │ ├── CustomGlobalActionHandlerProvider.java │ │ │ └── CustomPasteCommand.java │ │ │ ├── commands │ │ │ ├── CompartmentChildCreateCommand.java │ │ │ ├── CompartmentRepositionEObjectCommand.java │ │ │ ├── DeleteDiagramCommandHandler.java │ │ │ ├── ExportDiagramHandler.java │ │ │ ├── HorizontalArrangeCommandHandler.java │ │ │ ├── NewDiagramCommandHandler.java │ │ │ ├── OpenDiagramCommandHandler.java │ │ │ ├── ResetZoomCommandHandler.java │ │ │ ├── SwitchLaneCommand.java │ │ │ ├── SwitchPoolOrderCommand.java │ │ │ ├── UpdatePoolSizeCommand.java │ │ │ ├── VerticalArrangeCommandHandler.java │ │ │ ├── ZoomInCommandHandler.java │ │ │ └── ZoomOutCommandHandler.java │ │ │ ├── contributionItem │ │ │ ├── ListProcessContributionItem.java │ │ │ ├── ListSubprocessContributionItem.java │ │ │ └── RunProcessContributionItem.java │ │ │ ├── decorator │ │ │ ├── AbstractBonitaDecorator.java │ │ │ ├── ActivityDecoratorProvider.java │ │ │ ├── ConnectorDecorator.java │ │ │ ├── HumanTaskDecorator.java │ │ │ ├── IBonitaDecorator.java │ │ │ ├── LoopSubprocessTaskDecorator.java │ │ │ ├── LoopTaskDecorator.java │ │ │ ├── MultiInstanceDecorator.java │ │ │ ├── MultiInstanceParalellDecorator.java │ │ │ ├── MultiInstanceParalellSubprocessDecorator.java │ │ │ ├── MultiInstanceSequentialDecorator.java │ │ │ ├── MultiInstanceSequentialSubProcessDecorator.java │ │ │ ├── MultiInstanceSubprocessDecorator.java │ │ │ ├── ReceiveTaskDecorator.java │ │ │ ├── ScriptTaskDecorator.java │ │ │ ├── SendTaskDecorator.java │ │ │ ├── ServiceTaskDecorator.java │ │ │ ├── SubProcessDecorator.java │ │ │ └── subprocessevent │ │ │ │ ├── AbstractSubProcessEventStartTypeDecorator.java │ │ │ │ ├── ErrorSubProcessEventStartDecorator.java │ │ │ │ ├── MessageSubProcessEventDecorator.java │ │ │ │ ├── SignalSubProcessEventDecorator.java │ │ │ │ └── TimerSubProcessEventDecorator.java │ │ │ ├── editPolicies │ │ │ ├── AbstractSingleSelectionEditPolicy.java │ │ │ ├── AbstractSwitchLaneSelectionEditPolicy.java │ │ │ ├── ActivitySwitchEditPolicy.java │ │ │ ├── BoundaryElementTypeResolver.java │ │ │ ├── BoundaryEventSwitchEditPolicy.java │ │ │ ├── BoundaryEventToolEditPolicy.java │ │ │ ├── CompartmentChildCreationEditPolicy.java │ │ │ ├── CompartmentEditPolicy.java │ │ │ ├── CustomConnectionHandle.java │ │ │ ├── CustomConnectionHandleTool.java │ │ │ ├── CustomCreateOrSelectElementCommand.java │ │ │ ├── CustomCreationEditPolicy.java │ │ │ ├── CustomDragDropEditPolicy.java │ │ │ ├── CustomFeedbackXYLayoutPolicy.java │ │ │ ├── CustomLaneItemSemanticEditPolicy.java │ │ │ ├── CustomMainProcessItemSemanticEditPolicy.java │ │ │ ├── CustomPoolResizeHandle.java │ │ │ ├── CustomPopupMenu.java │ │ │ ├── CustomResizableEditPolicyEx.java │ │ │ ├── CustomResizeHandle.java │ │ │ ├── CustomSnapFeedbackPolicy.java │ │ │ ├── CustomSubProcessResizableCompartmentEditPolicy.java │ │ │ ├── DraggableElement.java │ │ │ ├── DraggableElementCreationTool.java │ │ │ ├── NextElementEditPolicy.java │ │ │ ├── NextElementPaletteProvider.java │ │ │ ├── OpenDetailsOrGoToSubProcessEditPolicy.java │ │ │ ├── ProcessEditPolicyEntries.java │ │ │ ├── SelectionFeedbackEditPolicy.java │ │ │ ├── SequenceFlowCreationEditPolicy.java │ │ │ ├── SwitchLaneSelectionEditpolicy.java │ │ │ ├── SwitchPoolSelectionEditPolicy.java │ │ │ ├── UpdateSizeLaneSelectionEditPolicy.java │ │ │ ├── UpdateSizePoolSelectionEditPolicy.java │ │ │ └── command │ │ │ │ └── OverlapSetBoundsCommand.java │ │ │ ├── figures │ │ │ ├── CustomShapeCompartmentFigure.java │ │ │ ├── CustomSubprocessShapeCompartmentFigure.java │ │ │ ├── DropDownMenuEventFigure.java │ │ │ ├── DropDownMenuFigure.java │ │ │ ├── IEventSelectionListener.java │ │ │ ├── MenuEventFigure.java │ │ │ ├── SlideMenuBarFigure.java │ │ │ ├── SubprocessCollapseHandle.java │ │ │ └── VerticalLabel.java │ │ │ ├── handlers │ │ │ ├── DeleteHandler.java │ │ │ ├── DuplicateDiagramHandler.java │ │ │ └── PasteHandler.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── layout │ │ │ └── CustomGravityConstrainedFlowLayout.java │ │ │ ├── menu │ │ │ └── NewDiagramContributionItem.java │ │ │ ├── operation │ │ │ └── DuplicateDiagramOperation.java │ │ │ ├── part │ │ │ ├── BonitaAppearancePropertiesBrowserPage.java │ │ │ ├── BonitaApplicationPropertiesBrowserPage.java │ │ │ ├── BonitaDataPropertiesBrowserPage.java │ │ │ ├── BonitaExecutionPropertiesBrowserPage.java │ │ │ └── BonitaGeneralProcessPropertiesBrowserPage.java │ │ │ ├── parts │ │ │ ├── CustomANDGateway2EditPart.java │ │ │ ├── CustomActivity2EditPart.java │ │ │ ├── CustomActivityName2EditPart.java │ │ │ ├── CustomAndGatewayLabel2EditPart.java │ │ │ ├── CustomBoundaryMessageEventEditPart.java │ │ │ ├── CustomBoundaryMessageEventLabelEditPart.java │ │ │ ├── CustomBoundarySignalEventEditPart.java │ │ │ ├── CustomBoundarySignalEventLabelEditPart.java │ │ │ ├── CustomBoundaryTimerEventEditPart.java │ │ │ ├── CustomBoundaryTimerEventLabelEditPart.java │ │ │ ├── CustomCallActivity2EditPart.java │ │ │ ├── CustomCallActivityName2EditPart.java │ │ │ ├── CustomCatchLinkEvent2EditPart.java │ │ │ ├── CustomCatchLinkEventLabel2EditPart.java │ │ │ ├── CustomEndErrorEvent2EditPart.java │ │ │ ├── CustomEndErrorEventLabel2EditPart.java │ │ │ ├── CustomEndEvent2EditPart.java │ │ │ ├── CustomEndEventLabel2EditPart.java │ │ │ ├── CustomEndMessageEvent2EditPart.java │ │ │ ├── CustomEndMessageEventLabel2EditPart.java │ │ │ ├── CustomEndSignalEvent2EditPart.java │ │ │ ├── CustomEndSignalEventLabel2EditPart.java │ │ │ ├── CustomEndTerminatedEvent2EditPart.java │ │ │ ├── CustomEndTerminatedEventLabel2EditPart.java │ │ │ ├── CustomInclusiveGateway2EditPart.java │ │ │ ├── CustomInclusiveGatewayLabel2EditPart.java │ │ │ ├── CustomIntermediateCatchMessageEvent2EditPart.java │ │ │ ├── CustomIntermediateCatchMessageEventLabel2EditPart.java │ │ │ ├── CustomIntermediateCatchSignalEvent2EditPart.java │ │ │ ├── CustomIntermediateCatchSignalEventLabel2EditPart.java │ │ │ ├── CustomIntermediateCatchTimerEvent2EditPart.java │ │ │ ├── CustomIntermediateCatchTimerEventLabel2EditPart.java │ │ │ ├── CustomIntermediateErrorCatchEvent2EditPart.java │ │ │ ├── CustomIntermediateErrorCatchEventLabel2EditPart.java │ │ │ ├── CustomIntermediateErrorCatchEventLabel3EditPart.java │ │ │ ├── CustomIntermediateErrorCatchEventLabel4EditPart.java │ │ │ ├── CustomIntermediateErrorCatchEventLabel5EditPart.java │ │ │ ├── CustomIntermediateErrorCatchEventLabel6EditPart.java │ │ │ ├── CustomIntermediateErrorCatchEventLabelEditPart.java │ │ │ ├── CustomIntermediateThrowMessageEvent2EditPart.java │ │ │ ├── CustomIntermediateThrowMessageEventLabel2EditPart.java │ │ │ ├── CustomIntermediateThrowSignalEvent2EditPart.java │ │ │ ├── CustomIntermediateThrowSignalEventLabel2EditPart.java │ │ │ ├── CustomLaneCompartmentEditPart.java │ │ │ ├── CustomLaneEditPart.java │ │ │ ├── CustomLaneNameEditPart.java │ │ │ ├── CustomMainProcessEditPart.java │ │ │ ├── CustomMessageFlowEditPart.java │ │ │ ├── CustomMessageFlowLabelEditPart.java │ │ │ ├── CustomNonInterruptingBoundaryTimerEventEditPart.java │ │ │ ├── CustomNonInterruptingBoundaryTimerEventNameEditPart.java │ │ │ ├── CustomPoolCompartmentEditPart.java │ │ │ ├── CustomPoolEditPart.java │ │ │ ├── CustomPoolNameEditPart.java │ │ │ ├── CustomProcessDiagramActionBarContributor.java │ │ │ ├── CustomProcessDiagramEditor.java │ │ │ ├── CustomReceiveTask2EditPart.java │ │ │ ├── CustomReceiveTaskLabel2EditPart.java │ │ │ ├── CustomScriptTask2EditPart.java │ │ │ ├── CustomScriptTaskLabel2EditPart.java │ │ │ ├── CustomSendTask2EditPart.java │ │ │ ├── CustomSendTaskLabel2EditPart.java │ │ │ ├── CustomSequenceFlowEditPart.java │ │ │ ├── CustomSequenceFlowNameEditPart.java │ │ │ ├── CustomServiceTask2EditPart.java │ │ │ ├── CustomServiceTaskLabel2EditPart.java │ │ │ ├── CustomStartErrorEvent2EditPart.java │ │ │ ├── CustomStartErrorEventLabel2EditPart.java │ │ │ ├── CustomStartEvent2EditPart.java │ │ │ ├── CustomStartEventLabel2EditPart.java │ │ │ ├── CustomStartMessageEvent2EditPart.java │ │ │ ├── CustomStartMessageEventLabel2EditPart.java │ │ │ ├── CustomStartSignalEvent2EditPart.java │ │ │ ├── CustomStartSignalEventLabel2EditPart.java │ │ │ ├── CustomStartTimerEvent2EditPart.java │ │ │ ├── CustomStartTimerEventLabel2EditPart.java │ │ │ ├── CustomSubProcessEvent2EditPart.java │ │ │ ├── CustomSubProcessEventLabel2EditPart.java │ │ │ ├── CustomSubprocessEventCompartmentEditPart.java │ │ │ ├── CustomTask2EditPart.java │ │ │ ├── CustomTaskName2EditPart.java │ │ │ ├── CustomTextAnnotation2EditPart.java │ │ │ ├── CustomTextAnnotationText2EditPart.java │ │ │ ├── CustomThrowLinkEvent2EditPart.java │ │ │ ├── CustomThrowLinkEventLabel2EditPart.java │ │ │ ├── CustomXORGateway2EditPart.java │ │ │ └── CustomXORGatewayLabel2EditPart.java │ │ │ ├── perspective │ │ │ └── PerspectiveProcessFactory.java │ │ │ ├── preferences │ │ │ └── ShowDiagramGridField.java │ │ │ ├── providers │ │ │ ├── CustomDiagramContributionItemProvider.java │ │ │ ├── CustomProcessEditPartFactory.java │ │ │ ├── CustomProcessEditPartProvider.java │ │ │ ├── CustomProcessEditPolicyProvider.java │ │ │ ├── CustomProcessViewProvider.java │ │ │ ├── DiagramColorProvider.java │ │ │ ├── DiagramEditorProvider.java │ │ │ ├── LeftRightLayoutProvider.java │ │ │ └── TopDownLayoutProvider.java │ │ │ ├── refactoring │ │ │ ├── BusinessDataMapper.java │ │ │ ├── ExtractAsCallActivityHandler.java │ │ │ ├── ExtractAsCallActivityTransactionalCommand.java │ │ │ ├── MoveItemsAndCopyDataCommand.java │ │ │ └── ProcessNamingTools.java │ │ │ ├── repository │ │ │ ├── DiagramCompatibilityValidator.java │ │ │ ├── DiagramFileStore.java │ │ │ ├── DiagramFileStoreBOSArchiveProvider.java │ │ │ ├── DiagramLegacyFormsValidator.java │ │ │ ├── DiagramRepositoryStore.java │ │ │ ├── FindFilesResourceVisitor.java │ │ │ ├── NewDiagramFactory.java │ │ │ ├── ProcessConfigurationFileStore.java │ │ │ ├── ProcessConfigurationRepositoryStore.java │ │ │ ├── SaveConfigurationEMFCommand.java │ │ │ └── SaveDiagramResourceCommand.java │ │ │ ├── tools │ │ │ └── ToolAndToolEntry.java │ │ │ └── wizard │ │ │ ├── AbstractManageDiagramWizard.java │ │ │ ├── AbstractManageDiagramWizardPage.java │ │ │ ├── DeleteDiagramWizard.java │ │ │ ├── DeleteDiagramWizardPage.java │ │ │ ├── DiagramLabelProvider.java │ │ │ ├── DiagramTreeContentProvider.java │ │ │ ├── OpenDiagramWizard.java │ │ │ └── OpenDiagramWizardPage.java │ ├── org.bonitasoft.studio.diagram │ │ ├── .classpath │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── .gitignore │ │ │ ├── obj16 │ │ │ │ └── ProcessDiagramFile.gif │ │ │ └── wizban │ │ │ │ └── NewProcessWizard.gif │ │ ├── messages.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── model │ │ │ └── process │ │ │ └── diagram │ │ │ ├── edit │ │ │ ├── commands │ │ │ │ ├── ANDGateway2CreateCommand.java │ │ │ │ ├── ANDGatewayCreateCommand.java │ │ │ │ ├── Activity2CreateCommand.java │ │ │ │ ├── ActivityCreateCommand.java │ │ │ │ ├── BoundaryMessageEvent2CreateCommand.java │ │ │ │ ├── BoundaryMessageEventCreateCommand.java │ │ │ │ ├── BoundarySignalEvent2CreateCommand.java │ │ │ │ ├── BoundarySignalEventCreateCommand.java │ │ │ │ ├── BoundaryTimerEvent2CreateCommand.java │ │ │ │ ├── BoundaryTimerEventCreateCommand.java │ │ │ │ ├── CallActivity2CreateCommand.java │ │ │ │ ├── CallActivityCreateCommand.java │ │ │ │ ├── CatchLinkEvent2CreateCommand.java │ │ │ │ ├── CatchLinkEventCreateCommand.java │ │ │ │ ├── EndErrorEvent2CreateCommand.java │ │ │ │ ├── EndErrorEventCreateCommand.java │ │ │ │ ├── EndEvent2CreateCommand.java │ │ │ │ ├── EndEventCreateCommand.java │ │ │ │ ├── EndMessageEvent2CreateCommand.java │ │ │ │ ├── EndMessageEventCreateCommand.java │ │ │ │ ├── EndSignalEvent2CreateCommand.java │ │ │ │ ├── EndSignalEventCreateCommand.java │ │ │ │ ├── EndTerminatedEvent2CreateCommand.java │ │ │ │ ├── EndTerminatedEventCreateCommand.java │ │ │ │ ├── Event2CreateCommand.java │ │ │ │ ├── EventCreateCommand.java │ │ │ │ ├── InclusiveGateway2CreateCommand.java │ │ │ │ ├── InclusiveGatewayCreateCommand.java │ │ │ │ ├── IntermediateCatchMessageEvent2CreateCommand.java │ │ │ │ ├── IntermediateCatchMessageEventCreateCommand.java │ │ │ │ ├── IntermediateCatchSignalEvent2CreateCommand.java │ │ │ │ ├── IntermediateCatchSignalEventCreateCommand.java │ │ │ │ ├── IntermediateCatchTimerEvent2CreateCommand.java │ │ │ │ ├── IntermediateCatchTimerEventCreateCommand.java │ │ │ │ ├── IntermediateErrorCatchEvent2CreateCommand.java │ │ │ │ ├── IntermediateErrorCatchEvent3CreateCommand.java │ │ │ │ ├── IntermediateErrorCatchEvent4CreateCommand.java │ │ │ │ ├── IntermediateErrorCatchEvent5CreateCommand.java │ │ │ │ ├── IntermediateErrorCatchEvent6CreateCommand.java │ │ │ │ ├── IntermediateErrorCatchEventCreateCommand.java │ │ │ │ ├── IntermediateThrowMessageEvent2CreateCommand.java │ │ │ │ ├── IntermediateThrowMessageEventCreateCommand.java │ │ │ │ ├── IntermediateThrowSignalEvent2CreateCommand.java │ │ │ │ ├── IntermediateThrowSignalEventCreateCommand.java │ │ │ │ ├── LaneCreateCommand.java │ │ │ │ ├── MessageFlowCreateCommand.java │ │ │ │ ├── MessageFlowReorientCommand.java │ │ │ │ ├── NonInterruptingBoundaryTimerEvent2CreateCommand.java │ │ │ │ ├── NonInterruptingBoundaryTimerEventCreateCommand.java │ │ │ │ ├── PoolCreateCommand.java │ │ │ │ ├── ReceiveTask2CreateCommand.java │ │ │ │ ├── ReceiveTaskCreateCommand.java │ │ │ │ ├── ScriptTask2CreateCommand.java │ │ │ │ ├── ScriptTaskCreateCommand.java │ │ │ │ ├── SendTask2CreateCommand.java │ │ │ │ ├── SendTaskCreateCommand.java │ │ │ │ ├── SequenceFlowCreateCommand.java │ │ │ │ ├── SequenceFlowReorientCommand.java │ │ │ │ ├── ServiceTask2CreateCommand.java │ │ │ │ ├── ServiceTaskCreateCommand.java │ │ │ │ ├── StartErrorEvent2CreateCommand.java │ │ │ │ ├── StartErrorEventCreateCommand.java │ │ │ │ ├── StartEvent2CreateCommand.java │ │ │ │ ├── StartEventCreateCommand.java │ │ │ │ ├── StartMessageEvent2CreateCommand.java │ │ │ │ ├── StartMessageEventCreateCommand.java │ │ │ │ ├── StartSignalEvent2CreateCommand.java │ │ │ │ ├── StartSignalEventCreateCommand.java │ │ │ │ ├── StartTimerEvent2CreateCommand.java │ │ │ │ ├── StartTimerEventCreateCommand.java │ │ │ │ ├── SubProcessEvent2CreateCommand.java │ │ │ │ ├── SubProcessEventCreateCommand.java │ │ │ │ ├── Task2CreateCommand.java │ │ │ │ ├── TaskCreateCommand.java │ │ │ │ ├── TextAnnotation2CreateCommand.java │ │ │ │ ├── TextAnnotationAttachmentCreateCommand.java │ │ │ │ ├── TextAnnotationAttachmentReorientCommand.java │ │ │ │ ├── TextAnnotationCreateCommand.java │ │ │ │ ├── ThrowLinkEvent2CreateCommand.java │ │ │ │ ├── ThrowLinkEventCreateCommand.java │ │ │ │ ├── XORGateway2CreateCommand.java │ │ │ │ └── XORGatewayCreateCommand.java │ │ │ ├── helpers │ │ │ │ ├── ANDGatewayEditHelper.java │ │ │ │ ├── ActivityEditHelper.java │ │ │ │ ├── BoundaryMessageEventEditHelper.java │ │ │ │ ├── BoundarySignalEventEditHelper.java │ │ │ │ ├── BoundaryTimerEventEditHelper.java │ │ │ │ ├── CallActivityEditHelper.java │ │ │ │ ├── CatchLinkEventEditHelper.java │ │ │ │ ├── EndErrorEventEditHelper.java │ │ │ │ ├── EndEventEditHelper.java │ │ │ │ ├── EndMessageEventEditHelper.java │ │ │ │ ├── EndSignalEventEditHelper.java │ │ │ │ ├── EndTerminatedEventEditHelper.java │ │ │ │ ├── EventEditHelper.java │ │ │ │ ├── InclusiveGatewayEditHelper.java │ │ │ │ ├── IntermediateCatchMessageEventEditHelper.java │ │ │ │ ├── IntermediateCatchSignalEventEditHelper.java │ │ │ │ ├── IntermediateCatchTimerEventEditHelper.java │ │ │ │ ├── IntermediateErrorCatchEventEditHelper.java │ │ │ │ ├── IntermediateThrowMessageEventEditHelper.java │ │ │ │ ├── IntermediateThrowSignalEventEditHelper.java │ │ │ │ ├── LaneEditHelper.java │ │ │ │ ├── MainProcessEditHelper.java │ │ │ │ ├── MessageFlowEditHelper.java │ │ │ │ ├── NonInterruptingBoundaryTimerEventEditHelper.java │ │ │ │ ├── PoolEditHelper.java │ │ │ │ ├── ProcessBaseEditHelper.java │ │ │ │ ├── ReceiveTaskEditHelper.java │ │ │ │ ├── ScriptTaskEditHelper.java │ │ │ │ ├── SendTaskEditHelper.java │ │ │ │ ├── SequenceFlowEditHelper.java │ │ │ │ ├── ServiceTaskEditHelper.java │ │ │ │ ├── StartErrorEventEditHelper.java │ │ │ │ ├── StartEventEditHelper.java │ │ │ │ ├── StartMessageEventEditHelper.java │ │ │ │ ├── StartSignalEventEditHelper.java │ │ │ │ ├── StartTimerEventEditHelper.java │ │ │ │ ├── SubProcessEventEditHelper.java │ │ │ │ ├── TaskEditHelper.java │ │ │ │ ├── TextAnnotationAttachmentEditHelper.java │ │ │ │ ├── TextAnnotationEditHelper.java │ │ │ │ ├── ThrowLinkEventEditHelper.java │ │ │ │ └── XORGatewayEditHelper.java │ │ │ ├── parts │ │ │ │ ├── ANDGateway2EditPart.java │ │ │ │ ├── ANDGatewayEditPart.java │ │ │ │ ├── ANDGatewayLabel2EditPart.java │ │ │ │ ├── ANDGatewayLabelEditPart.java │ │ │ │ ├── Activity2EditPart.java │ │ │ │ ├── ActivityEditPart.java │ │ │ │ ├── ActivityName2EditPart.java │ │ │ │ ├── ActivityNameEditPart.java │ │ │ │ ├── BoundaryMessageEvent2EditPart.java │ │ │ │ ├── BoundaryMessageEventEditPart.java │ │ │ │ ├── BoundaryMessageEventLabel2EditPart.java │ │ │ │ ├── BoundaryMessageEventLabelEditPart.java │ │ │ │ ├── BoundarySignalEvent2EditPart.java │ │ │ │ ├── BoundarySignalEventEditPart.java │ │ │ │ ├── BoundarySignalEventLabel2EditPart.java │ │ │ │ ├── BoundarySignalEventLabelEditPart.java │ │ │ │ ├── BoundaryTimerEvent2EditPart.java │ │ │ │ ├── BoundaryTimerEventEditPart.java │ │ │ │ ├── BoundaryTimerEventLabel2EditPart.java │ │ │ │ ├── BoundaryTimerEventLabelEditPart.java │ │ │ │ ├── CallActivity2EditPart.java │ │ │ │ ├── CallActivityEditPart.java │ │ │ │ ├── CallActivityName2EditPart.java │ │ │ │ ├── CallActivityNameEditPart.java │ │ │ │ ├── CatchLinkEvent2EditPart.java │ │ │ │ ├── CatchLinkEventEditPart.java │ │ │ │ ├── CatchLinkEventLabel2EditPart.java │ │ │ │ ├── CatchLinkEventLabelEditPart.java │ │ │ │ ├── EndErrorEvent2EditPart.java │ │ │ │ ├── EndErrorEventEditPart.java │ │ │ │ ├── EndErrorEventLabel2EditPart.java │ │ │ │ ├── EndErrorEventLabelEditPart.java │ │ │ │ ├── EndEvent2EditPart.java │ │ │ │ ├── EndEventEditPart.java │ │ │ │ ├── EndEventLabel2EditPart.java │ │ │ │ ├── EndEventLabelEditPart.java │ │ │ │ ├── EndMessageEvent2EditPart.java │ │ │ │ ├── EndMessageEventEditPart.java │ │ │ │ ├── EndMessageEventLabel2EditPart.java │ │ │ │ ├── EndMessageEventLabelEditPart.java │ │ │ │ ├── EndSignalEvent2EditPart.java │ │ │ │ ├── EndSignalEventEditPart.java │ │ │ │ ├── EndSignalEventLabel2EditPart.java │ │ │ │ ├── EndSignalEventLabelEditPart.java │ │ │ │ ├── EndTerminatedEvent2EditPart.java │ │ │ │ ├── EndTerminatedEventEditPart.java │ │ │ │ ├── EndTerminatedEventLabel2EditPart.java │ │ │ │ ├── EndTerminatedEventLabelEditPart.java │ │ │ │ ├── Event2EditPart.java │ │ │ │ ├── EventEditPart.java │ │ │ │ ├── InclusiveGateway2EditPart.java │ │ │ │ ├── InclusiveGatewayEditPart.java │ │ │ │ ├── InclusiveGatewayLabel2EditPart.java │ │ │ │ ├── InclusiveGatewayLabelEditPart.java │ │ │ │ ├── IntermediateCatchMessageEvent2EditPart.java │ │ │ │ ├── IntermediateCatchMessageEventEditPart.java │ │ │ │ ├── IntermediateCatchMessageEventLabel2EditPart.java │ │ │ │ ├── IntermediateCatchMessageEventLabelEditPart.java │ │ │ │ ├── IntermediateCatchSignalEvent2EditPart.java │ │ │ │ ├── IntermediateCatchSignalEventEditPart.java │ │ │ │ ├── IntermediateCatchSignalEventLabel2EditPart.java │ │ │ │ ├── IntermediateCatchSignalEventLabelEditPart.java │ │ │ │ ├── IntermediateCatchTimerEvent2EditPart.java │ │ │ │ ├── IntermediateCatchTimerEventEditPart.java │ │ │ │ ├── IntermediateCatchTimerEventLabel2EditPart.java │ │ │ │ ├── IntermediateCatchTimerEventLabelEditPart.java │ │ │ │ ├── IntermediateErrorCatchEvent2EditPart.java │ │ │ │ ├── IntermediateErrorCatchEvent3EditPart.java │ │ │ │ ├── IntermediateErrorCatchEvent4EditPart.java │ │ │ │ ├── IntermediateErrorCatchEvent5EditPart.java │ │ │ │ ├── IntermediateErrorCatchEvent6EditPart.java │ │ │ │ ├── IntermediateErrorCatchEventEditPart.java │ │ │ │ ├── IntermediateErrorCatchEventLabel2EditPart.java │ │ │ │ ├── IntermediateErrorCatchEventLabel3EditPart.java │ │ │ │ ├── IntermediateErrorCatchEventLabel4EditPart.java │ │ │ │ ├── IntermediateErrorCatchEventLabel5EditPart.java │ │ │ │ ├── IntermediateErrorCatchEventLabel6EditPart.java │ │ │ │ ├── IntermediateErrorCatchEventLabelEditPart.java │ │ │ │ ├── IntermediateThrowMessageEvent2EditPart.java │ │ │ │ ├── IntermediateThrowMessageEventEditPart.java │ │ │ │ ├── IntermediateThrowMessageEventLabel2EditPart.java │ │ │ │ ├── IntermediateThrowMessageEventLabelEditPart.java │ │ │ │ ├── IntermediateThrowSignalEvent2EditPart.java │ │ │ │ ├── IntermediateThrowSignalEventEditPart.java │ │ │ │ ├── IntermediateThrowSignalEventLabel2EditPart.java │ │ │ │ ├── IntermediateThrowSignalEventLabelEditPart.java │ │ │ │ ├── LaneEditPart.java │ │ │ │ ├── LaneLaneCompartmentEditPart.java │ │ │ │ ├── LaneNameEditPart.java │ │ │ │ ├── MainProcessEditPart.java │ │ │ │ ├── MessageFlowEditPart.java │ │ │ │ ├── MessageFlowLabelEditPart.java │ │ │ │ ├── NonInterruptingBoundaryTimerEvent2EditPart.java │ │ │ │ ├── NonInterruptingBoundaryTimerEventEditPart.java │ │ │ │ ├── NonInterruptingBoundaryTimerEventName2EditPart.java │ │ │ │ ├── NonInterruptingBoundaryTimerEventNameEditPart.java │ │ │ │ ├── PoolEditPart.java │ │ │ │ ├── PoolNameEditPart.java │ │ │ │ ├── PoolPoolCompartmentEditPart.java │ │ │ │ ├── ProcessEditPartFactory.java │ │ │ │ ├── ReceiveTask2EditPart.java │ │ │ │ ├── ReceiveTaskEditPart.java │ │ │ │ ├── ReceiveTaskLabel2EditPart.java │ │ │ │ ├── ReceiveTaskLabelEditPart.java │ │ │ │ ├── ScriptTask2EditPart.java │ │ │ │ ├── ScriptTaskEditPart.java │ │ │ │ ├── ScriptTaskLabel2EditPart.java │ │ │ │ ├── ScriptTaskLabelEditPart.java │ │ │ │ ├── SendTask2EditPart.java │ │ │ │ ├── SendTaskEditPart.java │ │ │ │ ├── SendTaskLabel2EditPart.java │ │ │ │ ├── SendTaskLabelEditPart.java │ │ │ │ ├── SequenceFlowEditPart.java │ │ │ │ ├── SequenceFlowNameEditPart.java │ │ │ │ ├── ServiceTask2EditPart.java │ │ │ │ ├── ServiceTaskEditPart.java │ │ │ │ ├── ServiceTaskLabel2EditPart.java │ │ │ │ ├── ServiceTaskLabelEditPart.java │ │ │ │ ├── StartErrorEvent2EditPart.java │ │ │ │ ├── StartErrorEventEditPart.java │ │ │ │ ├── StartErrorEventLabel2EditPart.java │ │ │ │ ├── StartErrorEventLabelEditPart.java │ │ │ │ ├── StartEvent2EditPart.java │ │ │ │ ├── StartEventEditPart.java │ │ │ │ ├── StartEventLabel2EditPart.java │ │ │ │ ├── StartEventLabelEditPart.java │ │ │ │ ├── StartMessageEvent2EditPart.java │ │ │ │ ├── StartMessageEventEditPart.java │ │ │ │ ├── StartMessageEventLabel2EditPart.java │ │ │ │ ├── StartMessageEventLabelEditPart.java │ │ │ │ ├── StartSignalEvent2EditPart.java │ │ │ │ ├── StartSignalEventEditPart.java │ │ │ │ ├── StartSignalEventLabel2EditPart.java │ │ │ │ ├── StartSignalEventLabelEditPart.java │ │ │ │ ├── StartTimerEvent2EditPart.java │ │ │ │ ├── StartTimerEventEditPart.java │ │ │ │ ├── StartTimerEventLabel2EditPart.java │ │ │ │ ├── StartTimerEventLabelEditPart.java │ │ │ │ ├── SubProcessEvent2EditPart.java │ │ │ │ ├── SubProcessEventEditPart.java │ │ │ │ ├── SubProcessEventLabel2EditPart.java │ │ │ │ ├── SubProcessEventLabelEditPart.java │ │ │ │ ├── SubProcessEventSubProcessCompartment2EditPart.java │ │ │ │ ├── SubProcessEventSubProcessCompartmentEditPart.java │ │ │ │ ├── Task2EditPart.java │ │ │ │ ├── TaskEditPart.java │ │ │ │ ├── TaskName2EditPart.java │ │ │ │ ├── TaskNameEditPart.java │ │ │ │ ├── TextAnnotation2EditPart.java │ │ │ │ ├── TextAnnotationAttachmentEditPart.java │ │ │ │ ├── TextAnnotationEditPart.java │ │ │ │ ├── TextAnnotationText2EditPart.java │ │ │ │ ├── TextAnnotationTextEditPart.java │ │ │ │ ├── ThrowLinkEvent2EditPart.java │ │ │ │ ├── ThrowLinkEventEditPart.java │ │ │ │ ├── ThrowLinkEventLabel2EditPart.java │ │ │ │ ├── ThrowLinkEventLabelEditPart.java │ │ │ │ ├── XORGateway2EditPart.java │ │ │ │ ├── XORGatewayEditPart.java │ │ │ │ ├── XORGatewayLabel2EditPart.java │ │ │ │ └── XORGatewayLabelEditPart.java │ │ │ └── policies │ │ │ │ ├── ANDGateway2ItemSemanticEditPolicy.java │ │ │ │ ├── ANDGatewayItemSemanticEditPolicy.java │ │ │ │ ├── Activity2CanonicalEditPolicy.java │ │ │ │ ├── Activity2ItemSemanticEditPolicy.java │ │ │ │ ├── ActivityCanonicalEditPolicy.java │ │ │ │ ├── ActivityItemSemanticEditPolicy.java │ │ │ │ ├── BoundaryMessageEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── BoundaryMessageEventItemSemanticEditPolicy.java │ │ │ │ ├── BoundarySignalEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── BoundarySignalEventItemSemanticEditPolicy.java │ │ │ │ ├── BoundaryTimerEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── BoundaryTimerEventItemSemanticEditPolicy.java │ │ │ │ ├── CallActivity2CanonicalEditPolicy.java │ │ │ │ ├── CallActivity2ItemSemanticEditPolicy.java │ │ │ │ ├── CallActivityCanonicalEditPolicy.java │ │ │ │ ├── CallActivityItemSemanticEditPolicy.java │ │ │ │ ├── CatchLinkEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── CatchLinkEventItemSemanticEditPolicy.java │ │ │ │ ├── EndErrorEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── EndErrorEventItemSemanticEditPolicy.java │ │ │ │ ├── EndEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── EndEventItemSemanticEditPolicy.java │ │ │ │ ├── EndMessageEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── EndMessageEventItemSemanticEditPolicy.java │ │ │ │ ├── EndSignalEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── EndSignalEventItemSemanticEditPolicy.java │ │ │ │ ├── EndTerminatedEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── EndTerminatedEventItemSemanticEditPolicy.java │ │ │ │ ├── Event2ItemSemanticEditPolicy.java │ │ │ │ ├── EventItemSemanticEditPolicy.java │ │ │ │ ├── InclusiveGateway2ItemSemanticEditPolicy.java │ │ │ │ ├── InclusiveGatewayItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateCatchMessageEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateCatchMessageEventItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateCatchSignalEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateCatchSignalEventItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateCatchTimerEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateCatchTimerEventItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateErrorCatchEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateErrorCatchEvent3ItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateErrorCatchEvent4ItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateErrorCatchEvent5ItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateErrorCatchEvent6ItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateErrorCatchEventItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateThrowMessageEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateThrowMessageEventItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateThrowSignalEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── IntermediateThrowSignalEventItemSemanticEditPolicy.java │ │ │ │ ├── LaneItemSemanticEditPolicy.java │ │ │ │ ├── LaneLaneCompartmentCanonicalEditPolicy.java │ │ │ │ ├── LaneLaneCompartmentItemSemanticEditPolicy.java │ │ │ │ ├── MainProcessCanonicalEditPolicy.java │ │ │ │ ├── MainProcessItemSemanticEditPolicy.java │ │ │ │ ├── MessageFlowItemSemanticEditPolicy.java │ │ │ │ ├── NonInterruptingBoundaryTimerEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── NonInterruptingBoundaryTimerEventItemSemanticEditPolicy.java │ │ │ │ ├── PoolItemSemanticEditPolicy.java │ │ │ │ ├── PoolPoolCompartmentCanonicalEditPolicy.java │ │ │ │ ├── PoolPoolCompartmentItemSemanticEditPolicy.java │ │ │ │ ├── ProcessBaseItemSemanticEditPolicy.java │ │ │ │ ├── ProcessTextNonResizableEditPolicy.java │ │ │ │ ├── ProcessTextSelectionEditPolicy.java │ │ │ │ ├── ReceiveTask2CanonicalEditPolicy.java │ │ │ │ ├── ReceiveTask2ItemSemanticEditPolicy.java │ │ │ │ ├── ReceiveTaskCanonicalEditPolicy.java │ │ │ │ ├── ReceiveTaskItemSemanticEditPolicy.java │ │ │ │ ├── ScriptTask2CanonicalEditPolicy.java │ │ │ │ ├── ScriptTask2ItemSemanticEditPolicy.java │ │ │ │ ├── ScriptTaskCanonicalEditPolicy.java │ │ │ │ ├── ScriptTaskItemSemanticEditPolicy.java │ │ │ │ ├── SendTask2ItemSemanticEditPolicy.java │ │ │ │ ├── SendTaskItemSemanticEditPolicy.java │ │ │ │ ├── SequenceFlowItemSemanticEditPolicy.java │ │ │ │ ├── ServiceTask2CanonicalEditPolicy.java │ │ │ │ ├── ServiceTask2ItemSemanticEditPolicy.java │ │ │ │ ├── ServiceTaskCanonicalEditPolicy.java │ │ │ │ ├── ServiceTaskItemSemanticEditPolicy.java │ │ │ │ ├── StartErrorEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── StartErrorEventItemSemanticEditPolicy.java │ │ │ │ ├── StartEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── StartEventItemSemanticEditPolicy.java │ │ │ │ ├── StartMessageEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── StartMessageEventItemSemanticEditPolicy.java │ │ │ │ ├── StartSignalEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── StartSignalEventItemSemanticEditPolicy.java │ │ │ │ ├── StartTimerEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── StartTimerEventItemSemanticEditPolicy.java │ │ │ │ ├── SubProcessEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── SubProcessEventItemSemanticEditPolicy.java │ │ │ │ ├── SubProcessEventSubProcessCompartment2CanonicalEditPolicy.java │ │ │ │ ├── SubProcessEventSubProcessCompartment2ItemSemanticEditPolicy.java │ │ │ │ ├── SubProcessEventSubProcessCompartmentCanonicalEditPolicy.java │ │ │ │ ├── SubProcessEventSubProcessCompartmentItemSemanticEditPolicy.java │ │ │ │ ├── Task2CanonicalEditPolicy.java │ │ │ │ ├── Task2ItemSemanticEditPolicy.java │ │ │ │ ├── TaskCanonicalEditPolicy.java │ │ │ │ ├── TaskItemSemanticEditPolicy.java │ │ │ │ ├── TextAnnotation2ItemSemanticEditPolicy.java │ │ │ │ ├── TextAnnotationAttachmentItemSemanticEditPolicy.java │ │ │ │ ├── TextAnnotationItemSemanticEditPolicy.java │ │ │ │ ├── ThrowLinkEvent2ItemSemanticEditPolicy.java │ │ │ │ ├── ThrowLinkEventItemSemanticEditPolicy.java │ │ │ │ ├── XORGateway2ItemSemanticEditPolicy.java │ │ │ │ └── XORGatewayItemSemanticEditPolicy.java │ │ │ ├── expressions │ │ │ ├── ProcessAbstractExpression.java │ │ │ └── ProcessOCLFactory.java │ │ │ ├── navigator │ │ │ ├── ProcessAbstractNavigatorItem.java │ │ │ ├── ProcessNavigatorActionProvider.java │ │ │ ├── ProcessNavigatorContentProvider.java │ │ │ ├── ProcessNavigatorGroup.java │ │ │ ├── ProcessNavigatorItem.java │ │ │ ├── ProcessNavigatorLabelProvider.java │ │ │ ├── ProcessNavigatorLinkHelper.java │ │ │ └── ProcessNavigatorSorter.java │ │ │ ├── parsers │ │ │ ├── AbstractParser.java │ │ │ └── MessageFormatParser.java │ │ │ ├── part │ │ │ ├── DeleteElementAction.java │ │ │ ├── DiagramEditorContextMenuProvider.java │ │ │ ├── LoadResourceAction.java │ │ │ ├── Messages.java │ │ │ ├── ModelElementSelectionPage.java │ │ │ ├── ProcessCreationWizard.java │ │ │ ├── ProcessCreationWizardPage.java │ │ │ ├── ProcessDiagramActionBarContributor.java │ │ │ ├── ProcessDiagramEditor.java │ │ │ ├── ProcessDiagramEditorPlugin.java │ │ │ ├── ProcessDiagramEditorUtil.java │ │ │ ├── ProcessDiagramUpdateCommand.java │ │ │ ├── ProcessDiagramUpdater.java │ │ │ ├── ProcessDocumentProvider.java │ │ │ ├── ProcessInitDiagramFileAction.java │ │ │ ├── ProcessLinkDescriptor.java │ │ │ ├── ProcessMatchingStrategy.java │ │ │ ├── ProcessNewDiagramFileWizard.java │ │ │ ├── ProcessNodeDescriptor.java │ │ │ ├── ProcessPaletteFactory.java │ │ │ ├── ProcessVisualIDRegistry.java │ │ │ └── ValidateAction.java │ │ │ ├── preferences │ │ │ ├── DiagramAppearancePreferencePage.java │ │ │ ├── DiagramConnectionsPreferencePage.java │ │ │ ├── DiagramGeneralPreferencePage.java │ │ │ ├── DiagramPreferenceInitializer.java │ │ │ ├── DiagramPrintingPreferencePage.java │ │ │ └── DiagramRulersAndGridPreferencePage.java │ │ │ ├── providers │ │ │ ├── ElementInitializers.java │ │ │ ├── ProcessEditPartProvider.java │ │ │ ├── ProcessElementTypes.java │ │ │ ├── ProcessIconProvider.java │ │ │ ├── ProcessMarkerNavigationProvider.java │ │ │ ├── ProcessModelingAssistantProvider.java │ │ │ ├── ProcessParserProvider.java │ │ │ ├── ProcessValidationDecoratorProvider.java │ │ │ ├── ProcessValidationProvider.java │ │ │ ├── ProcessViewProvider.java │ │ │ └── assistants │ │ │ │ ├── ProcessModelingAssistantProviderOfANDGateway2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfANDGatewayEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfActivity2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfActivityEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfBoundaryMessageEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfBoundaryMessageEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfBoundarySignalEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfBoundarySignalEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfBoundaryTimerEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfBoundaryTimerEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfCallActivity2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfCallActivityEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfCatchLinkEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfCatchLinkEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEndErrorEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEndErrorEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEndEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEndEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEndMessageEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEndMessageEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEndSignalEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEndSignalEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEndTerminatedEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEndTerminatedEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfInclusiveGateway2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfInclusiveGatewayEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateCatchMessageEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateCatchMessageEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateCatchSignalEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateCatchSignalEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateCatchTimerEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateCatchTimerEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateErrorCatchEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateErrorCatchEvent3EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateErrorCatchEvent4EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateErrorCatchEvent5EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateErrorCatchEvent6EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateErrorCatchEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateThrowMessageEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateThrowMessageEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateThrowSignalEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfIntermediateThrowSignalEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfLaneEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfMainProcessEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfNonInterruptingBoundaryTimerEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfNonInterruptingBoundaryTimerEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfPoolEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfReceiveTask2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfReceiveTaskEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfScriptTask2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfScriptTaskEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfSendTask2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfSendTaskEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfServiceTask2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfServiceTaskEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfStartErrorEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfStartErrorEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfStartEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfStartEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfStartMessageEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfStartMessageEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfStartSignalEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfStartSignalEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfStartTimerEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfStartTimerEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfSubProcessEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfSubProcessEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfTask2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfTaskEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfTextAnnotation2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfTextAnnotationEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfThrowLinkEvent2EditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfThrowLinkEventEditPart.java │ │ │ │ ├── ProcessModelingAssistantProviderOfXORGateway2EditPart.java │ │ │ │ └── ProcessModelingAssistantProviderOfXORGatewayEditPart.java │ │ │ └── sheet │ │ │ ├── ProcessPropertySection.java │ │ │ └── ProcessSheetLabelProvider.java │ ├── org.bonitasoft.studio.document.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── document │ │ │ ├── configuration │ │ │ └── AdditionalResourcesConfigurationSyncronizerTest.java │ │ │ └── ui │ │ │ ├── ContractInputLabelProviderTest.java │ │ │ ├── DocumentProposalListenerTest.java │ │ │ ├── control │ │ │ ├── DocumentDescriptionCompositeTest.java │ │ │ ├── DocumentNameCompositeTest.java │ │ │ ├── MultipleFileContractInputSelectionCompositeTest.java │ │ │ └── SingleFileContractInputSelectionCompositeTest.java │ │ │ ├── validator │ │ │ ├── AdditionalResourceBarPathValidatorTest.java │ │ │ ├── AdditionalResourceProjectPathValidatorTest.java │ │ │ ├── DocumentInitialContentValidatorTest.java │ │ │ ├── MultipleContractInputValidatorTest.java │ │ │ └── SingleContractInputValidatorTest.java │ │ │ └── wizardPage │ │ │ └── DocumentWizardPageTest.java │ ├── org.bonitasoft.studio.document │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ └── Document.gif │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── document │ │ │ ├── DocumentPlugin.java │ │ │ ├── configuration │ │ │ └── AdditionalResourcesConfigurationSyncronizer.java │ │ │ ├── core │ │ │ ├── expression │ │ │ │ ├── DocumentObjectExpressionProvider.java │ │ │ │ └── DocumentReferenceExpressionProvider.java │ │ │ └── repository │ │ │ │ ├── DocumentFileStore.java │ │ │ │ ├── DocumentFilseStoreProvider.java │ │ │ │ └── DocumentRepositoryStore.java │ │ │ ├── handler │ │ │ ├── ImportResourceHandler.java │ │ │ └── ManageResourcesHandler.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── propertyTester │ │ │ └── BonitaResourcePropertyTester.java │ │ │ ├── refactoring │ │ │ ├── DocumentRefactorPair.java │ │ │ └── RefactorDocumentOperation.java │ │ │ └── ui │ │ │ ├── AdditionalResourcesPropertySection.java │ │ │ ├── AdditionalResourcesSectionFilter.java │ │ │ ├── ContractInputLabelProvider.java │ │ │ ├── DocumentPropertySection.java │ │ │ ├── DocumentProposalListener.java │ │ │ ├── DocumentSectionFilter.java │ │ │ ├── control │ │ │ ├── DocumentDescriptionComposite.java │ │ │ ├── DocumentNameComposite.java │ │ │ ├── FileContractInputSelectionComposite.java │ │ │ ├── MultipleFileContractInputSelectionComposite.java │ │ │ └── SingleFileContractInputSelectionComposite.java │ │ │ ├── dialog │ │ │ ├── AdditionalResourceWizardDialog.java │ │ │ ├── DocumentWizardDialog.java │ │ │ ├── FileStoreSelectDialog.java │ │ │ ├── ManageResourceDialog.java │ │ │ └── SelectResourceDialog.java │ │ │ ├── editingSupport │ │ │ └── AdditionalResourcesFileEditingSupport.java │ │ │ ├── internal │ │ │ └── DisplayableAdapterFactory.java │ │ │ ├── styler │ │ │ └── AdditionalResourceStyler.java │ │ │ ├── validator │ │ │ ├── AdditionalResourceBarPathValidator.java │ │ │ ├── AdditionalResourceProjectPathValidator.java │ │ │ ├── ContractInputValidator.java │ │ │ ├── DocumentInitialContentValidator.java │ │ │ ├── MultipleContractInputValidator.java │ │ │ └── SingleContractInputValidator.java │ │ │ ├── wizard │ │ │ ├── AdditionalResourceWizard.java │ │ │ └── DocumentWizard.java │ │ │ └── wizardPage │ │ │ ├── AdditionalResourceWizardPage.java │ │ │ ├── AdditionalResourcesConfigurationWizardPage.java │ │ │ └── DocumentWizardPage.java │ ├── org.bonitasoft.studio.engine.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── engine │ │ │ ├── BOSEngineManagerTest.java │ │ │ ├── TomcatVmArgsBuilderTest.java │ │ │ ├── operation │ │ │ ├── CaseDetailURLBuilderTest.java │ │ │ ├── DirectoryAppURLBuilderTest.java │ │ │ ├── ProcessInstantiationFormURLBuilderTest.java │ │ │ └── UndeployProcessOperationTest.java │ │ │ └── server │ │ │ └── PortConfiguratorTest.java │ ├── org.bonitasoft.studio.engine │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── clean_run_history.png │ │ │ ├── engine_conf.gif │ │ │ ├── export.png │ │ │ ├── export_disabled.png │ │ │ ├── form.png │ │ │ ├── form_disabled.png │ │ │ ├── restart_server.png │ │ │ ├── restart_server@2x.png │ │ │ ├── run.png │ │ │ ├── run_disabled.png │ │ │ ├── user_xp.png │ │ │ └── user_xp_disabled.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── DefinitionBuilder.exsd │ │ │ ├── bonitaEngineManager.exsd │ │ │ ├── bonitaWebServerManager.exsd │ │ │ ├── org.bonitasoft.studio.engine.kpityperesolver.exsd │ │ │ ├── org.bonitasoft.studio.engine.processDefinitionExporter.exsd │ │ │ ├── postEngineAction.exsd │ │ │ └── preEngineAction.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── engine │ │ │ ├── BOSEngineManager.java │ │ │ ├── BOSWebServerManager.java │ │ │ ├── ConnectorImplementationRegistryHelper.java │ │ │ ├── EngineNotificationSemaphore.java │ │ │ ├── EnginePlugin.java │ │ │ ├── TomcatVmArgsBuilder.java │ │ │ ├── command │ │ │ ├── AbstractOpenConsoleCommand.java │ │ │ ├── BuildDiagramHandler.java │ │ │ ├── DeployDiagramHandler.java │ │ │ ├── DeployPageHandler.java │ │ │ ├── ExportAsBarFileHandler.java │ │ │ ├── ExportAsBosArchiveHandler.java │ │ │ ├── RestartServerCommand.java │ │ │ ├── RunProcessCommand.java │ │ │ └── ShowMavenDependencyTreeHandler.java │ │ │ ├── contribution │ │ │ ├── BonitaProjectListenerProvider.java │ │ │ └── BuildProcessDefinitionException.java │ │ │ ├── coolbar │ │ │ ├── OpenPortalCoolbarItem.java │ │ │ └── RunCoolbarItem.java │ │ │ ├── export │ │ │ ├── BarExporter.java │ │ │ └── MavenProjectBuilder.java │ │ │ ├── http │ │ │ ├── AddCustomPageRequest.java │ │ │ ├── CustomPagesRequest.java │ │ │ ├── HttpClientFactory.java │ │ │ ├── HttpRequest.java │ │ │ ├── LocalizationRequest.java │ │ │ ├── LoginRequest.java │ │ │ ├── UpdateCustomPageRequest.java │ │ │ └── UploadCustomPageRequest.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── operation │ │ │ ├── AbstractBonitaURLBuilder.java │ │ │ ├── AbstractProcessRelatedURLBuilder.java │ │ │ ├── ApplicationURLBuilder.java │ │ │ ├── BusinessArchiveValidatorProvider.java │ │ │ ├── CaseDetailURLBuilder.java │ │ │ ├── DeployCustomPageOperation.java │ │ │ ├── DeployPageRunnable.java │ │ │ ├── DeployProcessOperation.java │ │ │ ├── DirectoryAppURLBuilder.java │ │ │ ├── ExportBarOperation.java │ │ │ ├── GetApiSessionOperation.java │ │ │ ├── LoginUrlBuilder.java │ │ │ ├── ProcessInstantiationFormURLBuilder.java │ │ │ ├── ProcessSelector.java │ │ │ ├── ProcessValidationOperation.java │ │ │ ├── RunOperationExecutionContext.java │ │ │ ├── RunProcessOperation.java │ │ │ ├── TaskListURLBuilder.java │ │ │ └── UndeployProcessOperation.java │ │ │ ├── preferences │ │ │ ├── EnginePreferenceConstants.java │ │ │ ├── EnginePreferencesInitializer.java │ │ │ └── ServerPreferencePage.java │ │ │ ├── server │ │ │ ├── ClientBonitaHomeBuildler.java │ │ │ ├── PortConfigurator.java │ │ │ └── StartEngineJob.java │ │ │ └── ui │ │ │ ├── ProcessListContribution.java │ │ │ ├── contributionItem │ │ │ ├── BuildProcessContributionItem.java │ │ │ ├── DisplayMavenDependencyTreeAllProcessesMenuContribution.java │ │ │ ├── DisplayMavenDependencyTreeProcessMenuContribution.java │ │ │ └── DisplayMavenDependencyTreeProjectMenuContribution.java │ │ │ ├── dialog │ │ │ └── ProcessEnablementProblemsDialog.java │ │ │ ├── editor │ │ │ ├── EditorCloseWaiter.java │ │ │ └── MavenDependencyTreeEditor.java │ │ │ └── wizard │ │ │ ├── AbstractProcessContentProvider.java │ │ │ ├── EnvironmentContentProvider.java │ │ │ ├── ExportBarWizard.java │ │ │ └── ExportBarWizardPage.java │ ├── org.bonitasoft.studio.exporter │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── bpmn.png │ │ │ ├── export.png │ │ │ ├── export@2x.png │ │ │ └── save-as-image.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── model │ │ │ ├── xhtml.ecore │ │ │ ├── xhtml.genmodel │ │ │ └── xhtml1-strict.xsd │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── barApplicationResourcesProvider.exsd │ │ │ ├── cssGenerator.exsd │ │ │ ├── exporterExtension.exsd │ │ │ ├── exporterFactory.exsd │ │ │ └── org.bonitasoft.studio.exporter.formsExporter.exsd │ │ ├── src │ │ │ └── org │ │ │ │ └── bonitasoft │ │ │ │ └── studio │ │ │ │ └── exporter │ │ │ │ ├── Activator.java │ │ │ │ ├── Messages.java │ │ │ │ ├── handler │ │ │ │ ├── ExportAsBPMNHandler.java │ │ │ │ └── ExportBosArchiveHandler.java │ │ │ │ ├── menu │ │ │ │ └── ExportContributionMenu.java │ │ │ │ └── runtime │ │ │ │ └── RuntimeExportMode.java │ │ └── transfo │ │ │ └── genConnectorsXSD.xsl │ ├── org.bonitasoft.studio.expression.editor.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── expression │ │ │ └── editor │ │ │ ├── filter │ │ │ └── ExpressionReturnTypeFilterTest.java │ │ │ ├── operation │ │ │ ├── DefaultReturnTypeResolverTest.java │ │ │ ├── OperationReturnTypesValidatorTest.java │ │ │ ├── OperationViewerTest.java │ │ │ ├── OperatorViewerFilterTest.java │ │ │ └── TransientDataValidatorTest.java │ │ │ ├── provider │ │ │ └── ExpressionEditionAdapterTest.java │ │ │ └── viewer │ │ │ ├── ExpressionViewerTest.java │ │ │ └── ReadOnlyExpressionViewerTest.java │ ├── org.bonitasoft.studio.expression.editor │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── Data.gif │ │ │ ├── eraser.png │ │ │ ├── eraser@2x.png │ │ │ ├── eraser_dark.png │ │ │ ├── eraser_dark@2x.png │ │ │ ├── eraser_muted.png │ │ │ ├── eraser_muted@2x.png │ │ │ ├── eraser_muted_dark.png │ │ │ ├── eraser_muted_dark@2x.png │ │ │ ├── function.png │ │ │ ├── function@2x.png │ │ │ ├── function_dark.png │ │ │ └── function_dark@2x.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── org.bonitasoft.studio.expression.editor.caretDestroyer.exsd │ │ │ ├── org.bonitasoft.studio.expression.editor.expressionViewerToolbar.exsd │ │ │ ├── org.bonitasoft.studio.expression.expressionFilter.exsd │ │ │ ├── org.bonitasoft.studio.expression.expressionProvider.exsd │ │ │ ├── org.bonitasoft.studio.expression.operatorEditor.exsd │ │ │ └── org.bonitasoft.studio.expression.proposalListener.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── expression │ │ │ └── editor │ │ │ ├── ExpressionEditorPlugin.java │ │ │ ├── ExpressionProviderService.java │ │ │ ├── autocompletion │ │ │ ├── AutoCompletionField.java │ │ │ ├── BonitaContentProposalAdapter.java │ │ │ ├── ExpressionProposal.java │ │ │ ├── ExpressionProposalProvider.java │ │ │ ├── IBonitaContentProposalListener2.java │ │ │ └── IExpressionProposalLabelProvider.java │ │ │ ├── constant │ │ │ ├── ConstantExpressionProvider.java │ │ │ └── ExpressionReturnTypeContentProvider.java │ │ │ ├── filter │ │ │ ├── AvailableExpressionTypeFilter.java │ │ │ ├── ExpressionReturnTypeFilter.java │ │ │ ├── HiddenExpressionTypeFilter.java │ │ │ └── HideExpressionWithName.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── message │ │ │ ├── MessageIdExpressionEditor.java │ │ │ └── MessageIdExpressionProvider.java │ │ │ ├── operation │ │ │ ├── DefaultReturnTypeResolver.java │ │ │ ├── IOperationViewerListener.java │ │ │ ├── OperationGroupViewer.java │ │ │ ├── OperationReturnTypesValidator.java │ │ │ ├── OperationViewer.java │ │ │ ├── OperationsComposite.java │ │ │ ├── OperatorLabelProvider.java │ │ │ ├── OperatorSelectionDialog.java │ │ │ ├── OperatorTypeToStringLinkConverter.java │ │ │ ├── OperatorViewerFilter.java │ │ │ ├── PropertyOperationsComposite.java │ │ │ ├── StorageViewerChangedListener.java │ │ │ ├── TransientDataValidator.java │ │ │ └── WizardPageOperationsComposite.java │ │ │ ├── pattern │ │ │ ├── FakeEditorPart.java │ │ │ ├── GroovyExpressionPartitioner.java │ │ │ ├── IDocumentViewer.java │ │ │ ├── ITextControl.java │ │ │ ├── PatternExpressionModelBuilder.java │ │ │ ├── PatternExpressionViewer.java │ │ │ ├── PatternLineStyleListener.java │ │ │ ├── TextViewerDocumentViewerDelegate.java │ │ │ ├── TextViewerTextControlDelegate.java │ │ │ ├── contentAssist │ │ │ │ ├── ExpressionContentAssistProcessor.java │ │ │ │ ├── GenericProposalFilter.java │ │ │ │ ├── PatternExpressionCompletionProcessor.java │ │ │ │ └── PatternExpressionCompletionProposalComputer.java │ │ │ └── richtext │ │ │ │ ├── MultiEditorDocumentViewerDelegate.java │ │ │ │ ├── RichPatternExpressionViewer.java │ │ │ │ ├── RichTextControlDelegate.java │ │ │ │ ├── RichTextEditorDocumentViewerDelegate.java │ │ │ │ └── VariableSelectionDialog.java │ │ │ ├── provider │ │ │ ├── DataExpressionNatureProvider.java │ │ │ ├── ExpressionColumnLabelProvider.java │ │ │ ├── ExpressionComparator.java │ │ │ ├── ExpressionContentProvider.java │ │ │ ├── ExpressionEditionAdapter.java │ │ │ ├── ExpressionLabelProvider.java │ │ │ ├── ExpressionNatureProvider.java │ │ │ ├── ExpressionTypeContentProvider.java │ │ │ ├── ExpressionTypeLabelProvider.java │ │ │ ├── ICustomExpressionNatureProvider.java │ │ │ ├── IDataProposalListener.java │ │ │ ├── IExpressionEditor.java │ │ │ ├── IExpressionNatureProvider.java │ │ │ ├── IExpressionProvider.java │ │ │ ├── IExpressionToolbarContribution.java │ │ │ ├── IExpressionValidator.java │ │ │ ├── IOperatorEditor.java │ │ │ ├── IProposalAdapter.java │ │ │ ├── IProposalListener.java │ │ │ └── SelectionAwareExpressionEditor.java │ │ │ ├── viewer │ │ │ ├── CellExpressionViewer.java │ │ │ ├── CheckBoxExpressionViewer.java │ │ │ ├── DefaultExpressionNameResolver.java │ │ │ ├── DefaultExpressionValidator.java │ │ │ ├── EditExpressionDialog.java │ │ │ ├── ExpressionCollectionContentProvider.java │ │ │ ├── ExpressionCollectionEditingSupport.java │ │ │ ├── ExpressionCollectionViewer.java │ │ │ ├── ExpressionNameResolver.java │ │ │ ├── ExpressionSynchronizer.java │ │ │ ├── ExpressionViewer.java │ │ │ ├── ExpressionViewerCellEditor.java │ │ │ ├── ExpressionViewerValidator.java │ │ │ ├── GroovyOnlyEditExpressionDialog.java │ │ │ ├── GroovyOnlyExpressionViewer.java │ │ │ ├── IAddLineListener.java │ │ │ ├── IExpressionModeListener.java │ │ │ ├── IExpressionValidationListener.java │ │ │ ├── LineTableCreator.java │ │ │ ├── ObservableExpressionContentProvider.java │ │ │ ├── ReadOnlyExpressionViewer.java │ │ │ └── SelectDependencyDialog.java │ │ │ └── widget │ │ │ ├── ContentAssistText.java │ │ │ └── LabelContentAdapter.java │ ├── org.bonitasoft.studio.groovy.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── groovy │ │ │ └── GroovyUtilTest.java │ ├── org.bonitasoft.studio.groovy.ui.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── groovy │ │ │ └── ui │ │ │ ├── JDTMethodHelperTest.java │ │ │ ├── dialog │ │ │ └── TestGroovyScriptDialogTest.java │ │ │ ├── filter │ │ │ └── ScriptProposalViewerFilterTest.java │ │ │ └── job │ │ │ ├── UnknownElementsIndexerTest.java │ │ │ └── VariablesVisitorTest.java │ ├── org.bonitasoft.studio.groovy.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── BusinessObjectData.gif │ │ │ ├── Data.gif │ │ │ ├── groovy_file.gif │ │ │ ├── manage_groovy_scripts.png │ │ │ ├── newgroovyclass_wiz.gif │ │ │ ├── proposal.png │ │ │ ├── sample.gif │ │ │ ├── template.gif │ │ │ ├── template_obj.png │ │ │ ├── template_obj@2x.png │ │ │ └── users.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── nl │ │ │ ├── es │ │ │ │ └── bonita-templates.properties │ │ │ ├── fr │ │ │ │ └── bonita-templates.properties │ │ │ ├── ja │ │ │ │ └── bonita-templates.properties │ │ │ └── pt_BR │ │ │ │ └── bonita-templates.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── comboElementProvider.exsd │ │ │ └── textordataFactory.exsd │ │ ├── src │ │ │ └── org │ │ │ │ └── bonitasoft │ │ │ │ └── studio │ │ │ │ └── groovy │ │ │ │ └── ui │ │ │ │ ├── Activator.java │ │ │ │ ├── GroovyFieldAccessorMethod.java │ │ │ │ ├── JDTMethodHelper.java │ │ │ │ ├── Messages.java │ │ │ │ ├── contentassist │ │ │ │ └── BonitaConstantsTypeLookup.java │ │ │ │ ├── dialog │ │ │ │ ├── CategoryLabelProvider.java │ │ │ │ ├── FunctionCategoriesProvider.java │ │ │ │ ├── FunctionContentProvider.java │ │ │ │ ├── FunctionLabeProvider.java │ │ │ │ ├── GroovyEditorDocumentationDialogTray.java │ │ │ │ ├── GroovyHelpLinkFactory.java │ │ │ │ ├── GroovyScriptNameDialog.java │ │ │ │ ├── OperatorSelectionAdapter.java │ │ │ │ ├── PojoBrowserContentProvider.java │ │ │ │ ├── PropertyValue.java │ │ │ │ ├── ReflectionUtil.java │ │ │ │ ├── ScriptResultDialog.java │ │ │ │ ├── TestGroovyScriptDialog.java │ │ │ │ ├── XmlDocumentContentProvider.java │ │ │ │ ├── XmlLabelProvider.java │ │ │ │ └── control │ │ │ │ │ ├── BooleanRadioGroup.java │ │ │ │ │ └── DateTimeControl.java │ │ │ │ ├── filter │ │ │ │ └── ScriptProposalViewerFilter.java │ │ │ │ ├── handler │ │ │ │ ├── DeleteGroovyScriptHandler.java │ │ │ │ ├── NewGroovyClassHandler.java │ │ │ │ ├── NewGroovyScript.java │ │ │ │ └── OpenGroovyScriptsHandler.java │ │ │ │ ├── job │ │ │ │ ├── ComputeScriptDependenciesJob.java │ │ │ │ ├── UnknownElementsIndexer.java │ │ │ │ └── VariablesVisitor.java │ │ │ │ ├── providers │ │ │ │ ├── DependencyLabelProvider.java │ │ │ │ ├── DropProposalTargetEffect.java │ │ │ │ ├── ExpressionOperator.java │ │ │ │ ├── GroovyScriptExpressionEditor.java │ │ │ │ ├── GroovyScriptFileEditor.java │ │ │ │ ├── GroovyScriptFragmentLabelProvider.java │ │ │ │ ├── GroovyScriptLanguageProvider.java │ │ │ │ ├── OperatorsToolBar.java │ │ │ │ └── TemplateOperator.java │ │ │ │ ├── viewer │ │ │ │ ├── BonitaFormatGroovyAction.java │ │ │ │ ├── BonitaGroovyConfiguration.java │ │ │ │ ├── BonitaGroovyEditor.java │ │ │ │ ├── CustomKeyBindingService.java │ │ │ │ ├── DummyEditorSite.java │ │ │ │ ├── EmbeddedEditorSite.java │ │ │ │ ├── GroovySourceViewerFactory.java │ │ │ │ ├── GroovyViewer.java │ │ │ │ ├── ScriptEditorInput.java │ │ │ │ ├── TestExpressionOperation.java │ │ │ │ ├── TestGroovyScriptUtil.java │ │ │ │ ├── UpdateUnknownReferencesListener.java │ │ │ │ └── proposal │ │ │ │ │ ├── CodeTemplatesProvider.java │ │ │ │ │ ├── ScriptExpressionProposalContentProvider.java │ │ │ │ │ ├── ScriptExpressionProposalLabelProvider.java │ │ │ │ │ ├── ScriptExpressionProposalViewer.java │ │ │ │ │ └── model │ │ │ │ │ ├── Category.java │ │ │ │ │ ├── DAOScriptProposalSupplier.java │ │ │ │ │ ├── DescriptionProvider.java │ │ │ │ │ ├── FunctionScriptProposalSupplier.java │ │ │ │ │ ├── ScriptExpressionContext.java │ │ │ │ │ ├── ScriptProposal.java │ │ │ │ │ ├── ScriptProposalSupplier.java │ │ │ │ │ ├── TemplateScriptProposalSupplier.java │ │ │ │ │ └── VariableScriptProposalSupplier.java │ │ │ │ ├── widgets │ │ │ │ ├── DataComboLabelProvider.java │ │ │ │ └── pojo │ │ │ │ │ └── BrowseWriteToJavaDialog.java │ │ │ │ └── wizard │ │ │ │ └── NewGroovyClassWizard.java │ │ └── templates │ │ │ ├── bonita-templates.properties │ │ │ └── bonita-templates.xml │ ├── org.bonitasoft.studio.groovy │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── groovy │ │ │ ├── BonitaScriptGroovyCompilationUnit.java │ │ │ ├── CustomGroovyLanguageSupport.java │ │ │ ├── DisplayEngineExpressionWithName.java │ │ │ ├── GroovyCompilationUnitFactory.java │ │ │ ├── GroovyDocumentUtil.java │ │ │ ├── GroovyFunctionListener.java │ │ │ ├── GroovyPlugin.java │ │ │ ├── GroovyUtil.java │ │ │ ├── Messages.java │ │ │ ├── ScriptVariable.java │ │ │ ├── contentassist │ │ │ ├── ExtendedJavaCompletionProcessor.java │ │ │ └── ExtendedJavaContentAssistInvocationContext.java │ │ │ ├── library │ │ │ ├── FunctionCategory.java │ │ │ ├── FunctionsCategories.java │ │ │ ├── FunctionsRepositoryFactory.java │ │ │ ├── GroovyFunction.java │ │ │ ├── IFunction.java │ │ │ ├── IFunctionCategory.java │ │ │ └── IFunctionsCategories.java │ │ │ ├── provider │ │ │ ├── GroovyProjectListenerProvider.java │ │ │ └── GroovyResourceProvider.java │ │ │ └── repository │ │ │ ├── GroovyFileStore.java │ │ │ ├── GroovyRepositoryStore.java │ │ │ └── GroovyScriptEntry.java │ ├── org.bonitasoft.studio.identity.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── identity │ │ │ ├── actors │ │ │ └── ui │ │ │ │ └── wizard │ │ │ │ └── connector │ │ │ │ └── CustomUserInfoNameExpressionProviderTest.java │ │ │ └── organization │ │ │ ├── handler │ │ │ └── GetAllUsersHandlerTest.java │ │ │ ├── repository │ │ │ └── OrganizationFileStoreTest.java │ │ │ └── validator │ │ │ ├── DisplayNameValidatorTest.java │ │ │ ├── GroupNameValidatorTest.java │ │ │ ├── GroupParentPathLengthValidatorTest.java │ │ │ ├── MembershipGroupValidatorTest.java │ │ │ ├── MembershipRoleValidatorTest.java │ │ │ ├── RoleNameValidatorTest.java │ │ │ ├── UserNameValidatorTest.java │ │ │ └── UserPasswordValidatorTest.java │ ├── org.bonitasoft.studio.identity │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── active.png │ │ │ ├── actors_mapping.png │ │ │ ├── conf.png │ │ │ ├── initiator.png │ │ │ ├── java.gif │ │ │ ├── manage.png │ │ │ ├── organization_export.png │ │ │ ├── organization_export_disabled.png │ │ │ ├── organization_import.png │ │ │ ├── organization_import_disabled.png │ │ │ ├── synchronize.png │ │ │ ├── synchronize_disabled.png │ │ │ └── view.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── model │ │ │ ├── Organization.ecore │ │ │ ├── Organization.genmodel │ │ │ └── Organization.history │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── identity │ │ │ ├── IdentityPlugin.java │ │ │ ├── actors │ │ │ ├── action │ │ │ │ ├── ActorRefactorPair.java │ │ │ │ ├── ExportActorMappingAction.java │ │ │ │ ├── ImportActorMappingAction.java │ │ │ │ └── RefactorActorOperation.java │ │ │ ├── configuration │ │ │ │ ├── ActorFilterAssociationContentProvider.java │ │ │ │ ├── ActorFilterConfigurationWizardPage.java │ │ │ │ ├── ActorFiltersConfigurationSynchronizer.java │ │ │ │ ├── ActorMappingConfigurationSynchronizer.java │ │ │ │ ├── ActorMappingConfigurationWizardPage.java │ │ │ │ ├── ActorMappingLabelProvider.java │ │ │ │ ├── ActorMappingStyledTreeLabelProvider.java │ │ │ │ └── SelectActorFilterImplementationWizard.java │ │ │ ├── menu │ │ │ │ └── FilterMenuContributionItem.java │ │ │ ├── propertyTester │ │ │ │ └── ActorPropertyTester.java │ │ │ ├── repository │ │ │ │ ├── ActorFilterConfRepositoryStore.java │ │ │ │ ├── ActorFilterDefFileStore.java │ │ │ │ ├── ActorFilterDefRepositoryStore.java │ │ │ │ ├── ActorFilterImplFileStore.java │ │ │ │ ├── ActorFilterImplRepositoryStore.java │ │ │ │ ├── ActorFilterResourceProvider.java │ │ │ │ ├── ActorFilterSourceRepositoryStore.java │ │ │ │ ├── DependencyActorFilterDefFileStore.java │ │ │ │ └── DependencyActorFilterImplFileStore.java │ │ │ ├── ui │ │ │ │ ├── section │ │ │ │ │ ├── AbstractActorsPropertySection.java │ │ │ │ │ ├── AssignableActorsPropertySection.java │ │ │ │ │ ├── LaneAssignableActorsPropertySection.java │ │ │ │ │ ├── ProcessActorsPropertySection.java │ │ │ │ │ ├── editingsupport │ │ │ │ │ │ ├── ActorDescripitonEditingSupport.java │ │ │ │ │ │ └── ActorNameEditingSupport.java │ │ │ │ │ └── filter │ │ │ │ │ │ ├── AssignableActorsFilter.java │ │ │ │ │ │ ├── LaneActorFilter.java │ │ │ │ │ │ └── ProcessActorsFilter.java │ │ │ │ └── wizard │ │ │ │ │ ├── ActorFilterDefinitionWizardDialog.java │ │ │ │ │ ├── AddActorWizard.java │ │ │ │ │ ├── FilterWizard.java │ │ │ │ │ ├── RefactorActorMappingsOperation.java │ │ │ │ │ ├── SelectActorWizard.java │ │ │ │ │ ├── SelectGroupsWizard.java │ │ │ │ │ ├── SelectMembershipsWizard.java │ │ │ │ │ ├── SelectRolesWizard.java │ │ │ │ │ ├── SelectUserFilterDefinitionWizard.java │ │ │ │ │ ├── SelectUserFilterImplementationWizard.java │ │ │ │ │ ├── SelectUsersWizard.java │ │ │ │ │ ├── connector │ │ │ │ │ ├── CustomUserInfoConnectorConfigurationWizardPage.java │ │ │ │ │ ├── CustomUserInfoLabelProvider.java │ │ │ │ │ └── CustomUserInfoNameExpressionProvider.java │ │ │ │ │ └── page │ │ │ │ │ ├── AddActorWizardPage.java │ │ │ │ │ ├── FilterDefinitionContentProvider.java │ │ │ │ │ ├── FilterUniqueDefinitionContentProvider.java │ │ │ │ │ ├── SelectActorWizardPage.java │ │ │ │ │ ├── SelectAdvancedFilterDefinitionWizardPage.java │ │ │ │ │ ├── SelectFilterDefinitionWizardPage.java │ │ │ │ │ ├── SelectGroupMappingWizardPage.java │ │ │ │ │ ├── SelectMembershipMappingWizardPage.java │ │ │ │ │ ├── SelectOrganizationWizardPage.java │ │ │ │ │ ├── SelectRoleMappingWizardPage.java │ │ │ │ │ ├── SelectUserFilterDefinitionWizardPage.java │ │ │ │ │ └── SelectUserMappingWizardPage.java │ │ │ └── validator │ │ │ │ ├── CustomerUserInformationDefinitionNameValidator.java │ │ │ │ └── ValidatorConstants.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ └── organization │ │ │ ├── action │ │ │ └── PublishActiveOrganizationAction.java │ │ │ ├── editor │ │ │ ├── DirtyStateAdapter.java │ │ │ ├── OrganizationContentDescriber.java │ │ │ ├── OrganizationEditor.java │ │ │ ├── OrganizationPerspectiveFactory.java │ │ │ ├── comparator │ │ │ │ └── UserComparator.java │ │ │ ├── contribution │ │ │ │ ├── DeployContributionItem.java │ │ │ │ └── ExportContributionItem.java │ │ │ ├── control │ │ │ │ ├── group │ │ │ │ │ ├── GroupEditionControl.java │ │ │ │ │ ├── GroupList.java │ │ │ │ │ ├── GroupListReadOnly.java │ │ │ │ │ └── GroupTransfer.java │ │ │ │ ├── overview │ │ │ │ │ └── OverviewEditionControl.java │ │ │ │ ├── role │ │ │ │ │ ├── RoleEditionControl.java │ │ │ │ │ ├── RoleList.java │ │ │ │ │ └── RoleListReadOnly.java │ │ │ │ └── user │ │ │ │ │ ├── InformationSection.java │ │ │ │ │ ├── ManageCustomInformationSection.java │ │ │ │ │ ├── MembershipSection.java │ │ │ │ │ ├── UserEditionControl.java │ │ │ │ │ ├── UserList.java │ │ │ │ │ └── UserListReadOnly.java │ │ │ ├── editingsupport │ │ │ │ ├── MembershipGroupEditingSupport.java │ │ │ │ └── MembershipRoleEditingSupport.java │ │ │ ├── formpage │ │ │ │ ├── AbstractOrganizationFormPage.java │ │ │ │ ├── group │ │ │ │ │ ├── GroupFormPage.java │ │ │ │ │ └── GroupFormPart.java │ │ │ │ ├── overview │ │ │ │ │ ├── OverviewFormPage.java │ │ │ │ │ └── OverviewFormPart.java │ │ │ │ ├── role │ │ │ │ │ ├── RoleFormPage.java │ │ │ │ │ └── RoleFormPart.java │ │ │ │ └── user │ │ │ │ │ ├── UserFormPage.java │ │ │ │ │ └── UserFormPart.java │ │ │ └── provider │ │ │ │ └── content │ │ │ │ └── GroupContentProvider.java │ │ │ ├── exception │ │ │ └── OrganizationValidationException.java │ │ │ ├── handler │ │ │ ├── CreateOrganizationHandler.java │ │ │ ├── DeployOrganizationHandler.java │ │ │ ├── ExportOrganizationHandler.java │ │ │ ├── FindUserPasswordHandler.java │ │ │ ├── GetAllUsersHandler.java │ │ │ ├── ImportOrganizationHandler.java │ │ │ ├── InstallOrganizationHandler.java │ │ │ └── OpenOrganizationHandler.java │ │ │ ├── menu │ │ │ └── NewOrganizationContributionItem.java │ │ │ ├── model │ │ │ ├── migration │ │ │ │ ├── PasswordEncryptionMigration.java │ │ │ │ └── PasswordMigration.java │ │ │ └── organization │ │ │ │ ├── ContactData.java │ │ │ │ ├── CustomUserInfoDefinition.java │ │ │ │ ├── CustomUserInfoDefinitions.java │ │ │ │ ├── CustomUserInfoValue.java │ │ │ │ ├── CustomUserInfoValuesType.java │ │ │ │ ├── DocumentRoot.java │ │ │ │ ├── Group.java │ │ │ │ ├── Groups.java │ │ │ │ ├── Membership.java │ │ │ │ ├── Memberships.java │ │ │ │ ├── MetaDatasType.java │ │ │ │ ├── Metadata.java │ │ │ │ ├── Organization.java │ │ │ │ ├── OrganizationFactory.java │ │ │ │ ├── OrganizationPackage.java │ │ │ │ ├── PasswordType.java │ │ │ │ ├── Role.java │ │ │ │ ├── Roles.java │ │ │ │ ├── User.java │ │ │ │ ├── Users.java │ │ │ │ ├── impl │ │ │ │ ├── ContactDataImpl.java │ │ │ │ ├── CustomUserInfoDefinitionImpl.java │ │ │ │ ├── CustomUserInfoDefinitionsImpl.java │ │ │ │ ├── CustomUserInfoValueImpl.java │ │ │ │ ├── CustomUserInfoValuesTypeImpl.java │ │ │ │ ├── DocumentRootImpl.java │ │ │ │ ├── GroupImpl.java │ │ │ │ ├── GroupsImpl.java │ │ │ │ ├── MembershipImpl.java │ │ │ │ ├── MembershipsImpl.java │ │ │ │ ├── MetaDatasTypeImpl.java │ │ │ │ ├── MetadataImpl.java │ │ │ │ ├── OrganizationFactoryImpl.java │ │ │ │ ├── OrganizationImpl.java │ │ │ │ ├── OrganizationPackageImpl.java │ │ │ │ ├── PasswordTypeImpl.java │ │ │ │ ├── RoleImpl.java │ │ │ │ ├── RolesImpl.java │ │ │ │ ├── UserImpl.java │ │ │ │ └── UsersImpl.java │ │ │ │ ├── util │ │ │ │ ├── OrganizationAdapterFactory.java │ │ │ │ ├── OrganizationResourceFactoryImpl.java │ │ │ │ ├── OrganizationResourceImpl.java │ │ │ │ ├── OrganizationSwitch.java │ │ │ │ └── OrganizationXMLProcessor.java │ │ │ │ └── validation │ │ │ │ ├── ContactDataValidator.java │ │ │ │ ├── CustomUserInfoDefinitionValidator.java │ │ │ │ ├── CustomUserInfoDefinitionsValidator.java │ │ │ │ ├── CustomUserInfoValueValidator.java │ │ │ │ ├── CustomUserInfoValuesTypeValidator.java │ │ │ │ ├── DocumentRootValidator.java │ │ │ │ ├── GroupValidator.java │ │ │ │ ├── GroupsValidator.java │ │ │ │ ├── MembershipValidator.java │ │ │ │ ├── MembershipsValidator.java │ │ │ │ ├── MetaDatasTypeValidator.java │ │ │ │ ├── MetadataValidator.java │ │ │ │ ├── OrganizationValidator.java │ │ │ │ ├── PasswordTypeValidator.java │ │ │ │ ├── RoleValidator.java │ │ │ │ ├── RolesValidator.java │ │ │ │ ├── UserValidator.java │ │ │ │ └── UsersValidator.java │ │ │ ├── operation │ │ │ ├── CleanPublishOrganizationOperation.java │ │ │ ├── PublishOrganizationOperation.java │ │ │ └── UpdateOrganizationOperation.java │ │ │ ├── overview │ │ │ └── OrganizationOverviewContribution.java │ │ │ ├── propertyTester │ │ │ └── OrganizationPropertyTester.java │ │ │ ├── repository │ │ │ ├── DefaultOrganizationContribution.java │ │ │ ├── OrganizationFileStore.java │ │ │ └── OrganizationRepositoryStore.java │ │ │ ├── styler │ │ │ └── ActiveOrganizationStyler.java │ │ │ ├── ui │ │ │ ├── control │ │ │ │ └── DeployOrganizationControlSupplier.java │ │ │ ├── internal │ │ │ │ └── DisplayableAdapterFactory.java │ │ │ └── provider │ │ │ │ ├── content │ │ │ │ └── GroupContentProvider.java │ │ │ │ └── label │ │ │ │ └── OrganizationLabelProvider.java │ │ │ └── validator │ │ │ ├── DisplayNameValidator.java │ │ │ ├── GroupListValidator.java │ │ │ ├── GroupNameValidator.java │ │ │ ├── GroupParentPathLengthValidator.java │ │ │ ├── MembershipGroupValidator.java │ │ │ ├── MembershipRoleValidator.java │ │ │ ├── OrganizationValidator.java │ │ │ ├── RoleListValidator.java │ │ │ ├── RoleNameValidator.java │ │ │ ├── UserEmptyInputValidator.java │ │ │ ├── UserListValidator.java │ │ │ ├── UserMembershipValidator.java │ │ │ ├── UserNameValidator.java │ │ │ └── UserPasswordValidator.java │ ├── org.bonitasoft.studio.importer.bos.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── archiveWithBetaManifest.bos │ │ │ ├── archiveWithIncompatibleManifest.bos │ │ │ ├── archiveWithoutManifest.bos │ │ │ ├── customer_support_2.0.bos │ │ │ ├── database-h2.properties │ │ │ ├── database-h2_bis.properties │ │ │ ├── emptyFolder │ │ │ │ └── file │ │ │ ├── folder │ │ │ │ ├── Customer Support - Set Up-2.0.proc │ │ │ │ └── Customer Support-2.0.proc │ │ │ └── invalidArchive.bos │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── importer │ │ │ └── bos │ │ │ ├── factory │ │ │ └── BosArchiveProcessorTest.java │ │ │ ├── model │ │ │ └── BosArchiveTest.java │ │ │ ├── operation │ │ │ ├── ImportBosArchiveOperationTest.java │ │ │ └── ImportConflictsCheckerTest.java │ │ │ ├── provider │ │ │ └── ImportModelLabelProviderTest.java │ │ │ ├── status │ │ │ └── BonitaStatusCodeAggregatorTest.java │ │ │ └── wizard │ │ │ └── ImportBosArchivePageTest.java │ ├── org.bonitasoft.studio.importer.bos │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── import.png │ │ │ ├── import@2x.png │ │ │ └── problem.gif │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ └── org.bonitasoft.studio.importer.bos.validator.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── importer │ │ │ └── bos │ │ │ ├── BosArchiveImporterPlugin.java │ │ │ ├── factory │ │ │ ├── BosArchiveImporterFactory.java │ │ │ └── BosArchiveProcessor.java │ │ │ ├── handler │ │ │ ├── ImportBosHandler.java │ │ │ └── SwitchRepositoryStrategy.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── internal │ │ │ └── DisplayableAdapterFactory.java │ │ │ ├── model │ │ │ ├── AbstractFileModel.java │ │ │ ├── AbstractFolderModel.java │ │ │ ├── AbstractImportModel.java │ │ │ ├── ArchiveInputStreamSupplier.java │ │ │ ├── BosArchive.java │ │ │ ├── BosArchiveEntryHandler.java │ │ │ ├── DefaultBosArchiveEntryHandler.java │ │ │ ├── ImportArchiveModel.java │ │ │ ├── ImportFileModel.java │ │ │ ├── ImportFileStoreModel.java │ │ │ ├── ImportFolderFileStoreModel.java │ │ │ ├── ImportFolderModel.java │ │ │ ├── ImportResourceFileModel.java │ │ │ ├── ImportStoreModel.java │ │ │ ├── ImportableUnit.java │ │ │ ├── LegacyRestAPIExtensionsImportStoreModel.java │ │ │ ├── LegacyStoreModel.java │ │ │ ├── LegacyThemesImportStoreModel.java │ │ │ ├── MultiModuleBosArchiveEntryHandler.java │ │ │ ├── RootFileModel.java │ │ │ ├── SmartImportFileStoreModel.java │ │ │ └── SourceFolderStoreModel.java │ │ │ ├── operation │ │ │ ├── ArchiveLocalDependencyInputStreamSupplier.java │ │ │ ├── FetchRemoteBosArchiveOperation.java │ │ │ ├── ImportBosArchiveOperation.java │ │ │ ├── ImportConflictsChecker.java │ │ │ └── ParseBosArchiveOperation.java │ │ │ ├── provider │ │ │ ├── ArchiveTreeContentProvider.java │ │ │ ├── ImportActionEditingSupport.java │ │ │ └── ImportModelLabelProvider.java │ │ │ ├── status │ │ │ ├── BonitaStatusCodeAggregator.java │ │ │ ├── BosArchiveImportStatus.java │ │ │ ├── BosImportStatusDialogHandler.java │ │ │ └── ImportBosArchiveStatusBuilder.java │ │ │ ├── validator │ │ │ ├── BDMBosImporterStatusProvider.java │ │ │ ├── BosImporterStatusProvider.java │ │ │ ├── DependencyLookupConflictHandler.java │ │ │ ├── DiagramValidator.java │ │ │ ├── ValidationException.java │ │ │ └── ValidatorWrapper.java │ │ │ └── wizard │ │ │ ├── BosArchiveContentPage.java │ │ │ ├── ExtensionsPreviewPage.java │ │ │ ├── FetchRemoteBosArchiveException.java │ │ │ ├── ImportActionSelector.java │ │ │ ├── ImportBosArchivePage.java │ │ │ ├── MessagePanel.java │ │ │ ├── MessagePanelEventHandler.java │ │ │ └── URLTempPath.java │ ├── org.bonitasoft.studio.importer.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── importer │ │ │ ├── ImporterPriorityDisplayComparatorTest.java │ │ │ ├── bpmn │ │ │ ├── BPMNToProcTest.java │ │ │ └── SequenceFlowLabelLocationCalculatorTest.java │ │ │ └── builder │ │ │ └── ProcBuilderTest.java │ ├── org.bonitasoft.studio.importer │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icon │ │ │ └── bpmn-desc.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── model │ │ │ ├── README.txt │ │ │ ├── bpmn2.0-beta2 │ │ │ │ ├── BPMN20.xsd │ │ │ │ ├── BpmnDi.xsd │ │ │ │ ├── DiagramDefinition.xsd │ │ │ │ ├── DiagramInterchange.xsd │ │ │ │ ├── Semantic.xsd │ │ │ │ ├── bpmn.ecore │ │ │ │ ├── bpmn.genmodel │ │ │ │ ├── bpmn.xsd2ecore │ │ │ │ ├── bpmn20.ecore │ │ │ │ ├── bpmn20di.ecore │ │ │ │ └── bpmndi.ecore │ │ │ └── bpmn2.0-final │ │ │ │ ├── BPMN20.genmodel │ │ │ │ ├── BPMN20.xsd │ │ │ │ ├── BPMNDI.xsd │ │ │ │ ├── DC.xsd │ │ │ │ ├── DI.xsd │ │ │ │ ├── Semantic.xsd │ │ │ │ ├── dc.ecore │ │ │ │ ├── di.ecore │ │ │ │ ├── di1.ecore │ │ │ │ └── model.ecore │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ └── import.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── importer │ │ │ ├── ImporterFactory.java │ │ │ ├── ImporterPlugin.java │ │ │ ├── ImporterPriorityDisplayComparator.java │ │ │ ├── ImporterRegistry.java │ │ │ ├── ImporterUtil.java │ │ │ ├── bpmn │ │ │ ├── BPMNToProc.java │ │ │ ├── BPMNToProcFactory.java │ │ │ ├── BoundaryElementTypeResolver.java │ │ │ └── SequenceFlowLabelLocationCalculator.java │ │ │ ├── builder │ │ │ ├── IProcBuilder.java │ │ │ ├── ProcBuilder.java │ │ │ └── ProcBuilderException.java │ │ │ ├── handler │ │ │ ├── DefaultImportStatusDialogHandler.java │ │ │ ├── ImportOtherHandler.java │ │ │ ├── ImportStatusDialog.java │ │ │ └── ImportStatusDialogHandler.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── processors │ │ │ ├── ImportFileOperation.java │ │ │ └── ToProcProcessor.java │ │ │ └── ui │ │ │ └── wizard │ │ │ ├── ImportFileData.java │ │ │ ├── ImportFileWizard.java │ │ │ └── ImportFileWizardPage.java │ ├── org.bonitasoft.studio.intro │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── content │ │ │ ├── images │ │ │ │ ├── .gitignore │ │ │ │ ├── Logo-Welcome-Community-Dark-Without-Version.png │ │ │ │ └── Logo-Welcome-Community-Without-Version.png │ │ │ ├── introContent.xml │ │ │ ├── svg │ │ │ │ ├── clock.svg │ │ │ │ ├── git.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── import.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── new-project.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ └── toolbox.svg │ │ │ └── welcome.html │ │ ├── icons │ │ │ ├── bonitasoft-icon-16-16-transparent.png │ │ │ └── bonitasoft-icon-16-16-transparent@2x.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── org │ │ │ │ └── bonitasoft │ │ │ │ └── studio │ │ │ │ └── intro │ │ │ │ ├── Activator.java │ │ │ │ ├── configurer │ │ │ │ └── BontaIntroConfigurer.java │ │ │ │ ├── content │ │ │ │ ├── ButtonLinkContentProvider.java │ │ │ │ ├── DOMContentProvider.java │ │ │ │ ├── IntroContentProvider.java │ │ │ │ ├── LinkContentProvider.java │ │ │ │ ├── LogoContentProvider.java │ │ │ │ ├── RecentFilesContentProvider.java │ │ │ │ ├── SVGContentProvider.java │ │ │ │ ├── SectionTitleContentProvider.java │ │ │ │ └── actions │ │ │ │ │ ├── ExecuteCommandAction.java │ │ │ │ │ ├── ExecuteCommandContentProvider.java │ │ │ │ │ ├── OpenEditorFromHistoryItemAction.java │ │ │ │ │ └── OpenInExternalBrowserIntroAction.java │ │ │ │ └── i18n │ │ │ │ └── Messages.java │ │ └── themes │ │ │ ├── dark_theme.css │ │ │ ├── default_theme.css │ │ │ └── tailwind.min.css │ ├── org.bonitasoft.studio.la.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── myApp.xml │ │ │ └── myOldApp.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── la │ │ │ ├── application │ │ │ ├── core │ │ │ │ ├── DeleteApplicationRunnableTest.java │ │ │ │ ├── ExportApplicationRunnableTest.java │ │ │ │ └── PageDependencyResolverTest.java │ │ │ ├── handler │ │ │ │ └── NewApplicationHandlerTest.java │ │ │ ├── repository │ │ │ │ ├── ApplicationFileStoreTest.java │ │ │ │ └── ApplicationRepositoryStoreTest.java │ │ │ └── ui │ │ │ │ └── ApplicationPropertyTesterTest.java │ │ │ └── validator │ │ │ ├── ApplicationHomepageValidatorTest.java │ │ │ ├── ApplicationTokenUnicityValidatorTest.java │ │ │ ├── ImportFileStoreConflictsValidatorTest.java │ │ │ └── ImportFileStoreMigrationValidatorTest.java │ ├── org.bonitasoft.studio.la │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── application.png │ │ │ ├── application@2x.png │ │ │ ├── home.png │ │ │ └── plusIcon_24_28.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── la │ │ │ ├── LivingApplicationPlugin.java │ │ │ ├── application │ │ │ ├── core │ │ │ │ ├── ApplicationContentDescriber.java │ │ │ │ ├── ApplicationDependencyResolver.java │ │ │ │ ├── ApplicationDescriptorNotFoundException.java │ │ │ │ ├── BonitaPagesRegistry.java │ │ │ │ ├── DeleteApplicationContainerRunnable.java │ │ │ │ ├── DeleteApplicationRunnable.java │ │ │ │ ├── DeployApplicationAction.java │ │ │ │ ├── DeployApplicationDescriptorOperation.java │ │ │ │ ├── DeployThemeOperation.java │ │ │ │ ├── EntryPage.java │ │ │ │ ├── ExportApplicationRunnable.java │ │ │ │ ├── ImportApplicationAction.java │ │ │ │ ├── PageDependencyResolver.java │ │ │ │ ├── PageLocalizationService.java │ │ │ │ ├── ThemeDependencyResolver.java │ │ │ │ └── UnknownDeployStatus.java │ │ │ ├── handler │ │ │ │ ├── DeleteApplicationHandler.java │ │ │ │ ├── DeployApplicationHandler.java │ │ │ │ ├── ExportApplicationFileAction.java │ │ │ │ ├── ExportApplicationHandler.java │ │ │ │ ├── ExportSingleApplicationHandler.java │ │ │ │ ├── FindOpenedEditorHandler.java │ │ │ │ ├── ImportApplicationhandler.java │ │ │ │ ├── NewApplicationHandler.java │ │ │ │ └── OpenApplicationHandler.java │ │ │ ├── menu │ │ │ │ ├── ApplicationMenuContributionItem.java │ │ │ │ └── NewApplicationMenuContribution.java │ │ │ ├── repository │ │ │ │ ├── ApplicationFileStore.java │ │ │ │ └── ApplicationRepositoryStore.java │ │ │ └── ui │ │ │ │ ├── ApplicationPerspectiveFactory.java │ │ │ │ ├── ApplicationPropertyTester.java │ │ │ │ ├── control │ │ │ │ ├── AddApplicationDescriptorPage.java │ │ │ │ ├── ImportApplicationPage.java │ │ │ │ ├── OpenApplicationPage.java │ │ │ │ ├── model │ │ │ │ │ ├── AddApplicationMode.java │ │ │ │ │ └── ApplicationDescriptorWithFileName.java │ │ │ │ └── provider │ │ │ │ │ └── ApplicationDescriptorWithFileNameLabelProvider.java │ │ │ │ ├── editor │ │ │ │ ├── ApplicationDescriptorControl.java │ │ │ │ ├── ApplicationEditor.java │ │ │ │ ├── ApplicationFormPage.java │ │ │ │ ├── ApplicationFormPart.java │ │ │ │ ├── ApplicationLinkDescriptorControl.java │ │ │ │ ├── ApplicationLookNFeel.java │ │ │ │ ├── ApplicationNavigation.java │ │ │ │ ├── ApplicationOverview.java │ │ │ │ ├── LegacyApplicationDescriptorControl.java │ │ │ │ ├── NavigationPageNode.java │ │ │ │ ├── contribution │ │ │ │ │ ├── AddApplicationDescriptorContributionItem.java │ │ │ │ │ ├── DeleteContributionItem.java │ │ │ │ │ ├── DeployContributionItem.java │ │ │ │ │ ├── ExportApplicationContributionItem.java │ │ │ │ │ └── RenameContributionItem.java │ │ │ │ ├── converter │ │ │ │ │ ├── ApplicationToNavigationConverter.java │ │ │ │ │ ├── NavigationToApplicationConverter.java │ │ │ │ │ └── UpdateApplicationNodeOperation.java │ │ │ │ ├── customPage │ │ │ │ │ ├── ApplicationEditorProviders.java │ │ │ │ │ ├── ApplicationPageProposalProvider.java │ │ │ │ │ ├── CustomPageDescriptor.java │ │ │ │ │ ├── CustomPageProposalProvider.java │ │ │ │ │ ├── CustomPageProvider.java │ │ │ │ │ ├── LayoutProposalProvider.java │ │ │ │ │ └── ThemeProposalProvider.java │ │ │ │ └── listener │ │ │ │ │ ├── AddApplicationDescriptorListener.java │ │ │ │ │ ├── CloneApplicationDescriptorListener.java │ │ │ │ │ ├── DeleteApplicationDescriptorListener.java │ │ │ │ │ └── MoveMenuListener.java │ │ │ │ ├── overview │ │ │ │ ├── ApplicationOverviewContribution.java │ │ │ │ └── ApplicationZoomControl.java │ │ │ │ ├── provider │ │ │ │ ├── ApplicationFileStoreLabelProvider.java │ │ │ │ ├── DeployApplicationFileStoreLabelProvider.java │ │ │ │ ├── NavigationPageTreeContentProvider.java │ │ │ │ └── ProfileProposalProvider.java │ │ │ │ └── validator │ │ │ │ ├── ApplicationDescriptorValidators.java │ │ │ │ ├── ApplicationTokenUnicityValidator.java │ │ │ │ ├── ApplicationXMLContentValidator.java │ │ │ │ ├── CustomLayoutValidator.java │ │ │ │ ├── CustomThemeValidator.java │ │ │ │ └── ProfileValidator.java │ │ │ ├── extension │ │ │ ├── ApplicationChange.java │ │ │ ├── ApplicationCollector.java │ │ │ ├── ApplicationPreviewMessageProvider.java │ │ │ ├── ThemeArtifactProvider.java │ │ │ ├── ThemeRemovedChange.java │ │ │ ├── ThemeUpdateChange.java │ │ │ ├── ThemeUpdateParticipant.java │ │ │ └── ThemeUpdateParticipantFactory.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── internal │ │ │ └── DisplayableAdapterFactory.java │ │ │ └── validator │ │ │ ├── ApplicationHomepageValidator.java │ │ │ ├── ApplicationTokenUnicityValidator.java │ │ │ └── ImportFileStoreConflictsValidator.java │ ├── org.bonitasoft.studio.local.repository │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── template │ │ │ └── pom.xml │ ├── org.bonitasoft.studio.parameters.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── parameters │ │ │ └── wizard │ │ │ └── page │ │ │ └── ParametersWizardPageTest.java │ ├── org.bonitasoft.studio.parameters │ │ ├── .classpath │ │ ├── .project │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── parameters │ │ │ ├── ParameterPlugin.java │ │ │ ├── action │ │ │ ├── ExportParametersAction.java │ │ │ ├── ImportParametersAction.java │ │ │ ├── ParameterRefactorPair.java │ │ │ ├── RefactorParametersOperation.java │ │ │ └── RemoveParametersOperation.java │ │ │ ├── configuration │ │ │ └── ParametersConfigurationSynchronizer.java │ │ │ ├── expression │ │ │ └── ParameterExpressionProvider.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── property │ │ │ └── section │ │ │ │ ├── AbstractProcessFilter.java │ │ │ │ ├── ParameterPropertySection.java │ │ │ │ ├── editingsupport │ │ │ │ ├── ParameterDescriptionEditingSupport.java │ │ │ │ ├── ParameterNameEditingSupport.java │ │ │ │ └── ParameterTypeEditingSupport.java │ │ │ │ └── provider │ │ │ │ ├── ParameterDescriptionLabelProvider.java │ │ │ │ ├── ParameterNameLabelProvider.java │ │ │ │ ├── ParameterNameTypeLabelProvider.java │ │ │ │ ├── ParameterStyledLabelProvider.java │ │ │ │ └── ParameterTypeLabelProvider.java │ │ │ └── wizard │ │ │ └── page │ │ │ ├── AddParameterWizard.java │ │ │ ├── CreateParameterProposalListener.java │ │ │ ├── EditParameterWizard.java │ │ │ ├── ParameterValueEditingSupport.java │ │ │ ├── ParameterWizardDialog.java │ │ │ ├── ParametersConfigurationWizardPage.java │ │ │ └── ParametersWizardPage.java │ ├── org.bonitasoft.studio.pics.bonitasoft │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── appIcons │ │ │ │ ├── configure.png │ │ │ │ ├── configure_disabled.png │ │ │ │ ├── debug.png │ │ │ │ ├── debug_disabled.png │ │ │ │ ├── portal.png │ │ │ │ ├── portal_disabled.png │ │ │ │ ├── preview.png │ │ │ │ ├── preview_disabled.png │ │ │ │ ├── run.png │ │ │ │ └── run_disabled.png │ │ │ ├── coolbar-light.png │ │ │ ├── coolbar.png │ │ │ ├── coolbar │ │ │ │ ├── 16 │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── configure_disabled.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_disabled.png │ │ │ │ │ ├── debug.png │ │ │ │ │ ├── debug_disabled.png │ │ │ │ │ ├── export.png │ │ │ │ │ ├── export_disabled.png │ │ │ │ │ ├── guidance.png │ │ │ │ │ ├── guidance_disabled.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── help_disabled.png │ │ │ │ │ ├── import.png │ │ │ │ │ ├── import_disabled.png │ │ │ │ │ ├── new.png │ │ │ │ │ ├── new_disabled.png │ │ │ │ │ ├── open.png │ │ │ │ │ ├── open_disabled.png │ │ │ │ │ ├── paste.png │ │ │ │ │ ├── paste_disabled.png │ │ │ │ │ ├── portal.png │ │ │ │ │ ├── portal_disabled.png │ │ │ │ │ ├── preferences.png │ │ │ │ │ ├── preferences_disabled.png │ │ │ │ │ ├── preview.png │ │ │ │ │ ├── preview_disabled.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_disabled.png │ │ │ │ │ ├── profile.png │ │ │ │ │ ├── profile_disabled.png │ │ │ │ │ ├── run.png │ │ │ │ │ ├── run_disabled.png │ │ │ │ │ ├── save.png │ │ │ │ │ ├── save_disabled.png │ │ │ │ │ ├── welcome.png │ │ │ │ │ └── welcome_disabled.png │ │ │ │ ├── 24 │ │ │ │ │ ├── app-directory.png │ │ │ │ │ ├── app-directory@2x.png │ │ │ │ │ ├── app-directory_dark.png │ │ │ │ │ ├── app-directory_dark@2x.png │ │ │ │ │ ├── app-directory_hot.png │ │ │ │ │ ├── app-directory_hot@2x.png │ │ │ │ │ ├── app-directory_hot_dark.png │ │ │ │ │ ├── app-directory_hot_dark@2x.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── configure@2x.png │ │ │ │ │ ├── configure_dark.png │ │ │ │ │ ├── configure_dark@2x.png │ │ │ │ │ ├── configure_hot.png │ │ │ │ │ ├── configure_hot@2x.png │ │ │ │ │ ├── configure_hot_dark.png │ │ │ │ │ ├── configure_hot_dark@2x.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_disabled.png │ │ │ │ │ ├── debug.png │ │ │ │ │ ├── debug_disabled.png │ │ │ │ │ ├── deploy.png │ │ │ │ │ ├── deploy@2x.png │ │ │ │ │ ├── deploy_dark.png │ │ │ │ │ ├── deploy_dark@2x.png │ │ │ │ │ ├── deploy_hot.png │ │ │ │ │ ├── deploy_hot@2x.png │ │ │ │ │ ├── deploy_hot_dark.png │ │ │ │ │ ├── deploy_hot_dark@2x.png │ │ │ │ │ ├── export.png │ │ │ │ │ ├── export@2x.png │ │ │ │ │ ├── export_dark.png │ │ │ │ │ ├── export_dark@2x.png │ │ │ │ │ ├── export_hot.png │ │ │ │ │ ├── export_hot@2x.png │ │ │ │ │ ├── export_hot_dark.png │ │ │ │ │ ├── export_hot_dark@2x.png │ │ │ │ │ ├── guidance.png │ │ │ │ │ ├── guidance_disabled.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── help@2x.png │ │ │ │ │ ├── help_dark.png │ │ │ │ │ ├── help_dark@2x.png │ │ │ │ │ ├── help_hot.png │ │ │ │ │ ├── help_hot@2x.png │ │ │ │ │ ├── help_hot_dark.png │ │ │ │ │ ├── help_hot_dark@2x.png │ │ │ │ │ ├── import.png │ │ │ │ │ ├── import@2x.png │ │ │ │ │ ├── import_dark.png │ │ │ │ │ ├── import_dark@2x.png │ │ │ │ │ ├── import_hot.png │ │ │ │ │ ├── import_hot@2x.png │ │ │ │ │ ├── import_hot_dark.png │ │ │ │ │ ├── import_hot_dark@2x.png │ │ │ │ │ ├── new.png │ │ │ │ │ ├── new@2x.png │ │ │ │ │ ├── new_dark.png │ │ │ │ │ ├── new_dark@2x.png │ │ │ │ │ ├── new_hot.png │ │ │ │ │ ├── new_hot@2x.png │ │ │ │ │ ├── new_hot_dark.png │ │ │ │ │ ├── new_hot_dark@2x.png │ │ │ │ │ ├── open.png │ │ │ │ │ ├── open_disabled.png │ │ │ │ │ ├── overview.png │ │ │ │ │ ├── overview@2x.png │ │ │ │ │ ├── overview_dark.png │ │ │ │ │ ├── overview_dark@2x.png │ │ │ │ │ ├── overview_hot.png │ │ │ │ │ ├── overview_hot@2x.png │ │ │ │ │ ├── overview_hot_dark.png │ │ │ │ │ ├── overview_hot_dark@2x.png │ │ │ │ │ ├── paste.png │ │ │ │ │ ├── paste_disabled.png │ │ │ │ │ ├── preferences.png │ │ │ │ │ ├── preferences@2x.png │ │ │ │ │ ├── preferences_dark.png │ │ │ │ │ ├── preferences_dark@2x.png │ │ │ │ │ ├── preferences_hot.png │ │ │ │ │ ├── preferences_hot@2x.png │ │ │ │ │ ├── preferences_hot_dark.png │ │ │ │ │ ├── preferences_hot_dark@2x.png │ │ │ │ │ ├── preview.png │ │ │ │ │ ├── preview_disabled.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_disabled.png │ │ │ │ │ ├── profile.png │ │ │ │ │ ├── profile_disabled.png │ │ │ │ │ ├── run.png │ │ │ │ │ ├── run@2x.png │ │ │ │ │ ├── run_dark.png │ │ │ │ │ ├── run_dark@2x.png │ │ │ │ │ ├── run_hot.png │ │ │ │ │ ├── run_hot@2x.png │ │ │ │ │ ├── run_hot_dark.png │ │ │ │ │ ├── run_hot_dark@2x.png │ │ │ │ │ ├── save.png │ │ │ │ │ ├── save@2x.png │ │ │ │ │ ├── save_dark.png │ │ │ │ │ ├── save_dark@2x.png │ │ │ │ │ ├── save_hot.png │ │ │ │ │ ├── save_hot@2x.png │ │ │ │ │ ├── save_hot_dark.png │ │ │ │ │ ├── save_hot_dark@2x.png │ │ │ │ │ ├── uib.png │ │ │ │ │ ├── uib@2x.png │ │ │ │ │ ├── uib_dark.png │ │ │ │ │ ├── uib_dark@2x.png │ │ │ │ │ ├── uib_hot.png │ │ │ │ │ ├── uib_hot@2x.png │ │ │ │ │ ├── uib_hot_dark.png │ │ │ │ │ ├── uib_hot_dark@2x.png │ │ │ │ │ ├── uid.png │ │ │ │ │ ├── uid@2x.png │ │ │ │ │ ├── uid_dark.png │ │ │ │ │ ├── uid_dark@2x.png │ │ │ │ │ ├── uid_hot.png │ │ │ │ │ ├── uid_hot@2x.png │ │ │ │ │ ├── uid_hot_dark.png │ │ │ │ │ ├── uid_hot_dark@2x.png │ │ │ │ │ ├── welcome.png │ │ │ │ │ ├── welcome@2x.png │ │ │ │ │ ├── welcome_dark.png │ │ │ │ │ ├── welcome_dark@2x.png │ │ │ │ │ ├── welcome_hot.png │ │ │ │ │ ├── welcome_hot@2x.png │ │ │ │ │ ├── welcome_hot_dark.png │ │ │ │ │ └── welcome_hot_dark@2x.png │ │ │ │ ├── 32 │ │ │ │ │ ├── app-directory.png │ │ │ │ │ ├── app-directory@2x.png │ │ │ │ │ ├── app-directory_dark.png │ │ │ │ │ ├── app-directory_dark@2x.png │ │ │ │ │ ├── app-directory_hot.png │ │ │ │ │ ├── app-directory_hot@2x.png │ │ │ │ │ ├── app-directory_hot_dark.png │ │ │ │ │ ├── app-directory_hot_dark@2x.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── configure@2x.png │ │ │ │ │ ├── configure_dark.png │ │ │ │ │ ├── configure_dark@2x.png │ │ │ │ │ ├── configure_hot.png │ │ │ │ │ ├── configure_hot@2x.png │ │ │ │ │ ├── configure_hot_dark.png │ │ │ │ │ ├── configure_hot_dark@2x.png │ │ │ │ │ ├── deploy.png │ │ │ │ │ ├── deploy@2x.png │ │ │ │ │ ├── deploy_dark.png │ │ │ │ │ ├── deploy_dark@2x.png │ │ │ │ │ ├── deploy_hot.png │ │ │ │ │ ├── deploy_hot@2x.png │ │ │ │ │ ├── deploy_hot_dark.png │ │ │ │ │ ├── deploy_hot_dark@2x.png │ │ │ │ │ ├── export.png │ │ │ │ │ ├── export@2x.png │ │ │ │ │ ├── export_dark.png │ │ │ │ │ ├── export_dark@2x.png │ │ │ │ │ ├── export_hot.png │ │ │ │ │ ├── export_hot@2x.png │ │ │ │ │ ├── export_hot_dark.png │ │ │ │ │ ├── export_hot_dark@2x.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── help@2x.png │ │ │ │ │ ├── help_dark.png │ │ │ │ │ ├── help_dark@2x.png │ │ │ │ │ ├── help_hot.png │ │ │ │ │ ├── help_hot@2x.png │ │ │ │ │ ├── help_hot_dark.png │ │ │ │ │ ├── help_hot_dark@2x.png │ │ │ │ │ ├── import.png │ │ │ │ │ ├── import@2x.png │ │ │ │ │ ├── import_dark.png │ │ │ │ │ ├── import_dark@2x.png │ │ │ │ │ ├── import_hot.png │ │ │ │ │ ├── import_hot@2x.png │ │ │ │ │ ├── import_hot_dark.png │ │ │ │ │ ├── import_hot_dark@2x.png │ │ │ │ │ ├── new.png │ │ │ │ │ ├── new@2x.png │ │ │ │ │ ├── new_dark.png │ │ │ │ │ ├── new_dark@2x.png │ │ │ │ │ ├── new_hot.png │ │ │ │ │ ├── new_hot@2x.png │ │ │ │ │ ├── new_hot_dark.png │ │ │ │ │ ├── new_hot_dark@2x.png │ │ │ │ │ ├── overview.png │ │ │ │ │ ├── overview@2x.png │ │ │ │ │ ├── overview_dark.png │ │ │ │ │ ├── overview_dark@2x.png │ │ │ │ │ ├── overview_hot.png │ │ │ │ │ ├── overview_hot@2x.png │ │ │ │ │ ├── overview_hot_dark.png │ │ │ │ │ ├── overview_hot_dark@2x.png │ │ │ │ │ ├── preferences.png │ │ │ │ │ ├── preferences@2x.png │ │ │ │ │ ├── preferences_dark.png │ │ │ │ │ ├── preferences_dark@2x.png │ │ │ │ │ ├── preferences_hot.png │ │ │ │ │ ├── preferences_hot@2x.png │ │ │ │ │ ├── preferences_hot_dark.png │ │ │ │ │ ├── preferences_hot_dark@2x.png │ │ │ │ │ ├── run.png │ │ │ │ │ ├── run@2x.png │ │ │ │ │ ├── run_dark.png │ │ │ │ │ ├── run_dark@2x.png │ │ │ │ │ ├── run_hot.png │ │ │ │ │ ├── run_hot@2x.png │ │ │ │ │ ├── run_hot_dark.png │ │ │ │ │ ├── run_hot_dark@2x.png │ │ │ │ │ ├── save.png │ │ │ │ │ ├── save@2x.png │ │ │ │ │ ├── save_dark.png │ │ │ │ │ ├── save_dark@2x.png │ │ │ │ │ ├── save_hot.png │ │ │ │ │ ├── save_hot@2x.png │ │ │ │ │ ├── save_hot_dark.png │ │ │ │ │ ├── save_hot_dark@2x.png │ │ │ │ │ ├── uib.png │ │ │ │ │ ├── uib@2x.png │ │ │ │ │ ├── uib_dark.png │ │ │ │ │ ├── uib_dark@2x.png │ │ │ │ │ ├── uib_hot.png │ │ │ │ │ ├── uib_hot@2x.png │ │ │ │ │ ├── uib_hot_dark.png │ │ │ │ │ ├── uib_hot_dark@2x.png │ │ │ │ │ ├── uid.png │ │ │ │ │ ├── uid@2x.png │ │ │ │ │ ├── uid_dark.png │ │ │ │ │ ├── uid_dark@2x.png │ │ │ │ │ ├── uid_hot.png │ │ │ │ │ ├── uid_hot@2x.png │ │ │ │ │ ├── uid_hot_dark.png │ │ │ │ │ ├── uid_hot_dark@2x.png │ │ │ │ │ ├── welcome.png │ │ │ │ │ ├── welcome@2x.png │ │ │ │ │ ├── welcome_dark.png │ │ │ │ │ ├── welcome_dark@2x.png │ │ │ │ │ ├── welcome_hot.png │ │ │ │ │ ├── welcome_hot@2x.png │ │ │ │ │ ├── welcome_hot_dark.png │ │ │ │ │ └── welcome_hot_dark@2x.png │ │ │ │ ├── 48 │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── configure@2x.png │ │ │ │ │ ├── configure_dark.png │ │ │ │ │ ├── configure_dark@2x.png │ │ │ │ │ ├── configure_disabled.png │ │ │ │ │ ├── configure_disabled@2x.png │ │ │ │ │ ├── configure_disabled_dark.png │ │ │ │ │ ├── configure_disabled_dark@2x.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_disabled.png │ │ │ │ │ ├── dashboard.png │ │ │ │ │ ├── dashboard@2x.png │ │ │ │ │ ├── dashboard_dark.png │ │ │ │ │ ├── dashboard_dark@2x.png │ │ │ │ │ ├── debug.png │ │ │ │ │ ├── debug_disabled.png │ │ │ │ │ ├── deploy.png │ │ │ │ │ ├── deploy@2x.png │ │ │ │ │ ├── deploy_dark.png │ │ │ │ │ ├── deploy_dark@2x.png │ │ │ │ │ ├── export.png │ │ │ │ │ ├── export@2x.png │ │ │ │ │ ├── export_dark.png │ │ │ │ │ ├── export_dark@2x.png │ │ │ │ │ ├── export_disabled.png │ │ │ │ │ ├── guidance.png │ │ │ │ │ ├── guidance_disabled.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── help@2x.png │ │ │ │ │ ├── help_dark.png │ │ │ │ │ ├── help_dark@2x.png │ │ │ │ │ ├── import.png │ │ │ │ │ ├── import@2x.png │ │ │ │ │ ├── import_dark.png │ │ │ │ │ ├── import_dark@2x.png │ │ │ │ │ ├── new.png │ │ │ │ │ ├── new@2x.png │ │ │ │ │ ├── new_dark.png │ │ │ │ │ ├── new_dark@2x.png │ │ │ │ │ ├── open.png │ │ │ │ │ ├── open_disabled.png │ │ │ │ │ ├── paste.png │ │ │ │ │ ├── paste_disabled.png │ │ │ │ │ ├── portal.png │ │ │ │ │ ├── portal@2x.png │ │ │ │ │ ├── portal_dark.png │ │ │ │ │ ├── portal_dark@2x.png │ │ │ │ │ ├── preferences.png │ │ │ │ │ ├── preferences@2x.png │ │ │ │ │ ├── preferences_dark.png │ │ │ │ │ ├── preferences_dark@2x.png │ │ │ │ │ ├── preview.png │ │ │ │ │ ├── preview_disabled.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_disabled.png │ │ │ │ │ ├── profile.png │ │ │ │ │ ├── profile_disabled.png │ │ │ │ │ ├── run.png │ │ │ │ │ ├── run@2x.png │ │ │ │ │ ├── run_dark.png │ │ │ │ │ ├── run_dark@2x.png │ │ │ │ │ ├── run_disabled.png │ │ │ │ │ ├── run_disabled@2x.png │ │ │ │ │ ├── run_disabled_dark.png │ │ │ │ │ ├── run_disabled_dark@2x.png │ │ │ │ │ ├── save.png │ │ │ │ │ ├── save@2x.png │ │ │ │ │ ├── save_dark.png │ │ │ │ │ ├── save_dark@2x.png │ │ │ │ │ ├── save_disabled.png │ │ │ │ │ ├── save_disabled@2x.png │ │ │ │ │ ├── save_disabled_dark.png │ │ │ │ │ ├── save_disabled_dark@2x.png │ │ │ │ │ ├── uib.png │ │ │ │ │ ├── uib@2x.png │ │ │ │ │ ├── uib_dark.png │ │ │ │ │ ├── uib_dark@2x.png │ │ │ │ │ ├── uib_hot.png │ │ │ │ │ ├── uib_hot@2x.png │ │ │ │ │ ├── uib_hot_dark.png │ │ │ │ │ ├── uib_hot_dark@2x.png │ │ │ │ │ ├── uid.png │ │ │ │ │ ├── uid@2x.png │ │ │ │ │ ├── uid_dark.png │ │ │ │ │ ├── uid_dark@2x.png │ │ │ │ │ ├── welcome.png │ │ │ │ │ ├── welcome@2x.png │ │ │ │ │ ├── welcome_dark.png │ │ │ │ │ └── welcome_dark@2x.png │ │ │ │ └── uib.svg │ │ │ ├── coolbar2.png │ │ │ └── editIcons │ │ │ │ ├── copy.png │ │ │ │ ├── copy_disabled.png │ │ │ │ ├── details.png │ │ │ │ ├── details_disabled.png │ │ │ │ ├── export.png │ │ │ │ ├── export_disabled.png │ │ │ │ ├── guidance.png │ │ │ │ ├── guidance_disabled.png │ │ │ │ ├── help.png │ │ │ │ ├── help_disabled.png │ │ │ │ ├── import.png │ │ │ │ ├── import_disabled.png │ │ │ │ ├── new.png │ │ │ │ ├── new_disabled.png │ │ │ │ ├── open.png │ │ │ │ ├── open_disabled.png │ │ │ │ ├── paste.png │ │ │ │ ├── paste_disabled.png │ │ │ │ ├── preferences.png │ │ │ │ ├── preferences_disabled.png │ │ │ │ ├── print.png │ │ │ │ ├── print_disabled.png │ │ │ │ ├── profile.png │ │ │ │ ├── profile_disabled.png │ │ │ │ ├── save.png │ │ │ │ ├── save_disabled.png │ │ │ │ ├── welcome.png │ │ │ │ └── welcome_disabled.png │ │ └── pom.xml │ ├── org.bonitasoft.studio.pics │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── AttachmentData.gif │ │ │ ├── ContractInput.gif │ │ │ ├── Data.gif │ │ │ ├── Document.gif │ │ │ ├── GroovyScript.gif │ │ │ ├── JavaType.gif │ │ │ ├── Parameter.gif │ │ │ ├── activity_lifecycle.png │ │ │ ├── actor.png │ │ │ ├── actors_mapping.png │ │ │ ├── add.png │ │ │ ├── add_item.png │ │ │ ├── add_item@2x.png │ │ │ ├── add_item_dark.png │ │ │ ├── add_item_dark@2x.png │ │ │ ├── add_item_large.png │ │ │ ├── add_item_large@2x.png │ │ │ ├── add_item_large_dark.png │ │ │ ├── add_item_large_dark@2x.png │ │ │ ├── add_simple.png │ │ │ ├── add_simple@2x.png │ │ │ ├── add_simple_dark.png │ │ │ ├── add_simple_dark@2x.png │ │ │ ├── add_simple_hot.png │ │ │ ├── add_simple_hot@2x.png │ │ │ ├── add_simple_hot_dark.png │ │ │ ├── add_simple_hot_dark@2x.png │ │ │ ├── arrow-down-sm.png │ │ │ ├── arrow-down.png │ │ │ ├── arrow-up-sm.png │ │ │ ├── arrow-up.png │ │ │ ├── arrow16.gif │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down@2x.png │ │ │ ├── arrow_down_dark.png │ │ │ ├── arrow_down_dark@2x.png │ │ │ ├── arrow_down_icon.gif │ │ │ ├── arrow_icon.gif │ │ │ ├── arrow_right_icon.gif │ │ │ ├── artifacts │ │ │ │ ├── accessControl.png │ │ │ │ ├── accessControl32.png │ │ │ │ ├── accessControl32@2x.png │ │ │ │ ├── accessControl32_dark.png │ │ │ │ ├── accessControl32_dark@2x.png │ │ │ │ ├── accessControl@2x.png │ │ │ │ ├── accessControl_dark.png │ │ │ │ ├── accessControl_dark@2x.png │ │ │ │ ├── application.png │ │ │ │ ├── application32.png │ │ │ │ ├── application32@2x.png │ │ │ │ ├── application32_dark.png │ │ │ │ ├── application32_dark@2x.png │ │ │ │ ├── application@2x.png │ │ │ │ ├── application_dark.png │ │ │ │ ├── application_dark@2x.png │ │ │ │ ├── bdm.png │ │ │ │ ├── bdm32.png │ │ │ │ ├── bdm32@2x.png │ │ │ │ ├── bdm32_dark.png │ │ │ │ ├── bdm32_dark@2x.png │ │ │ │ ├── bdm@2x.png │ │ │ │ ├── bdm_dark.png │ │ │ │ ├── bdm_dark@2x.png │ │ │ │ ├── connector-def.png │ │ │ │ ├── connector-def@2x.png │ │ │ │ ├── connector-def_dark.png │ │ │ │ ├── connector-def_dark@2x.png │ │ │ │ ├── connector-impl.png │ │ │ │ ├── connector-impl@2x.png │ │ │ │ ├── connector-impl_dark.png │ │ │ │ ├── connector-impl_dark@2x.png │ │ │ │ ├── diagram.png │ │ │ │ ├── diagram32.png │ │ │ │ ├── diagram32@2x.png │ │ │ │ ├── diagram32_dark.png │ │ │ │ ├── diagram32_dark@2x.png │ │ │ │ ├── diagram@2x.png │ │ │ │ ├── diagram_dark.png │ │ │ │ ├── diagram_dark@2x.png │ │ │ │ ├── documentation.png │ │ │ │ ├── documentation32.png │ │ │ │ ├── documentation32@2x.png │ │ │ │ ├── documentation32_dark.png │ │ │ │ ├── documentation32_dark@2x.png │ │ │ │ ├── documentation@2x.png │ │ │ │ ├── documentation_dark.png │ │ │ │ ├── documentation_dark@2x.png │ │ │ │ ├── environment.png │ │ │ │ ├── environment@2x.png │ │ │ │ ├── environment_dark.png │ │ │ │ ├── environment_dark@2x.png │ │ │ │ ├── filter-def.png │ │ │ │ ├── filter-def@2x.png │ │ │ │ ├── filter-def_dark.png │ │ │ │ ├── filter-def_dark@2x.png │ │ │ │ ├── filter-impl.png │ │ │ │ ├── filter-impl@2x.png │ │ │ │ ├── filter-impl_dark.png │ │ │ │ ├── filter-impl_dark@2x.png │ │ │ │ ├── fragment.png │ │ │ │ ├── fragment@2x.png │ │ │ │ ├── fragment_dark.png │ │ │ │ ├── fragment_dark@2x.png │ │ │ │ ├── organization.png │ │ │ │ ├── organization32.png │ │ │ │ ├── organization32@2x.png │ │ │ │ ├── organization32_dark.png │ │ │ │ ├── organization32_dark@2x.png │ │ │ │ ├── organization@2x.png │ │ │ │ ├── organization_dark.png │ │ │ │ ├── organization_dark@2x.png │ │ │ │ ├── page.png │ │ │ │ ├── page32.png │ │ │ │ ├── page32@2x.png │ │ │ │ ├── page32_dark.png │ │ │ │ ├── page32_dark@2x.png │ │ │ │ ├── page@2x.png │ │ │ │ ├── page_dark.png │ │ │ │ ├── page_dark@2x.png │ │ │ │ ├── profile.png │ │ │ │ ├── profile32.png │ │ │ │ ├── profile32@2x.png │ │ │ │ ├── profile32_dark.png │ │ │ │ ├── profile32_dark@2x.png │ │ │ │ ├── profile@2x.png │ │ │ │ ├── profile_dark.png │ │ │ │ ├── profile_dark@2x.png │ │ │ │ ├── project.png │ │ │ │ ├── project@2x.png │ │ │ │ ├── project_dark.png │ │ │ │ ├── project_dark@2x.png │ │ │ │ ├── rest-api.png │ │ │ │ ├── rest-api@2x.png │ │ │ │ ├── rest-api_dark.png │ │ │ │ ├── rest-api_dark@2x.png │ │ │ │ ├── svg │ │ │ │ │ ├── accessControl.svg │ │ │ │ │ ├── accessControl32.svg │ │ │ │ │ ├── application.svg │ │ │ │ │ ├── bdm.svg │ │ │ │ │ ├── connector.svg │ │ │ │ │ ├── diagram.svg │ │ │ │ │ ├── documentation.svg │ │ │ │ │ ├── environment.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fragment.svg │ │ │ │ │ ├── organization.svg │ │ │ │ │ ├── page.svg │ │ │ │ │ ├── profile.svg │ │ │ │ │ ├── project.svg │ │ │ │ │ ├── rest-api.svg │ │ │ │ │ └── theme.svg │ │ │ │ ├── theme.png │ │ │ │ ├── theme@2x.png │ │ │ │ ├── uib.png │ │ │ │ ├── uib@2x.png │ │ │ │ ├── uib_dark.png │ │ │ │ ├── uib_dark@2x.png │ │ │ │ ├── widget.png │ │ │ │ ├── widget@2x.png │ │ │ │ ├── widget_dark.png │ │ │ │ └── widget_dark@2x.png │ │ │ ├── automatic_lifecycle.png │ │ │ ├── balance.png │ │ │ ├── bg-coolbar-repeat.png │ │ │ ├── checkboxes │ │ │ │ ├── checkbox_no.png │ │ │ │ ├── checkbox_no_disabled.png │ │ │ │ ├── checkbox_yes.png │ │ │ │ └── checkbox_yes_disabled.png │ │ │ ├── checkmark.png │ │ │ ├── checkmark@2x.png │ │ │ ├── class_obj.gif │ │ │ ├── clear.png │ │ │ ├── close-all.png │ │ │ ├── close.png │ │ │ ├── close_editor.png │ │ │ ├── close_view.gif │ │ │ ├── collapseall.png │ │ │ ├── configuration │ │ │ │ ├── configuration.png │ │ │ │ ├── datatypes.png │ │ │ │ ├── dependencies.png │ │ │ │ └── validator.png │ │ │ ├── connector.png │ │ │ ├── connectorCategories │ │ │ │ ├── connector.png │ │ │ │ ├── filter.png │ │ │ │ ├── group.png │ │ │ │ └── multiInstantiator.png │ │ │ ├── constant.png │ │ │ ├── contextualMenu │ │ │ │ └── Icon_tools.png │ │ │ ├── copy_clipboard.png │ │ │ ├── copy_clipboard@2x.png │ │ │ ├── copy_clipboard_dark.png │ │ │ ├── copy_clipboard_dark@2x.png │ │ │ ├── cursor │ │ │ │ ├── closed_hand.png │ │ │ │ └── open_hand.png │ │ │ ├── cut.png │ │ │ ├── decoration │ │ │ │ ├── add.png │ │ │ │ ├── add@2x.png │ │ │ │ ├── add_subelement.png │ │ │ │ ├── add_subelement@2x.png │ │ │ │ ├── connecteur.png │ │ │ │ ├── enveloppe-pleine.png │ │ │ │ ├── enveloppe-vide.png │ │ │ │ ├── link.png │ │ │ │ ├── locks-green.png │ │ │ │ ├── locks-red.png │ │ │ │ ├── loop.png │ │ │ │ ├── multiInstance.png │ │ │ │ ├── multiInstance_small.png │ │ │ │ ├── parallel_multiInstance.png │ │ │ │ ├── pause.png │ │ │ │ ├── plus.png │ │ │ │ ├── plus_loop.png │ │ │ │ ├── plus_multi.png │ │ │ │ ├── rewind.png │ │ │ │ ├── scriptTask.png │ │ │ │ ├── sequential_multiInstance.png │ │ │ │ ├── serviceTask.png │ │ │ │ ├── smartmode_co.gif │ │ │ │ ├── subProcError.png │ │ │ │ ├── subProcMessage.png │ │ │ │ ├── subProcSignal.png │ │ │ │ ├── subProcTimer.png │ │ │ │ ├── svg │ │ │ │ │ ├── connecteur.svgz │ │ │ │ │ ├── decoratorEvent.svgz │ │ │ │ │ ├── enveloppe-pleine.svgz │ │ │ │ │ ├── enveloppe-vide.svgz │ │ │ │ │ ├── loop.svgz │ │ │ │ │ ├── minus.svgz │ │ │ │ │ ├── multiInstance-sequential.svgz │ │ │ │ │ ├── multiInstance.svgz │ │ │ │ │ ├── pause.svgz │ │ │ │ │ ├── plus.svgz │ │ │ │ │ ├── plus_loop.svgz │ │ │ │ │ ├── plus_multi.svgz │ │ │ │ │ ├── plus_multi_sequential.svgz │ │ │ │ │ ├── rewind.svgz │ │ │ │ │ ├── scriptTask.svgz │ │ │ │ │ ├── serviceTask.svgz │ │ │ │ │ ├── subProcError.svgz │ │ │ │ │ ├── subProcMessage.svgz │ │ │ │ │ ├── subProcSignal.svgz │ │ │ │ │ ├── subProcTimer.svgz │ │ │ │ │ ├── task.svgz │ │ │ │ │ ├── tilda.svgz │ │ │ │ │ └── timer.svgz │ │ │ │ ├── task.png │ │ │ │ ├── tilda.png │ │ │ │ └── timer.png │ │ │ ├── defaultAvatar.png │ │ │ ├── delete.png │ │ │ ├── delete_icon.png │ │ │ ├── delete_icon@2x.png │ │ │ ├── delete_icon_dark.png │ │ │ ├── delete_icon_dark@2x.png │ │ │ ├── delete_icon_hot.png │ │ │ ├── delete_icon_hot@2x.png │ │ │ ├── delete_icon_hot_dark.png │ │ │ ├── delete_icon_hot_dark@2x.png │ │ │ ├── deploy.png │ │ │ ├── deploy@2x.png │ │ │ ├── deploy_dark.png │ │ │ ├── deploy_dark@2x.png │ │ │ ├── deploy_hot.png │ │ │ ├── deploy_hot@2x.png │ │ │ ├── deploy_hot_dark.png │ │ │ ├── deploy_hot_dark@2x.png │ │ │ ├── done.png │ │ │ ├── down.png │ │ │ ├── down@2x.png │ │ │ ├── down_dark.png │ │ │ ├── down_dark@2x.png │ │ │ ├── duplicate_16.png │ │ │ ├── duplicate_16_dark.png │ │ │ ├── edit_simple.png │ │ │ ├── edit_simple@2x.png │ │ │ ├── edit_simple_dark.png │ │ │ ├── edit_simple_dark@2x.png │ │ │ ├── edit_simple_hot.png │ │ │ ├── edit_simple_hot@2x.png │ │ │ ├── edit_simple_hot_dark.png │ │ │ ├── edit_simple_hot_dark@2x.png │ │ │ ├── editor │ │ │ │ ├── formDiagramWithGreyLock.png │ │ │ │ ├── formDiagramWithRedLock.png │ │ │ │ ├── processDiagrammeWithGreyLock.png │ │ │ │ └── processDiagrammeWithRedLock.png │ │ │ ├── editorback.png │ │ │ ├── empty_20.png │ │ │ ├── enveloppe.png │ │ │ ├── envvar_obj.gif │ │ │ ├── error.png │ │ │ ├── error@2x.png │ │ │ ├── error_decorator.gif │ │ │ ├── expandall.png │ │ │ ├── explore_16.png │ │ │ ├── explore_16@2x.png │ │ │ ├── explore_16_dark.png │ │ │ ├── explore_16_dark@2x.png │ │ │ ├── export.png │ │ │ ├── export@2x.png │ │ │ ├── export_dark.png │ │ │ ├── export_dark@2x.png │ │ │ ├── figures │ │ │ │ ├── ANDGateway.svgz │ │ │ │ ├── ANDGateway_hover.svgz │ │ │ │ ├── ANDGateway_selected.svgz │ │ │ │ ├── Activity.svgz │ │ │ │ ├── Activity_hover.svgz │ │ │ │ ├── Activity_selected.svgz │ │ │ │ ├── BoundaryMessageEvent.svgz │ │ │ │ ├── BoundaryMessageEvent_hover.svgz │ │ │ │ ├── BoundaryMessageEvent_selected.svgz │ │ │ │ ├── BoundarySignalEvent.svgz │ │ │ │ ├── BoundarySignalEvent_hover.svgz │ │ │ │ ├── BoundarySignalEvent_selected.svgz │ │ │ │ ├── BoundaryTimerEvent.svgz │ │ │ │ ├── BoundaryTimerEvent_hover.svgz │ │ │ │ ├── BoundaryTimerEvent_selected.svgz │ │ │ │ ├── CallActivity_selected.svgz │ │ │ │ ├── CatchLinkEvent.svgz │ │ │ │ ├── CatchLinkEvent_hover.svgz │ │ │ │ ├── CatchLinkEvent_selected.svgz │ │ │ │ ├── CatchSignalEvent.svgz │ │ │ │ ├── CollapsableSubprocess.svgz │ │ │ │ ├── CollapsableSubprocess_selected.svgz │ │ │ │ ├── ComplexGateway.svgz │ │ │ │ ├── ComplexGateway_selected.svgz │ │ │ │ ├── EndErrorEvent.svgz │ │ │ │ ├── EndErrorEvent_hover.svgz │ │ │ │ ├── EndErrorEvent_selected.svgz │ │ │ │ ├── EndEvent.svgz │ │ │ │ ├── EndEvent_hover.svgz │ │ │ │ ├── EndEvent_selected.svgz │ │ │ │ ├── EndMessageEvent.svgz │ │ │ │ ├── EndMessageEvent_hover.svgz │ │ │ │ ├── EndMessageEvent_selected.svgz │ │ │ │ ├── EndSignalEvent.svgz │ │ │ │ ├── EndSignalEvent_hover.svgz │ │ │ │ ├── EndSignalEvent_selected.svgz │ │ │ │ ├── EndTerminatedEvent.svgz │ │ │ │ ├── EndTerminatedEvent_hover.svgz │ │ │ │ ├── EndTerminatedEvent_selected.svgz │ │ │ │ ├── EventSubProcess.svgz │ │ │ │ ├── Event_hover.svgz │ │ │ │ ├── Event_selected.svgz │ │ │ │ ├── Gateway.svgz │ │ │ │ ├── GatewayEvent.svgz │ │ │ │ ├── GatewayEvent_selected.svgz │ │ │ │ ├── GatewayOr.svgz │ │ │ │ ├── GatewayOr_selected.svgz │ │ │ │ ├── Gateway_hover.svgz │ │ │ │ ├── Gateway_selected.svgz │ │ │ │ ├── GenericEvent.svgz │ │ │ │ ├── InclusiveGateway.svgz │ │ │ │ ├── InclusiveGateway_hover.svgz │ │ │ │ ├── InclusiveGateway_selected.svgz │ │ │ │ ├── IntermediateCatchErrorEvent.svgz │ │ │ │ ├── IntermediateCatchMessageEvent.svgz │ │ │ │ ├── IntermediateCatchMessageEvent_hover.svgz │ │ │ │ ├── IntermediateCatchMessageEvent_selected.svgz │ │ │ │ ├── IntermediateCatchSignalEvent_hover.svgz │ │ │ │ ├── IntermediateCatchSignalEvent_selected.svgz │ │ │ │ ├── IntermediateCatchTimerEvent.svgz │ │ │ │ ├── IntermediateCatchTimerEvent_hover.svgz │ │ │ │ ├── IntermediateCatchTimerEvent_selected.svgz │ │ │ │ ├── IntermediateErrorCatchEvent_hover.svgz │ │ │ │ ├── IntermediateErrorCatchEvent_selected.svgz │ │ │ │ ├── IntermediateEvent.svgz │ │ │ │ ├── IntermediateEvent_hover.svgz │ │ │ │ ├── IntermediateEvent_selected.svgz │ │ │ │ ├── IntermediateThrowMessageEvent.svgz │ │ │ │ ├── IntermediateThrowMessageEvent_hover.svgz │ │ │ │ ├── IntermediateThrowMessageEvent_selected.svgz │ │ │ │ ├── IntermediateThrowSignalEvent_hover.svgz │ │ │ │ ├── IntermediateThrowSignalEvent_selected.svgz │ │ │ │ ├── NonInterruptingBoundaryTimerEvent.svgz │ │ │ │ ├── NonInterruptingBoundaryTimerEvent_hover.svgz │ │ │ │ ├── NonInterruptingBoundaryTimerEvent_selected.svgz │ │ │ │ ├── ReceiveTask.svgz │ │ │ │ ├── ReceiveTask_hover.svgz │ │ │ │ ├── ReceiveTask_selected.svgz │ │ │ │ ├── ScriptTask.svgz │ │ │ │ ├── ScriptTask_hover.svgz │ │ │ │ ├── ScriptTask_selected.svgz │ │ │ │ ├── SendTask.svgz │ │ │ │ ├── SendTask_hover.svgz │ │ │ │ ├── SendTask_selected.svgz │ │ │ │ ├── ServiceTask.svgz │ │ │ │ ├── ServiceTask_hover.svgz │ │ │ │ ├── ServiceTask_selected.svgz │ │ │ │ ├── StartErrorEvent.svgz │ │ │ │ ├── StartErrorEvent_hover.svgz │ │ │ │ ├── StartErrorEvent_selected.svgz │ │ │ │ ├── StartEvent.svgz │ │ │ │ ├── StartEvent_hover.svgz │ │ │ │ ├── StartEvent_selected.svgz │ │ │ │ ├── StartMessageEvent.svgz │ │ │ │ ├── StartMessageEvent_hover.svgz │ │ │ │ ├── StartMessageEvent_selected.svgz │ │ │ │ ├── StartSignalEvent.svgz │ │ │ │ ├── StartSignalEvent_hover.svgz │ │ │ │ ├── StartSignalEvent_selected.svgz │ │ │ │ ├── StartTimerEvent.svgz │ │ │ │ ├── StartTimerEvent_hover.svgz │ │ │ │ ├── StartTimerEvent_selected.svgz │ │ │ │ ├── SubProcess.svgz │ │ │ │ ├── SubProcessEvent.svgz │ │ │ │ ├── SubProcessEvent_hover.svgz │ │ │ │ ├── SubProcessEvent_selected.svgz │ │ │ │ ├── SubProcess_hover.svgz │ │ │ │ ├── SubProcess_selected.svgz │ │ │ │ ├── Task.svgz │ │ │ │ ├── Task_hover.svgz │ │ │ │ ├── Task_selected.svgz │ │ │ │ ├── TextAnnotation.svgz │ │ │ │ ├── TextAnnotation_selected.svgz │ │ │ │ ├── ThrowLinkEvent.svgz │ │ │ │ ├── ThrowLinkEvent_hover.svgz │ │ │ │ ├── ThrowLinkEvent_selected.svgz │ │ │ │ ├── ThrowSignalEvent.svgz │ │ │ │ ├── XORGateway.svgz │ │ │ │ ├── XORGateway_hover.svgz │ │ │ │ ├── XORGateway_selected.svgz │ │ │ │ └── bpmn │ │ │ │ │ ├── README │ │ │ │ │ ├── cancelEnd.svgz │ │ │ │ │ ├── cancelIntermediate-transp.svgz │ │ │ │ │ ├── cancelIntermediate.svgz │ │ │ │ │ ├── cancelStart-transp.svgz │ │ │ │ │ ├── cancelStart.svgz │ │ │ │ │ ├── message2Start.svgz │ │ │ │ │ ├── message2end.svgz │ │ │ │ │ ├── messageEnd.svgz │ │ │ │ │ ├── messageStart.svgz │ │ │ │ │ ├── multipleEnd-transp.svgz │ │ │ │ │ ├── multipleEnd.svgz │ │ │ │ │ ├── multipleIntermediate-transp.svgz │ │ │ │ │ ├── multipleIntermediate.svgz │ │ │ │ │ ├── multipleStart-transp.svgz │ │ │ │ │ ├── multipleStart.svgz │ │ │ │ │ ├── terminateEnd-transp.svgz │ │ │ │ │ ├── terminateEnd.svgz │ │ │ │ │ ├── terminateIntermediate-transp.svgz │ │ │ │ │ ├── terminateIntermediate.svgz │ │ │ │ │ ├── terminateStart-transp.svgz │ │ │ │ │ ├── terminateStart.svgz │ │ │ │ │ ├── timerEnd-transp.svgz │ │ │ │ │ ├── timerEnd.svgz │ │ │ │ │ ├── timerIntermediate-transp.svgz │ │ │ │ │ ├── timerIntermediate.svgz │ │ │ │ │ ├── timerStart-transp.svgz │ │ │ │ │ └── timerStart.svgz │ │ │ ├── filenew.png │ │ │ ├── flags │ │ │ │ ├── ad.png │ │ │ │ ├── ae.png │ │ │ │ ├── af.png │ │ │ │ ├── ag.png │ │ │ │ ├── ai.png │ │ │ │ ├── al.png │ │ │ │ ├── am.png │ │ │ │ ├── an.png │ │ │ │ ├── ao.png │ │ │ │ ├── ar.png │ │ │ │ ├── as.png │ │ │ │ ├── at.png │ │ │ │ ├── au.png │ │ │ │ ├── aw.png │ │ │ │ ├── ax.png │ │ │ │ ├── az.png │ │ │ │ ├── ba.png │ │ │ │ ├── bb.png │ │ │ │ ├── bd.png │ │ │ │ ├── be.png │ │ │ │ ├── bf.png │ │ │ │ ├── bg.png │ │ │ │ ├── bh.png │ │ │ │ ├── bi.png │ │ │ │ ├── bj.png │ │ │ │ ├── bm.png │ │ │ │ ├── bn.png │ │ │ │ ├── bo.png │ │ │ │ ├── br.png │ │ │ │ ├── bs.png │ │ │ │ ├── bt.png │ │ │ │ ├── bv.png │ │ │ │ ├── bw.png │ │ │ │ ├── by.png │ │ │ │ ├── bz.png │ │ │ │ ├── ca.png │ │ │ │ ├── catalonia.png │ │ │ │ ├── cc.png │ │ │ │ ├── cd.png │ │ │ │ ├── cf.png │ │ │ │ ├── cg.png │ │ │ │ ├── ch.png │ │ │ │ ├── ci.png │ │ │ │ ├── ck.png │ │ │ │ ├── cl.png │ │ │ │ ├── cm.png │ │ │ │ ├── cn.png │ │ │ │ ├── co.png │ │ │ │ ├── cr.png │ │ │ │ ├── cs.png │ │ │ │ ├── cu.png │ │ │ │ ├── cv.png │ │ │ │ ├── cx.png │ │ │ │ ├── cy.png │ │ │ │ ├── cz.png │ │ │ │ ├── de.png │ │ │ │ ├── dj.png │ │ │ │ ├── dk.png │ │ │ │ ├── dm.png │ │ │ │ ├── do.png │ │ │ │ ├── dz.png │ │ │ │ ├── ec.png │ │ │ │ ├── ee.png │ │ │ │ ├── eg.png │ │ │ │ ├── eh.png │ │ │ │ ├── england.png │ │ │ │ ├── er.png │ │ │ │ ├── es.png │ │ │ │ ├── et.png │ │ │ │ ├── europeanunion.png │ │ │ │ ├── fam.png │ │ │ │ ├── fi.png │ │ │ │ ├── fj.png │ │ │ │ ├── fk.png │ │ │ │ ├── fm.png │ │ │ │ ├── fo.png │ │ │ │ ├── fr.png │ │ │ │ ├── ga.png │ │ │ │ ├── gb.png │ │ │ │ ├── gd.png │ │ │ │ ├── ge.png │ │ │ │ ├── gf.png │ │ │ │ ├── gh.png │ │ │ │ ├── gi.png │ │ │ │ ├── gl.png │ │ │ │ ├── gm.png │ │ │ │ ├── gn.png │ │ │ │ ├── gp.png │ │ │ │ ├── gq.png │ │ │ │ ├── gr.png │ │ │ │ ├── gs.png │ │ │ │ ├── gt.png │ │ │ │ ├── gu.png │ │ │ │ ├── gw.png │ │ │ │ ├── gy.png │ │ │ │ ├── hk.png │ │ │ │ ├── hm.png │ │ │ │ ├── hn.png │ │ │ │ ├── hr.png │ │ │ │ ├── ht.png │ │ │ │ ├── hu.png │ │ │ │ ├── id.png │ │ │ │ ├── ie.png │ │ │ │ ├── il.png │ │ │ │ ├── in.png │ │ │ │ ├── io.png │ │ │ │ ├── iq.png │ │ │ │ ├── ir.png │ │ │ │ ├── is.png │ │ │ │ ├── it.png │ │ │ │ ├── jm.png │ │ │ │ ├── jo.png │ │ │ │ ├── jp.png │ │ │ │ ├── ke.png │ │ │ │ ├── kg.png │ │ │ │ ├── kh.png │ │ │ │ ├── ki.png │ │ │ │ ├── km.png │ │ │ │ ├── kn.png │ │ │ │ ├── kp.png │ │ │ │ ├── kr.png │ │ │ │ ├── kw.png │ │ │ │ ├── ky.png │ │ │ │ ├── kz.png │ │ │ │ ├── la.png │ │ │ │ ├── lb.png │ │ │ │ ├── lc.png │ │ │ │ ├── li.png │ │ │ │ ├── lk.png │ │ │ │ ├── lr.png │ │ │ │ ├── ls.png │ │ │ │ ├── lt.png │ │ │ │ ├── lu.png │ │ │ │ ├── lv.png │ │ │ │ ├── ly.png │ │ │ │ ├── ma.png │ │ │ │ ├── mc.png │ │ │ │ ├── md.png │ │ │ │ ├── me.png │ │ │ │ ├── mg.png │ │ │ │ ├── mh.png │ │ │ │ ├── mk.png │ │ │ │ ├── ml.png │ │ │ │ ├── mm.png │ │ │ │ ├── mn.png │ │ │ │ ├── mo.png │ │ │ │ ├── mp.png │ │ │ │ ├── mq.png │ │ │ │ ├── mr.png │ │ │ │ ├── ms.png │ │ │ │ ├── mt.png │ │ │ │ ├── mu.png │ │ │ │ ├── mv.png │ │ │ │ ├── mw.png │ │ │ │ ├── mx.png │ │ │ │ ├── my.png │ │ │ │ ├── mz.png │ │ │ │ ├── na.png │ │ │ │ ├── nc.png │ │ │ │ ├── ne.png │ │ │ │ ├── nf.png │ │ │ │ ├── ng.png │ │ │ │ ├── ni.png │ │ │ │ ├── nl.png │ │ │ │ ├── no.png │ │ │ │ ├── np.png │ │ │ │ ├── nr.png │ │ │ │ ├── nu.png │ │ │ │ ├── nz.png │ │ │ │ ├── om.png │ │ │ │ ├── pa.png │ │ │ │ ├── pe.png │ │ │ │ ├── pf.png │ │ │ │ ├── pg.png │ │ │ │ ├── ph.png │ │ │ │ ├── pk.png │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── pn.png │ │ │ │ ├── pr.png │ │ │ │ ├── ps.png │ │ │ │ ├── pt.png │ │ │ │ ├── pw.png │ │ │ │ ├── py.png │ │ │ │ ├── qa.png │ │ │ │ ├── re.png │ │ │ │ ├── ro.png │ │ │ │ ├── rs.png │ │ │ │ ├── ru.png │ │ │ │ ├── rw.png │ │ │ │ ├── sa.png │ │ │ │ ├── sb.png │ │ │ │ ├── sc.png │ │ │ │ ├── scotland.png │ │ │ │ ├── sd.png │ │ │ │ ├── se.png │ │ │ │ ├── sg.png │ │ │ │ ├── sh.png │ │ │ │ ├── si.png │ │ │ │ ├── sj.png │ │ │ │ ├── sk.png │ │ │ │ ├── sl.png │ │ │ │ ├── sm.png │ │ │ │ ├── sn.png │ │ │ │ ├── so.png │ │ │ │ ├── sr.png │ │ │ │ ├── st.png │ │ │ │ ├── sv.png │ │ │ │ ├── sy.png │ │ │ │ ├── sz.png │ │ │ │ ├── tc.png │ │ │ │ ├── td.png │ │ │ │ ├── tf.png │ │ │ │ ├── tg.png │ │ │ │ ├── th.png │ │ │ │ ├── tj.png │ │ │ │ ├── tk.png │ │ │ │ ├── tl.png │ │ │ │ ├── tm.png │ │ │ │ ├── tn.png │ │ │ │ ├── to.png │ │ │ │ ├── tr.png │ │ │ │ ├── tt.png │ │ │ │ ├── tv.png │ │ │ │ ├── tw.png │ │ │ │ ├── tz.png │ │ │ │ ├── ua.png │ │ │ │ ├── ug.png │ │ │ │ ├── um.png │ │ │ │ ├── us.png │ │ │ │ ├── uy.png │ │ │ │ ├── uz.png │ │ │ │ ├── va.png │ │ │ │ ├── vc.png │ │ │ │ ├── ve.png │ │ │ │ ├── vg.png │ │ │ │ ├── vi.png │ │ │ │ ├── vn.png │ │ │ │ ├── vu.png │ │ │ │ ├── wales.png │ │ │ │ ├── wf.png │ │ │ │ ├── ws.png │ │ │ │ ├── ye.png │ │ │ │ ├── yt.png │ │ │ │ ├── za.png │ │ │ │ ├── zm.png │ │ │ │ └── zw.png │ │ │ ├── form.ico │ │ │ ├── form.png │ │ │ ├── formFields │ │ │ │ ├── blank.png │ │ │ │ ├── buttonBackground.svgz │ │ │ │ ├── checkBoxGroup.png │ │ │ │ ├── checkbox-group.svgz │ │ │ │ ├── checkbox.svgz │ │ │ │ ├── checkbox16.png │ │ │ │ ├── combo.png │ │ │ │ ├── combo.svgz │ │ │ │ ├── date.svgz │ │ │ │ ├── date16.png │ │ │ │ ├── duration.png │ │ │ │ ├── duration.svgz │ │ │ │ ├── dynamicTable.png │ │ │ │ ├── dynamicTable.svgz │ │ │ │ ├── file-date-text-textbox.svgz │ │ │ │ ├── file.svg │ │ │ │ ├── file.svgz │ │ │ │ ├── file16.png │ │ │ │ ├── hidden.svgz │ │ │ │ ├── hidden16.png │ │ │ │ ├── htmlwidget.png │ │ │ │ ├── htmlwidget.svgz │ │ │ │ ├── iframe.png │ │ │ │ ├── iframe.svgz │ │ │ │ ├── image.svgz │ │ │ │ ├── image16.png │ │ │ │ ├── label.png │ │ │ │ ├── label.svgz │ │ │ │ ├── list.svgz │ │ │ │ ├── list16.png │ │ │ │ ├── message.svgz │ │ │ │ ├── message16.png │ │ │ │ ├── message2.svgz │ │ │ │ ├── next-button.svgz │ │ │ │ ├── next.png │ │ │ │ ├── next_squared.png │ │ │ │ ├── okButton16.png │ │ │ │ ├── password.svg │ │ │ │ ├── password.svgz │ │ │ │ ├── password16.png │ │ │ │ ├── password_old.svg │ │ │ │ ├── previous-button.svgz │ │ │ │ ├── previous.png │ │ │ │ ├── radio-group.svgz │ │ │ │ ├── radio16.png │ │ │ │ ├── richtextarea.svg │ │ │ │ ├── richtextarea.svgz │ │ │ │ ├── richtextarea16.png │ │ │ │ ├── select.svg │ │ │ │ ├── select.svgz │ │ │ │ ├── select16.png │ │ │ │ ├── suggestbox.svgz │ │ │ │ ├── suggestbox16.png │ │ │ │ ├── table.svgz │ │ │ │ ├── table16.png │ │ │ │ ├── text-area.svgz │ │ │ │ ├── text-info.svgz │ │ │ │ ├── text16.png │ │ │ │ ├── textBox16.png │ │ │ │ ├── textInfo.svg │ │ │ │ ├── textInfo_old.svg │ │ │ │ ├── textarea.svg │ │ │ │ ├── textarea16.png │ │ │ │ ├── textbox.svgz │ │ │ │ └── widgets-group.png │ │ │ ├── forms │ │ │ │ ├── +-gris.png │ │ │ │ ├── +-noir.png │ │ │ │ ├── --gris.png │ │ │ │ ├── --noir.png │ │ │ │ ├── appearance │ │ │ │ │ ├── StrikeThrough.png │ │ │ │ │ ├── Underscore.png │ │ │ │ │ ├── align-center.png │ │ │ │ │ ├── align-left.png │ │ │ │ │ ├── align-right.png │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── headingBottom.gif │ │ │ │ │ ├── headingLeft.gif │ │ │ │ │ ├── headingRight.gif │ │ │ │ │ ├── headingTop.gif │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── justify.png │ │ │ │ │ └── smallcaps.png │ │ │ │ ├── arrow.png │ │ │ │ ├── arrowDown.png │ │ │ │ ├── arrowLeft.png │ │ │ │ ├── arrowRight.png │ │ │ │ ├── arrowTop.png │ │ │ │ ├── columnArrow.jpg │ │ │ │ ├── down.png │ │ │ │ ├── form16.png │ │ │ │ ├── formold.png │ │ │ │ ├── formold_disabled.png │ │ │ │ ├── formold_hover.png │ │ │ │ ├── formold_selected.png │ │ │ │ ├── greenPlus.png │ │ │ │ ├── greenPlus_disable.png │ │ │ │ ├── left.png │ │ │ │ ├── moins.png │ │ │ │ ├── plus.png │ │ │ │ ├── preview_rich_text_area.png │ │ │ │ ├── redMinus.png │ │ │ │ ├── redMinus_disabled.png │ │ │ │ ├── right.png │ │ │ │ ├── rowArrow.jpg │ │ │ │ └── up.png │ │ │ ├── full.png │ │ │ ├── green_check_20.png │ │ │ ├── icon-arrow-down.png │ │ │ ├── icon-arrow-right.png │ │ │ ├── icones.png │ │ │ ├── identity │ │ │ │ ├── group.png │ │ │ │ ├── group@2x.png │ │ │ │ ├── group_dark.png │ │ │ │ ├── group_dark@2x.png │ │ │ │ ├── role.png │ │ │ │ ├── role@2x.png │ │ │ │ ├── role_dark.png │ │ │ │ ├── role_dark@2x.png │ │ │ │ ├── user.png │ │ │ │ ├── user@2x.png │ │ │ │ ├── user_dark.png │ │ │ │ └── user_dark@2x.png │ │ │ ├── import.png │ │ │ ├── import@2x.png │ │ │ ├── import_dark.png │ │ │ ├── import_dark@2x.png │ │ │ ├── info_warning.png │ │ │ ├── info_warning@2x.png │ │ │ ├── int_obj.gif │ │ │ ├── jar.gif │ │ │ ├── key.png │ │ │ ├── key@2x.png │ │ │ ├── load_conf.png │ │ │ ├── looknfeel │ │ │ │ ├── addFile.png │ │ │ │ ├── addFolder.png │ │ │ │ ├── addSection.png │ │ │ │ ├── edit.png │ │ │ │ ├── looknfeel.png │ │ │ │ ├── noPreview.jpg │ │ │ │ ├── removeSection.png │ │ │ │ └── section.png │ │ │ ├── menuIcons │ │ │ │ ├── Database.png │ │ │ │ ├── Messaging.png │ │ │ │ ├── Other.png │ │ │ │ ├── Other_hover.png │ │ │ │ ├── Other_selected.png │ │ │ │ ├── bonita.png │ │ │ │ ├── bonita_disabled.png │ │ │ │ ├── bonita_hover.png │ │ │ │ ├── bonita_selected.png │ │ │ │ ├── book.png │ │ │ │ ├── close.png │ │ │ │ ├── copy.png │ │ │ │ ├── copy_disabled.png │ │ │ │ ├── copy_hover.png │ │ │ │ ├── copy_selected.png │ │ │ │ ├── createRestorePoint.gif │ │ │ │ ├── db.png │ │ │ │ ├── db_disabled.png │ │ │ │ ├── db_hover.png │ │ │ │ ├── db_selected.png │ │ │ │ ├── details.png │ │ │ │ ├── details_disabled.png │ │ │ │ ├── edit.png │ │ │ │ ├── edit@2x.png │ │ │ │ ├── edit_dark.png │ │ │ │ ├── edit_dark@2x.png │ │ │ │ ├── edit_selected.png │ │ │ │ ├── exit.png │ │ │ │ ├── export.png │ │ │ │ ├── export_disabled.png │ │ │ │ ├── export_hover.png │ │ │ │ ├── export_selected.png │ │ │ │ ├── groovy.png │ │ │ │ ├── help.png │ │ │ │ ├── help_disabled.png │ │ │ │ ├── help_hover.png │ │ │ │ ├── help_selected.png │ │ │ │ ├── import.png │ │ │ │ ├── import_disabled.png │ │ │ │ ├── import_hover.png │ │ │ │ ├── import_selected.png │ │ │ │ ├── kpi.png │ │ │ │ ├── multi-instantiation-instantiator.gif │ │ │ │ ├── multi-instantiation-join.gif │ │ │ │ ├── new.png │ │ │ │ ├── new_disabled.png │ │ │ │ ├── new_hover.png │ │ │ │ ├── new_selected.png │ │ │ │ ├── open.png │ │ │ │ ├── openUserExperience.png │ │ │ │ ├── openUserExperience_disabled.png │ │ │ │ ├── openUserExperience_selected.png │ │ │ │ ├── open_disabled.png │ │ │ │ ├── open_hover.png │ │ │ │ ├── open_selected.png │ │ │ │ ├── outline.png │ │ │ │ ├── outline_disabled.png │ │ │ │ ├── outline_hover.png │ │ │ │ ├── outline_selected.png │ │ │ │ ├── paste.png │ │ │ │ ├── paste_disabled.png │ │ │ │ ├── paste_hover.png │ │ │ │ ├── paste_selected.png │ │ │ │ ├── print.png │ │ │ │ ├── print_disabled.png │ │ │ │ ├── print_hover.png │ │ │ │ ├── print_selected.png │ │ │ │ ├── prise.png │ │ │ │ ├── prise_hover.png │ │ │ │ ├── prise_selected.png │ │ │ │ ├── process.gif │ │ │ │ ├── process.png │ │ │ │ ├── process_hover.png │ │ │ │ ├── process_selected.png │ │ │ │ ├── reset.png │ │ │ │ ├── run.png │ │ │ │ ├── run_disabled.png │ │ │ │ ├── run_hover.png │ │ │ │ ├── run_selected.png │ │ │ │ ├── save-as-image.png │ │ │ │ ├── save-as.png │ │ │ │ ├── save.png │ │ │ │ ├── save_disabled.png │ │ │ │ ├── save_hover.png │ │ │ │ ├── save_selected.png │ │ │ │ ├── widgets-edit.png │ │ │ │ └── widgets.png │ │ │ ├── newcoolbar.png │ │ │ ├── notification_error.png │ │ │ ├── notification_error@2x.png │ │ │ ├── notification_error_dark.png │ │ │ ├── notification_error_dark@2x.png │ │ │ ├── notification_info.png │ │ │ ├── notification_info@2x.png │ │ │ ├── notification_info_dark.png │ │ │ ├── notification_info_dark@2x.png │ │ │ ├── notification_warning.png │ │ │ ├── notification_warning@2x.png │ │ │ ├── notification_warning_dark.png │ │ │ ├── notification_warning_dark@2x.png │ │ │ ├── palette │ │ │ │ ├── SpacingHorizontal_16.png │ │ │ │ ├── SpacingHorizontal_24.png │ │ │ │ ├── SpacingVertical_16.png │ │ │ │ ├── SpacingVertical_24.png │ │ │ │ ├── align-horizontal.png │ │ │ │ ├── align-vertical.png │ │ │ │ ├── aligncenter.gif │ │ │ │ └── alignmid.gif │ │ │ ├── param_icon.gif │ │ │ ├── preferences │ │ │ │ ├── advanced.png │ │ │ │ ├── advanced_disabled.png │ │ │ │ ├── appearance.png │ │ │ │ ├── appearance_disabled.png │ │ │ │ ├── browser.png │ │ │ │ ├── browser_disabled.png │ │ │ │ ├── connector.gif │ │ │ │ ├── database.png │ │ │ │ ├── database_disabled.png │ │ │ │ ├── deployment.png │ │ │ │ ├── deployment_disabled.png │ │ │ │ ├── eclipse.png │ │ │ │ ├── eclipse_disabled.png │ │ │ │ ├── extension.png │ │ │ │ ├── extension@2x.png │ │ │ │ ├── java.png │ │ │ │ ├── java_disabled.png │ │ │ │ ├── language.png │ │ │ │ ├── language_disabled.png │ │ │ │ ├── legacy6x.png │ │ │ │ ├── legacy6x_disabled.png │ │ │ │ ├── maven.png │ │ │ │ ├── maven@2x.png │ │ │ │ ├── mode.png │ │ │ │ ├── mode_disabled.png │ │ │ │ ├── profile │ │ │ │ │ ├── user_activate.png │ │ │ │ │ ├── user_add.png │ │ │ │ │ ├── user_delete.png │ │ │ │ │ └── user_edit.png │ │ │ │ ├── proxy.png │ │ │ │ ├── proxy_disabled.png │ │ │ │ ├── remote.png │ │ │ │ ├── remote_disabled.png │ │ │ │ ├── userXP.png │ │ │ │ ├── userXP_disabled.png │ │ │ │ ├── userprofile.png │ │ │ │ ├── userprofile_disabled.png │ │ │ │ ├── validation.png │ │ │ │ ├── validation_disabled.png │ │ │ │ ├── web.png │ │ │ │ └── web_disabled.png │ │ │ ├── problem.png │ │ │ ├── problem@2x.png │ │ │ ├── problem_small.png │ │ │ ├── problem_small@2x.png │ │ │ ├── process.png │ │ │ ├── process_lifecycle.png │ │ │ ├── projectExtensions │ │ │ │ ├── actorfilterDefaultIcon.png │ │ │ │ ├── actorfilterDefaultIcon@2x.png │ │ │ │ ├── actorfilterDefaultIcon_dark.png │ │ │ │ ├── actorfilterDefaultIcon_dark@2x.png │ │ │ │ ├── add.png │ │ │ │ ├── add@2x.png │ │ │ │ ├── add_dark.png │ │ │ │ ├── add_dark@2x.png │ │ │ │ ├── add_hot.png │ │ │ │ ├── add_hot@2x.png │ │ │ │ ├── add_hot_dark.png │ │ │ │ ├── add_hot_dark@2x.png │ │ │ │ ├── back.png │ │ │ │ ├── back@2x.png │ │ │ │ ├── back_dark.png │ │ │ │ ├── back_dark@2x.png │ │ │ │ ├── back_hot.png │ │ │ │ ├── back_hot@2x.png │ │ │ │ ├── back_hot_dark.png │ │ │ │ ├── back_hot_dark@2x.png │ │ │ │ ├── connectorDefaultIcon.png │ │ │ │ ├── connectorDefaultIcon@2x.png │ │ │ │ ├── connectorDefaultIcon_dark.png │ │ │ │ ├── connectorDefaultIcon_dark@2x.png │ │ │ │ ├── dashboard.png │ │ │ │ ├── dashboard32.png │ │ │ │ ├── dashboard32@2x.png │ │ │ │ ├── dashboard32_dark.png │ │ │ │ ├── dashboard32_dark@2x.png │ │ │ │ ├── dashboard32_hot.png │ │ │ │ ├── dashboard32_hot@2x.png │ │ │ │ ├── dashboard32_hot_dark.png │ │ │ │ ├── dashboard32_hot_dark@2x.png │ │ │ │ ├── dashboard@2x.png │ │ │ │ ├── dashboard_dark.png │ │ │ │ ├── dashboard_dark@2x.png │ │ │ │ ├── details.png │ │ │ │ ├── details@2x.png │ │ │ │ ├── details_dark.png │ │ │ │ ├── details_dark@2x.png │ │ │ │ ├── details_hot.png │ │ │ │ ├── details_hot@2x.png │ │ │ │ ├── details_hot_dark.png │ │ │ │ ├── details_hot_dark@2x.png │ │ │ │ ├── edit.png │ │ │ │ ├── edit@2x.png │ │ │ │ ├── edit_dark.png │ │ │ │ ├── edit_dark@2x.png │ │ │ │ ├── edit_hot.png │ │ │ │ ├── edit_hot@2x.png │ │ │ │ ├── edit_hot_dark.png │ │ │ │ ├── edit_hot_dark@2x.png │ │ │ │ ├── extensions.png │ │ │ │ ├── extensions32.png │ │ │ │ ├── extensions32@2x.png │ │ │ │ ├── extensions32_dark.png │ │ │ │ ├── extensions32_dark@2x.png │ │ │ │ ├── extensions32_hot.png │ │ │ │ ├── extensions32_hot@2x.png │ │ │ │ ├── extensions32_hot_dark.png │ │ │ │ ├── extensions32_hot_dark@2x.png │ │ │ │ ├── extensions@2x.png │ │ │ │ ├── extensions_dark.png │ │ │ │ ├── extensions_dark@2x.png │ │ │ │ ├── find_usages.png │ │ │ │ ├── find_usages@2x.png │ │ │ │ ├── find_usages_dark.png │ │ │ │ ├── find_usages_dark@2x.png │ │ │ │ ├── find_usages_hot.png │ │ │ │ ├── find_usages_hot@2x.png │ │ │ │ ├── find_usages_hot_dark.png │ │ │ │ ├── find_usages_hot_dark@2x.png │ │ │ │ ├── import_32.png │ │ │ │ ├── import_32@2x.png │ │ │ │ ├── import_32_dark.png │ │ │ │ ├── import_32_dark@2x.png │ │ │ │ ├── import_32_hot.png │ │ │ │ ├── import_32_hot@2x.png │ │ │ │ ├── import_32_hot_dark.png │ │ │ │ ├── import_32_hot_dark@2x.png │ │ │ │ ├── import_64.png │ │ │ │ ├── import_64@2x.png │ │ │ │ ├── import_64_dark.png │ │ │ │ ├── import_64_dark@2x.png │ │ │ │ ├── import_64_hot.png │ │ │ │ ├── import_64_hot@2x.png │ │ │ │ ├── import_64_hot_dark.png │ │ │ │ ├── import_64_hot_dark@2x.png │ │ │ │ ├── local.png │ │ │ │ ├── local@2x.png │ │ │ │ ├── marketplace.png │ │ │ │ ├── marketplace@2x.png │ │ │ │ ├── open.png │ │ │ │ ├── open32.png │ │ │ │ ├── open32@2x.png │ │ │ │ ├── open32_dark.png │ │ │ │ ├── open32_dark@2x.png │ │ │ │ ├── open32_hot.png │ │ │ │ ├── open32_hot@2x.png │ │ │ │ ├── open32_hot_dark.png │ │ │ │ ├── open32_hot_dark@2x.png │ │ │ │ ├── open@2x.png │ │ │ │ ├── open_dark.png │ │ │ │ ├── open_dark@2x.png │ │ │ │ ├── open_hot.png │ │ │ │ ├── open_hot@2x.png │ │ │ │ ├── open_hot_dark.png │ │ │ │ ├── open_hot_dark@2x.png │ │ │ │ ├── open_marketplace.png │ │ │ │ ├── open_marketplace@2x.png │ │ │ │ ├── open_marketplace_64.png │ │ │ │ ├── open_marketplace_64@2x.png │ │ │ │ ├── open_marketplace_64_dark.png │ │ │ │ ├── open_marketplace_64_dark@2x.png │ │ │ │ ├── open_marketplace_64_hot.png │ │ │ │ ├── open_marketplace_64_hot@2x.png │ │ │ │ ├── open_marketplace_64_hot_dark.png │ │ │ │ ├── open_marketplace_64_hot_dark@2x.png │ │ │ │ ├── open_marketplace_dark.png │ │ │ │ ├── open_marketplace_dark@2x.png │ │ │ │ ├── open_marketplace_hot.png │ │ │ │ ├── open_marketplace_hot@2x.png │ │ │ │ ├── open_marketplace_hot_dark.png │ │ │ │ ├── open_marketplace_hot_dark@2x.png │ │ │ │ ├── page.png │ │ │ │ ├── page@2x.png │ │ │ │ ├── page_dark.png │ │ │ │ ├── page_dark@2x.png │ │ │ │ ├── refresh.png │ │ │ │ ├── refresh@2x.png │ │ │ │ ├── refresh_dark.png │ │ │ │ ├── refresh_dark@2x.png │ │ │ │ ├── refresh_hot.png │ │ │ │ ├── refresh_hot@2x.png │ │ │ │ ├── refresh_hot_dark.png │ │ │ │ ├── refresh_hot_dark@2x.png │ │ │ │ ├── remote.png │ │ │ │ ├── remote@2x.png │ │ │ │ ├── rest_api.png │ │ │ │ ├── rest_api@2x.png │ │ │ │ ├── rest_api_dark.png │ │ │ │ ├── rest_api_dark@2x.png │ │ │ │ ├── theme.png │ │ │ │ ├── theme@2x.png │ │ │ │ ├── update.png │ │ │ │ ├── update@2x.png │ │ │ │ ├── update_dark.png │ │ │ │ ├── update_dark@2x.png │ │ │ │ ├── update_hot.png │ │ │ │ ├── update_hot@2x.png │ │ │ │ ├── update_hot_dark.png │ │ │ │ └── update_hot_dark@2x.png │ │ │ ├── red_down.gif │ │ │ ├── resize.gif │ │ │ ├── resize_E.gif │ │ │ ├── resize_N.gif │ │ │ ├── resize_NE.gif │ │ │ ├── resize_NW.gif │ │ │ ├── resize_S.gif │ │ │ ├── resize_SE.gif │ │ │ ├── resize_SW.gif │ │ │ ├── resize_S_dark.gif │ │ │ ├── resize_W.gif │ │ │ ├── restore.png │ │ │ ├── restore@2x.png │ │ │ ├── restore_dark.png │ │ │ ├── restore_dark@2x.png │ │ │ ├── run.png │ │ │ ├── save_conf.png │ │ │ ├── simple.png │ │ │ ├── skip.png │ │ │ ├── swap.png │ │ │ ├── switch.png │ │ │ ├── switch@2x.png │ │ │ ├── switch_dark.png │ │ │ ├── switch_dark@2x.png │ │ │ ├── task_group.png │ │ │ ├── test.png │ │ │ ├── transparent_height_30.png │ │ │ ├── transparent_height_30x16.png │ │ │ ├── up.png │ │ │ ├── up@2x.png │ │ │ ├── up_dark.png │ │ │ ├── up_dark@2x.png │ │ │ ├── url_attribute.gif │ │ │ ├── validate.png │ │ │ ├── validate@2x.png │ │ │ ├── validate_dark.png │ │ │ ├── validate_dark@2x.png │ │ │ ├── view_source.png │ │ │ ├── view_source@2x.png │ │ │ ├── view_source_dark.png │ │ │ ├── view_source_dark@2x.png │ │ │ ├── view_source_hot.png │ │ │ ├── view_source_hot@2x.png │ │ │ ├── view_source_hot_dark.png │ │ │ ├── view_source_hot_dark@2x.png │ │ │ ├── viewcoolbar.png │ │ │ ├── wizban │ │ │ │ ├── profile_wizard.png │ │ │ │ ├── share_wizban.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizardDark.png │ │ │ ├── xml.png │ │ │ ├── xml3dots.png │ │ │ ├── xmlAttribute.png │ │ │ └── xmlElement.png │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── pics │ │ │ ├── Pics.java │ │ │ └── PicsConstants.java │ ├── org.bonitasoft.studio.preferences.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── preferences │ │ │ ├── LocalUtilTest.java │ │ │ ├── PreferenceInitializerTest.java │ │ │ ├── dialog │ │ │ └── BonitaPreferenceDialogTest.java │ │ │ └── pages │ │ │ ├── AbstractBonitaPreferencePageTest.java │ │ │ ├── ConfigurationUpdaterTest.java │ │ │ └── config.ini │ ├── org.bonitasoft.studio.preferences │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── css │ │ │ ├── dark_globalstyle.css │ │ │ ├── dark_linux.css │ │ │ ├── dark_mac.css │ │ │ ├── dark_preferencestyle.css │ │ │ ├── dark_windows.css │ │ │ ├── light_globalstyle.css │ │ │ ├── light_linux.css │ │ │ ├── light_mac.css │ │ │ └── light_windows.css │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ ├── preferenceFieldEditorContribution.exsd │ │ │ └── preferenceInitializerExtension.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── preferences │ │ │ ├── BonitaCoolBarPreferenceConstant.java │ │ │ ├── BonitaPreferenceConstants.java │ │ │ ├── BonitaStudioPreferencesPlugin.java │ │ │ ├── BonitaThemeConstants.java │ │ │ ├── LocaleUtil.java │ │ │ ├── PreferenceInitializer.java │ │ │ ├── PreferenceUtil.java │ │ │ ├── ShowBonitaPreferenceHandler.java │ │ │ ├── browser │ │ │ └── OpenBrowserOperation.java │ │ │ ├── dialog │ │ │ └── BonitaPreferenceDialog.java │ │ │ ├── extension │ │ │ ├── IPreferenceFieldEditorContribution.java │ │ │ └── IPreferenceInitializerExtension.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── manager │ │ │ └── ActivityPropertyTester.java │ │ │ ├── pages │ │ │ ├── AbstractBonitaPreferencePage.java │ │ │ ├── BonitaAdvancedPreferencePage.java │ │ │ ├── BonitaAppearancePreferencePage.java │ │ │ ├── BonitaDatabasePreferencePage.java │ │ │ ├── BonitaLanguagePreferencePage.java │ │ │ ├── ConfigurationUpdater.java │ │ │ ├── CustomProxyPreferencePage.java │ │ │ ├── ParentBPMPreferencePage.java │ │ │ └── PasswordFieldEditor.java │ │ │ └── problemView.xml │ ├── org.bonitasoft.studio.properties.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── properties │ │ │ └── sections │ │ │ ├── ExpressionLengthValidatorTest.java │ │ │ ├── callActivity │ │ │ └── InputDataMappingContentProviderTest.java │ │ │ ├── general │ │ │ └── ProcessElementNameContributionTest.java │ │ │ ├── index │ │ │ └── IndexSectionTest.java │ │ │ └── iteration │ │ │ ├── CompletionConditionFilterTest.java │ │ │ └── OnlyProcessDataViewerFilterTest.java │ ├── org.bonitasoft.studio.properties │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── SearchIndex.gif │ │ │ └── iterator.gif │ │ ├── lib │ │ │ └── quartz-all-1.6.5.jar │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ └── org.bonitasoft.studio.properties.widget.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── properties │ │ │ ├── Activator.java │ │ │ ├── filters │ │ │ ├── ActivityFilter.java │ │ │ ├── ActivityWithoutReceiveAndSendTask.java │ │ │ ├── ActorsSectionForLaneOrTaskWithoutLaneFilter.java │ │ │ ├── ActorsSectionForTaskInLaneFilter.java │ │ │ ├── CatchMessageEventCorrelationFilter.java │ │ │ ├── CatchMessageEventFilter.java │ │ │ ├── ConfirmationMessageFilter.java │ │ │ ├── ConnectableElementFilter.java │ │ │ ├── ConnectableElementWithoutSendTaskAndSubProcessEvent.java │ │ │ ├── DependencySectionFilter.java │ │ │ ├── DiagramFilter.java │ │ │ ├── ElementExceptContainersFilter.java │ │ │ ├── ElementFilter.java │ │ │ ├── ExclusiveGatewayFilter.java │ │ │ ├── FillColorSectionFilter.java │ │ │ ├── FlowElementFilter.java │ │ │ ├── FontSectionFilter.java │ │ │ ├── GroupsSectionFilter.java │ │ │ ├── LaneFilter.java │ │ │ ├── LinkEventFilter.java │ │ │ ├── LookNFeelFilter.java │ │ │ ├── MessageFlowFilter.java │ │ │ ├── NodeFilter.java │ │ │ ├── OperationContainerFilter.java │ │ │ ├── PageFlowAndLaneFilter.java │ │ │ ├── PageFlowFilter.java │ │ │ ├── PoolFilter.java │ │ │ ├── PoolOrLaneFilter.java │ │ │ ├── ProcessPageFlowAndLaneFilter.java │ │ │ ├── RulerGridFilter.java │ │ │ ├── SubProcessFilter.java │ │ │ ├── TaskFilter.java │ │ │ ├── ThrowMessageEventFilter.java │ │ │ ├── ThrowSignalEventFilter.java │ │ │ ├── TimerEventFilter.java │ │ │ ├── UserXPTabFilter.java │ │ │ └── VisibilitySectionFilter.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── operation │ │ │ └── RenameDiagramOperation.java │ │ │ └── sections │ │ │ ├── LabelSection.java │ │ │ ├── PropertySectionUtil.java │ │ │ ├── TextPropertySection.java │ │ │ ├── appearance │ │ │ ├── AutomaticOrManualTransitionContribution.java │ │ │ ├── BonitaRulerGridPropertySection.java │ │ │ ├── ColorAndFontPropertySection.java │ │ │ ├── CustomColorPalettePopup.java │ │ │ ├── ForkedColorsAndFontsPropertySection.java │ │ │ ├── ShowLabelContribution.java │ │ │ ├── StyledObjectContentProvider.java │ │ │ └── VisibiltyExtensibleGridPropertySection.java │ │ │ ├── callActivity │ │ │ ├── CallActivityHelper.java │ │ │ ├── CallActivityMapper.java │ │ │ ├── CallActivitySection.java │ │ │ ├── CallActivitySelectionProvider.java │ │ │ ├── FetchContractOperation.java │ │ │ ├── InputDataMappingContentProvider.java │ │ │ ├── InputParametersMappingSection.java │ │ │ ├── NoContractDefinedException.java │ │ │ ├── NoProcessToCallDefined.java │ │ │ ├── OutputParametersMappingSection.java │ │ │ └── ProcessNotFoundException.java │ │ │ ├── catchmessage │ │ │ ├── ActionExpressionNatureProvider.java │ │ │ ├── CatchMessageContentEventSection.java │ │ │ ├── CatchMessageEventCorrelationSection.java │ │ │ ├── CorrelationIdNatureProvider.java │ │ │ └── MessageContentExpressionValidator.java │ │ │ ├── diagram │ │ │ └── DiagramSection.java │ │ │ ├── general │ │ │ ├── DescriptionGridPropertySectionContribution.java │ │ │ ├── ExpressionNotEmptyValidator.java │ │ │ ├── GeneralExtensibleGridPropertySection.java │ │ │ ├── MessageFlowContribution.java │ │ │ ├── PoolGeneralPropertySection.java │ │ │ ├── ProcessElementNameContribution.java │ │ │ ├── ProcessNamesExpressionNatureProvider.java │ │ │ ├── ProcessVersionsExpressionNatureProvider.java │ │ │ ├── TextAnnotationTextPropertySectionContribution.java │ │ │ ├── TransitionConditionContribution.java │ │ │ ├── VersionGridPropertySectionContribution.java │ │ │ ├── activities │ │ │ │ └── ActivityTypeSelectionGridPropertySectionContribution.java │ │ │ ├── events │ │ │ │ ├── ErrorEventSectionContribution.java │ │ │ │ ├── MessageEventTypeSelectionGridPropertySectionContribution.java │ │ │ │ ├── SignalEventEventSelectionContribution.java │ │ │ │ └── WrappingValidator.java │ │ │ ├── gateway │ │ │ │ └── GatewayTypeSelectionGridPropertySectionContribution.java │ │ │ ├── link │ │ │ │ ├── CatchLinkEventSectionContribution.java │ │ │ │ ├── LinkLabelProvider.java │ │ │ │ ├── LinkTypeSelectionSectionContribution.java │ │ │ │ └── ThrowLinkEventSectionContribution.java │ │ │ └── task │ │ │ │ ├── PriorityLabelProvider.java │ │ │ │ └── TaskPriorityPropertySection.java │ │ │ ├── index │ │ │ ├── IndexFilter.java │ │ │ ├── IndexSection.java │ │ │ ├── RefactorSearchIndexOperation.java │ │ │ ├── RemoveSearchReferencesOperation.java │ │ │ ├── SearchIndexExpressionProvider.java │ │ │ ├── SearchIndexNameUnicityValidator.java │ │ │ └── SearchIndexRefactorPair.java │ │ │ ├── iteration │ │ │ ├── CompletionConditionFilter.java │ │ │ ├── DataViewerSorter.java │ │ │ ├── IterationPropertySection.java │ │ │ ├── IteratorRefactorOperationFactory.java │ │ │ ├── ListDataFilter.java │ │ │ ├── MultiInstantiableAdaptableSelectionProvider.java │ │ │ ├── ObservableListContentProviderWithProposalListeners.java │ │ │ ├── ObservableListContentProviderWithProposalListenersForActivity.java │ │ │ ├── ObservableListContentProviderWithProposalListenersForPool.java │ │ │ ├── OnlyProcessDataViewerFilter.java │ │ │ └── RecursiveControlEnablement.java │ │ │ ├── lane │ │ │ ├── LaneDescriptionSectionContribution.java │ │ │ ├── LaneNameSectionContribution.java │ │ │ └── LaneSection.java │ │ │ ├── message │ │ │ ├── CatchEventEventSelectionContribution.java │ │ │ ├── EventLabelProvider.java │ │ │ ├── MessageFlowFactory.java │ │ │ ├── ThrowEventSection.java │ │ │ ├── commands │ │ │ │ ├── AbstractMessageCommand.java │ │ │ │ ├── AddMessageCommand.java │ │ │ │ ├── DeleteMessageCommand.java │ │ │ │ └── UpdateMessageCommand.java │ │ │ └── wizards │ │ │ │ ├── CatchMessageEventNamesExpressionNatureProvider.java │ │ │ │ ├── CreateTargetEventDialog.java │ │ │ │ ├── MessageEventWizardPage.java │ │ │ │ ├── ProcessNamesExpressionNatureProviderForMessage.java │ │ │ │ └── UpdateMessageEventWizard.java │ │ │ ├── operation │ │ │ ├── OperationContainerSelectionProvider.java │ │ │ └── OperationsPropertySection.java │ │ │ ├── timer │ │ │ ├── TimerEventConditionContribution.java │ │ │ ├── cron │ │ │ │ ├── CronEditor.java │ │ │ │ ├── CronExpression.java │ │ │ │ ├── DayInMonthValidator.java │ │ │ │ ├── FrequencyValidator.java │ │ │ │ └── MonthInYearValidator.java │ │ │ └── wizard │ │ │ │ ├── EditTimerConditionWizard.java │ │ │ │ └── TimerConditionWizardPage.java │ │ │ ├── transitionordering │ │ │ └── TransitionOrderingPropertySection.java │ │ │ └── userxp │ │ │ ├── DynamicDescriptionPropertySectionContribution.java │ │ │ ├── DynamicLabelPropertySectionContribution.java │ │ │ ├── ExpectedDurationPropertySectionContribution.java │ │ │ ├── ExpressionLengthValidator.java │ │ │ ├── StepSummarySectionContribution.java │ │ │ ├── TaskSelectionProvider.java │ │ │ └── UserXPSection.java │ ├── org.bonitasoft.studio.refactoring.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── refactoring │ │ │ └── core │ │ │ ├── DependencyFeatureNameResolverTest.java │ │ │ ├── RefactorDataOperationTest.java │ │ │ └── script │ │ │ ├── ConditionExpressionScriptContrainerTest.java │ │ │ ├── GroovyExpressionScriptContrainerTest.java │ │ │ └── TextExpressionScriptContainerTest.java │ ├── org.bonitasoft.studio.refactoring │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── refactoring │ │ │ ├── RefactoringPlugin.java │ │ │ ├── core │ │ │ ├── AbstractRefactorOperation.java │ │ │ ├── DataRefactorPair.java │ │ │ ├── DependencyFeatureNameResolver.java │ │ │ ├── ProcessVariableRenamer.java │ │ │ ├── RefactorDataOperation.java │ │ │ ├── RefactorPair.java │ │ │ ├── RefactoringOperationType.java │ │ │ ├── ScriptRefactoringAction.java │ │ │ ├── emf │ │ │ │ ├── DetailObservableValueWithRefactor.java │ │ │ │ ├── EMFEditWithRefactorObservables.java │ │ │ │ ├── EditingDomainEObjectObservableValueWithRefactoring.java │ │ │ │ ├── IRefactorOperationFactory.java │ │ │ │ └── ObservableValueWithRefactor.java │ │ │ └── script │ │ │ │ ├── ConditionExpressionScriptContrainer.java │ │ │ │ ├── ExpressionScriptContrainer.java │ │ │ │ ├── GroovyExpressionScriptContrainer.java │ │ │ │ ├── GroovyScriptRefactoringOperation.java │ │ │ │ ├── GroovyScriptRefactoringOperationFactory.java │ │ │ │ ├── IScriptRefactoringOperation.java │ │ │ │ ├── IScriptRefactoringOperationFactory.java │ │ │ │ ├── ReferenceDiff.java │ │ │ │ ├── ScriptContainer.java │ │ │ │ └── TextExpressionScriptContainer.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ └── ui │ │ │ ├── BonitaCompareEditorInput.java │ │ │ ├── BonitaScriptRefactoringContentProvider.java │ │ │ ├── CompareScript.java │ │ │ ├── DiffTreeLabelProvider.java │ │ │ ├── EObjectNode.java │ │ │ ├── LeftCompareScript.java │ │ │ └── RightCompareScript.java │ ├── org.bonitasoft.studio.rest.api.extension.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── defaultRestAPIExtension-1.0.0-SNAPSHOT.zip │ │ │ └── migration │ │ │ │ ├── pom_from_1_0_5.xml │ │ │ │ ├── pom_from_1_1_1.xml │ │ │ │ ├── pom_from_1_3_1.xml │ │ │ │ ├── pom_from_1_5_0.xml │ │ │ │ ├── pom_groovy3.xml │ │ │ │ └── pom_java.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ ├── extensions │ │ │ └── handler │ │ │ │ └── NewRestAPIExtensionHandlerTest.java │ │ │ ├── maven │ │ │ ├── CustomPageProjectFileStoreTest.java │ │ │ ├── model │ │ │ │ ├── ExtensionProjectArchetypesTest.java │ │ │ │ └── RestAPIExtensionArchetypeConfigurationTest.java │ │ │ ├── operation │ │ │ │ ├── BuildCustomPageOperationTest.java │ │ │ │ └── DeployCustomPageOperationTest.java │ │ │ └── ui │ │ │ │ └── wizard │ │ │ │ ├── BuildCustomPageProjectPageTest.java │ │ │ │ ├── NewCustomPageArtifactConfigurationPageTest.java │ │ │ │ ├── control │ │ │ │ └── StringListViewerTest.java │ │ │ │ └── validator │ │ │ │ ├── AllJavaIdentifierValidatorTest.java │ │ │ │ └── ArtifactIdValidatorTest.java │ │ │ └── rest │ │ │ └── api │ │ │ └── extension │ │ │ ├── core │ │ │ ├── RestAPIAddressResolverTest.java │ │ │ ├── repository │ │ │ │ ├── RestAPIExtensionDescriptorTest.java │ │ │ │ ├── RestAPIExtensionFileStoreTest.java │ │ │ │ └── migration │ │ │ │ │ ├── Groovy3MigrationStepTest.java │ │ │ │ │ ├── Java11MigrationStepTest.java │ │ │ │ │ ├── ParentMigrationStepTest.java │ │ │ │ │ └── RuntimeBOMMigrationStepTest.java │ │ │ └── validation │ │ │ │ ├── RestAPIDependencyVersionToUpdateFinderTest.java │ │ │ │ ├── RestAPIExtensionPomValidatorTest.java │ │ │ │ └── RestAPIPagePropertiesValidatorTest.java │ │ │ └── ui │ │ │ ├── handler │ │ │ └── EditRestAPIExtensionPermissionsMappingHandlerTest.java │ │ │ └── wizard │ │ │ └── NewRestAPIProjectAdvancedConfigurationPageTest.java │ ├── org.bonitasoft.studio.rest.api.extension │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── binary.png │ │ │ ├── binary@2x.png │ │ │ ├── build_exec.png │ │ │ ├── console.png │ │ │ ├── editor-pom.gif │ │ │ ├── newclass_wiz.png │ │ │ ├── newclass_wiz@2x.png │ │ │ ├── newgroovyclass_wiz.gif │ │ │ ├── newpack_wiz.gif │ │ │ ├── prj_obj.gif │ │ │ ├── problems_view.png │ │ │ └── theme.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ ├── extensions │ │ │ ├── handler │ │ │ │ └── NewExtensionHandler.java │ │ │ └── wizard │ │ │ │ └── NewExtensionWizard.java │ │ │ ├── maven │ │ │ ├── CustomPageProjectDescriptor.java │ │ │ ├── CustomPageProjectFileStore.java │ │ │ ├── ExtensionProjectDescriptor.java │ │ │ ├── ExtensionProjectFileStore.java │ │ │ ├── ExtensionRepositoryStore.java │ │ │ ├── ImportProjectException.java │ │ │ ├── MavenProjectConfiguration.java │ │ │ ├── ProjectElementPropertyTester.java │ │ │ ├── builder │ │ │ │ ├── CustomPageDeltaVisitor.java │ │ │ │ ├── CustomPageProjectBuilder.java │ │ │ │ └── validator │ │ │ │ │ ├── AbstractCustomPageValidator.java │ │ │ │ │ ├── ContentTypeValidator.java │ │ │ │ │ ├── DependencyToUpdate.java │ │ │ │ │ ├── DependencyVersionToUpdateFinder.java │ │ │ │ │ ├── IDependencyValidator.java │ │ │ │ │ ├── Location.java │ │ │ │ │ ├── LocationResolver.java │ │ │ │ │ ├── PagePropertiesValidator.java │ │ │ │ │ ├── PagePropertyFileValidator.java │ │ │ │ │ ├── PagePropertyValidator.java │ │ │ │ │ ├── PomFileValidator.java │ │ │ │ │ └── StatusWithLocation.java │ │ │ ├── i18n │ │ │ │ └── Messages.java │ │ │ ├── model │ │ │ │ ├── ActorFilterArchetypeConfiguration.java │ │ │ │ ├── Archetype.java │ │ │ │ ├── ArchetypeConfiguration.java │ │ │ │ ├── ArchetypeConfigurationImpl.java │ │ │ │ ├── ArchetypeConfigurationWithBonitaVersion.java │ │ │ │ ├── ArchetypeConfigurationWithClassName.java │ │ │ │ ├── ArchetypeConfigurationWithLanguage.java │ │ │ │ ├── ConnectorArchetypeConfiguration.java │ │ │ │ ├── CustomPageArchetypeConfiguration.java │ │ │ │ ├── ExtensionProjectArchetypeConfiguration.java │ │ │ │ ├── ExtensionProjectArchetypes.java │ │ │ │ ├── RestAPIExtensionArchetype.java │ │ │ │ ├── RestAPIExtensionArchetypeConfiguration.java │ │ │ │ ├── ThemeArchetype.java │ │ │ │ ├── ThemeArchetypeConfiguration.java │ │ │ │ └── migration │ │ │ │ │ └── ArchetypesRegistration.java │ │ │ ├── operation │ │ │ │ ├── AbstractMavenProjectUpdateOperation.java │ │ │ │ ├── ArchetypeGenerator.java │ │ │ │ ├── BuildAndExportCustomPageOperation.java │ │ │ │ ├── BuildCustomPageOperation.java │ │ │ │ ├── CreateCustomPageProjectOperation.java │ │ │ │ ├── CreateExtensionProjectOperation.java │ │ │ │ ├── DeployCustomPageProjectOperation.java │ │ │ │ └── ImportExtensionProjectOperation.java │ │ │ └── ui │ │ │ │ ├── WidgetFactory.java │ │ │ │ ├── handler │ │ │ │ ├── BuildCustomPageExtensionHandler.java │ │ │ │ ├── DeployExtensionFromDependencyHandler.java │ │ │ │ ├── ExtensionProjectSelectionProvider.java │ │ │ │ ├── ImportProjectExtensionHandler.java │ │ │ │ ├── OpenWizardDialogAbstractHandler.java │ │ │ │ ├── QuickBuildHandler.java │ │ │ │ └── QuickDeployHandler.java │ │ │ │ ├── internal │ │ │ │ └── DisplayableAdapterFactory.java │ │ │ │ └── wizard │ │ │ │ ├── BuildCustomPageProjectPage.java │ │ │ │ ├── BuildExtensionWizard.java │ │ │ │ ├── BuildResultDialog.java │ │ │ │ ├── DeployCustomPageWizard.java │ │ │ │ ├── DialogSettingsHelper.java │ │ │ │ ├── NewExtensionProjectArtifactConfigurationPage.java │ │ │ │ ├── SelectCustomPageProjectPage.java │ │ │ │ ├── control │ │ │ │ ├── SelectRestAPIExtensionControlSupplier.java │ │ │ │ └── StringListViewer.java │ │ │ │ └── validator │ │ │ │ ├── AllJavaIdentifierValidator.java │ │ │ │ └── ArtifactIdValidator.java │ │ │ ├── rest │ │ │ └── api │ │ │ │ └── extension │ │ │ │ ├── RestAPIExtensionActivator.java │ │ │ │ ├── action │ │ │ │ └── RestApiActionProvider.java │ │ │ │ ├── core │ │ │ │ ├── RestAPIAddressResolver.java │ │ │ │ ├── builder │ │ │ │ │ ├── RestAPIBuilder.java │ │ │ │ │ ├── RestAPIDeltaVisitor.java │ │ │ │ │ ├── resolution │ │ │ │ │ │ ├── PomDependencyResolutionGenerator.java │ │ │ │ │ │ └── RestAPIDependencyToUpdateMarkerResolution.java │ │ │ │ │ └── validators │ │ │ │ │ │ └── RestAPIPagePropertyFileValidator.java │ │ │ │ ├── maven │ │ │ │ │ └── CreateRestAPIExtensionProjectOperation.java │ │ │ │ ├── repository │ │ │ │ │ ├── DependencyRestAPIExtensionDescriptor.java │ │ │ │ │ ├── DependencyRestAPIExtensionFileStore.java │ │ │ │ │ ├── PathTemplate.java │ │ │ │ │ ├── RestAPIExtensionDescriptor.java │ │ │ │ │ ├── RestAPIExtensionFileStore.java │ │ │ │ │ └── migration │ │ │ │ │ │ ├── BonitaVersionMigrationStep.java │ │ │ │ │ │ ├── Groovy3MigrationStep.java │ │ │ │ │ │ ├── GroovyCompilerPluginStep.java │ │ │ │ │ │ ├── Java11MigrationStep.java │ │ │ │ │ │ ├── ParentMigrationStep.java │ │ │ │ │ │ └── RuntimeBOMMigrationStep.java │ │ │ │ └── validation │ │ │ │ │ ├── FormsCustomPermissionsValidator.java │ │ │ │ │ ├── PathTemplateErrorStatus.java │ │ │ │ │ ├── RestAPIDependencyVersionToUpdateFinder.java │ │ │ │ │ ├── RestAPIExtensionBosValidator.java │ │ │ │ │ ├── RestAPIExtensionPomValidator.java │ │ │ │ │ ├── RestAPIPagePropertiesValidator.java │ │ │ │ │ └── UniquePathTemplateValidator.java │ │ │ │ ├── extension │ │ │ │ ├── DeleteBDMEventHandler.java │ │ │ │ └── RestApiActionExtension.java │ │ │ │ ├── problemView.xml │ │ │ │ └── ui │ │ │ │ ├── handler │ │ │ │ ├── ConvertToRestAPIExtensionProjectHandler.java │ │ │ │ ├── EditRestAPIExtensionPermissionsMappingHandler.java │ │ │ │ ├── NewGroovyClassHandler.java │ │ │ │ ├── NewJavaClassHandler.java │ │ │ │ ├── NewPackageHandler.java │ │ │ │ ├── NewWizardHandler.java │ │ │ │ ├── OpenCustomPageProjectHandler.java │ │ │ │ └── ShowApplySecurityChangesListener.java │ │ │ │ ├── perspective │ │ │ │ └── RestAPIExtensionPerspectiveFactory.java │ │ │ │ ├── view │ │ │ │ ├── CustomProblemFilter.java │ │ │ │ ├── MavenConsoleView.java │ │ │ │ └── OnlySelectedElementProblemView.java │ │ │ │ └── wizard │ │ │ │ ├── NewRestAPIExtensionWizard.java │ │ │ │ ├── NewRestAPIProjectAdvancedConfigurationPage.java │ │ │ │ ├── NewRestAPIProjectURLParametersPage.java │ │ │ │ └── RestAPIExtensionLabelProvider.java │ │ │ └── theme │ │ │ ├── CreateThemeProjectOperation.java │ │ │ ├── DependencyThemeExtensionDescriptor.java │ │ │ ├── DependencyThemeFileStore.java │ │ │ ├── ThemeExtensionDescriptor.java │ │ │ ├── ThemeFileStore.java │ │ │ ├── builder │ │ │ ├── ThemeDependencyVersionToUpdateFinder.java │ │ │ ├── ThemePagePropertyFileValidator.java │ │ │ └── ThemeProjectBuilder.java │ │ │ └── handler │ │ │ └── DeployThemeHandler.java │ ├── org.bonitasoft.studio.runtime-bundle │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── script │ │ │ └── configure-bundle.groovy │ ├── org.bonitasoft.studio.sap.dependency │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ └── pom.xml │ ├── org.bonitasoft.studio.sap.mock │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ ├── com │ │ │ └── sap │ │ │ │ └── conn │ │ │ │ └── jco │ │ │ │ ├── JCoContext.java │ │ │ │ ├── JCoDestination.java │ │ │ │ ├── JCoDestinationManager.java │ │ │ │ ├── JCoException.java │ │ │ │ ├── JCoField.java │ │ │ │ ├── JCoFunction.java │ │ │ │ ├── JCoFunctionTemplate.java │ │ │ │ ├── JCoParameterField.java │ │ │ │ ├── JCoParameterList.java │ │ │ │ ├── JCoRecord.java │ │ │ │ ├── JCoRepository.java │ │ │ │ ├── JCoStructure.java │ │ │ │ ├── JCoTable.java │ │ │ │ └── ext │ │ │ │ ├── DestinationDataEventListener.java │ │ │ │ ├── DestinationDataProvider.java │ │ │ │ └── Environment.java │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── sap │ │ │ └── mock │ │ │ └── Activator.java │ ├── org.bonitasoft.studio.scripting │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── org.bonitasoft.studio.scripting.scriptLanguageProvider.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── scripting │ │ │ ├── ScriptingPlugin.java │ │ │ ├── extensions │ │ │ ├── IScriptLanguageProvider.java │ │ │ └── ScriptLanguageService.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ └── provider │ │ │ ├── ScriptExpressionEditor.java │ │ │ └── ScriptExpressionProvider.java │ ├── org.bonitasoft.studio.sqlbuilder.ex.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── sqlbuilder │ │ │ └── ex │ │ │ └── wizard │ │ │ └── CustomConnectorDefinitionWizardTest.java │ ├── org.bonitasoft.studio.sqlbuilder.ex │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── dbdef │ │ │ └── H2_1.2.xmi │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── sqlbuilder │ │ │ └── ex │ │ │ ├── GenerateDBDefinition.java │ │ │ ├── Messages.java │ │ │ ├── SQLBuilderExPlugin.java │ │ │ ├── action │ │ │ ├── BonitaAddTableAction.java │ │ │ └── BonitaAddTableDialog.java │ │ │ ├── builder │ │ │ ├── BonitaBuilderUtility.java │ │ │ ├── BonitaGraphControl.java │ │ │ ├── BonitaSQLBuilder.java │ │ │ ├── BonitaSQLCompletionEngine.java │ │ │ ├── BonitaSQLCompletionProcessor.java │ │ │ ├── BonitaSQLCompletionProposalFactory.java │ │ │ ├── BonitaSQLDomainModel.java │ │ │ ├── BonitaSQLQueryParserManager.java │ │ │ └── viewer │ │ │ │ ├── BonitaCriteriaGridViewer.java │ │ │ │ ├── BonitaDeleteViewer.java │ │ │ │ ├── BonitaDesignViewer.java │ │ │ │ ├── BonitaDynamicComboBoxCellEditor.java │ │ │ │ ├── BonitaGroupByContentViewer.java │ │ │ │ ├── BonitaGroupByViewer.java │ │ │ │ ├── BonitaInsertGridViewer.java │ │ │ │ ├── BonitaInsertTypeViewer.java │ │ │ │ ├── BonitaInsertViewer.java │ │ │ │ ├── BonitaModifier.java │ │ │ │ ├── BonitaSQLSourceViewer.java │ │ │ │ ├── BonitaSQLSourceViewerConfiguration.java │ │ │ │ ├── BonitaSelectGridViewer.java │ │ │ │ ├── BonitaSelectViewer.java │ │ │ │ ├── BonitaUpdateDesignViewer.java │ │ │ │ ├── BonitaUpdateTreeViewer.java │ │ │ │ ├── BonitaUpdateViewer.java │ │ │ │ ├── BonitaValuesRowViewer.java │ │ │ │ ├── CriteriaModifier.java │ │ │ │ ├── CustomContentAssistant.java │ │ │ │ ├── element │ │ │ │ ├── BonitaCriteriaElement.java │ │ │ │ ├── BonitaInsertTableElement.java │ │ │ │ ├── BonitaSelectTableElement.java │ │ │ │ ├── BonitaUpdateTreeElement.java │ │ │ │ └── BonitaValueTableElement.java │ │ │ │ └── provider │ │ │ │ ├── BonitaInsertGridContentProvider.java │ │ │ │ ├── BonitaSelectGridContentProvider.java │ │ │ │ ├── CriteriaContentProvider.java │ │ │ │ ├── QueryStatementContentProvider.java │ │ │ │ └── QueryStatementLabelProvider.java │ │ │ ├── util │ │ │ └── EditorInputUtil.java │ │ │ └── wizard │ │ │ ├── AbstractConnectDBWizardWizardPage.java │ │ │ ├── ConnectionInfoDialog.java │ │ │ ├── DatabaseConnectorConnectionInfoWizardPage.java │ │ │ ├── DatabaseConnectorQueryWizardPage.java │ │ │ ├── JDBCURLSplitter.java │ │ │ ├── SQLBuilderExtendedWizardPage.java │ │ │ ├── ViewerInput.java │ │ │ └── specific │ │ │ ├── DB2ConfigExtendedWizardPage.java │ │ │ ├── H2ConfigExtendedWizardPage.java │ │ │ ├── HSQLConfigExtendedWizardPage.java │ │ │ ├── InformixConfigExtendedWizardPage.java │ │ │ ├── IngresConfigExtendedWizardPage.java │ │ │ ├── MySqlConfigExtendedWizardPage.java │ │ │ ├── OracleConfigExtendedWizardPage.java │ │ │ ├── PostgresConfigExtendedWizardPage.java │ │ │ ├── SQLServerConfigExtendedWizardPage.java │ │ │ ├── SybaseConfigExtendedWizardPage.java │ │ │ └── TeradataConfigExtendedWizardPage.java │ ├── org.bonitasoft.studio.team.git │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── cloneGit.png │ │ │ ├── cloneGit@2x.png │ │ │ ├── editconfig.png │ │ │ ├── editconfig@2x.png │ │ │ ├── git.png │ │ │ ├── git@2x.png │ │ │ ├── git_coolbar_big.png │ │ │ ├── git_coolbar_big@2x.png │ │ │ ├── git_coolbar_big_dark.png │ │ │ ├── git_coolbar_big_dark@2x.png │ │ │ ├── git_coolbar_small.png │ │ │ ├── git_coolbar_small@2x.png │ │ │ ├── git_coolbar_small_dark@2x.png │ │ │ ├── git_coolbar_snall_dark.png │ │ │ ├── history.png │ │ │ ├── history@2x.png │ │ │ ├── pull.png │ │ │ ├── pull@2x.png │ │ │ ├── push.png │ │ │ ├── push@2x.png │ │ │ ├── staging.png │ │ │ └── staging@2x.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── team │ │ │ └── git │ │ │ ├── PreferenceInitializer.java │ │ │ ├── ProjectNotSharedPropertyTester.java │ │ │ ├── StartAddon.java │ │ │ ├── TeamGitPlugin.java │ │ │ ├── core │ │ │ ├── CloneGitProject.java │ │ │ ├── CustomEvaluationContext.java │ │ │ ├── CustomGitWizardHelper.java │ │ │ ├── CustomHandlerService.java │ │ │ ├── CustomPushBranchActionHandler.java │ │ │ ├── ImportClonedRepository.java │ │ │ ├── RetrieveHEADRefOperation.java │ │ │ ├── ShareGitProject.java │ │ │ └── ValidateClonedRepository.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── ui │ │ │ ├── CommittedIgnoredResolutionGenerator.java │ │ │ ├── CustomSwitchToMenu.java │ │ │ ├── GitCoolbarItem.java │ │ │ ├── IgnoredNotAlignedResolutionGenerator.java │ │ │ ├── MenuContributionItem.java │ │ │ └── wizard │ │ │ │ ├── CustomGitCloneWizard.java │ │ │ │ ├── CustomSourceBranchPage.java │ │ │ │ ├── FirstCommitDialog.java │ │ │ │ └── FirstPushAbortedDialog.java │ │ │ └── validation │ │ │ ├── RepositoryValidationAdapterFactory.java │ │ │ └── RepositoryValidator.java │ ├── org.bonitasoft.studio.tests-utils │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ ├── assertions │ │ │ ├── EngineExpressionAssert.java │ │ │ ├── ProjectAssert.java │ │ │ └── StatusAssert.java │ │ │ ├── fakes │ │ │ ├── FakeProgressService.java │ │ │ └── IResourceFakesBuilder.java │ │ │ ├── junit │ │ │ └── rules │ │ │ │ └── FileResource.java │ │ │ ├── model │ │ │ └── businessObject │ │ │ │ ├── BusinessObjectBuilder.java │ │ │ │ └── FieldBuilder.java │ │ │ └── swt │ │ │ ├── DefaultRealm.java │ │ │ ├── WidgetFinder.java │ │ │ ├── finder │ │ │ └── ControlFinder.java │ │ │ └── rules │ │ │ └── RealmWithDisplay.java │ ├── org.bonitasoft.studio.ui.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── ui │ │ │ ├── util │ │ │ └── StringIncrementerTest.java │ │ │ ├── validator │ │ │ ├── EmptyInputValidatorTest.java │ │ │ ├── FileNameValidatorTest.java │ │ │ ├── LengthValidatorTest.java │ │ │ ├── MultiValidatorTest.java │ │ │ ├── NamespaceXMLFileValidatorTest.java │ │ │ ├── PathValidatorTest.java │ │ │ └── RegExpValidatorTest.java │ │ │ └── wizard │ │ │ ├── WizardBuilderTest.java │ │ │ └── listener │ │ │ └── WizardDoubleClickListenerTest.java │ ├── org.bonitasoft.studio.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── error.png │ │ │ ├── file_obj.gif │ │ │ ├── groovy_file.gif │ │ │ ├── problem.gif │ │ │ └── xmldoc.gif │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ ├── schema │ │ │ └── org.bonitasoft.studio.editor.contribution.exsd │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── ui │ │ │ ├── ColorConstants.java │ │ │ ├── UIPlugin.java │ │ │ ├── browser │ │ │ └── OpenSystemBrowserListener.java │ │ │ ├── contribution │ │ │ └── AbstractMenuContributionItem.java │ │ │ ├── databinding │ │ │ ├── ComputedValueBuilder.java │ │ │ ├── ControlMessageSupport.java │ │ │ ├── NoMessageWizardPageSupport.java │ │ │ ├── UpdateListStrategyFactory.java │ │ │ ├── UpdateSetStrategyFactory.java │ │ │ ├── UpdateStrategyFactory.java │ │ │ ├── UpdateValueStrategyFactory.java │ │ │ └── ValidatorEvent.java │ │ │ ├── dialog │ │ │ ├── EngineStatusMapper.java │ │ │ ├── ExceptionDialogHandler.java │ │ │ ├── MultiStatusDialog.java │ │ │ ├── ProblemsDialog.java │ │ │ ├── RenameXMLFileDialog.java │ │ │ ├── SaveBeforeDeployDialog.java │ │ │ └── SkippableProgressMonitorJobsDialog.java │ │ │ ├── editors │ │ │ ├── Collapsable.java │ │ │ ├── DirtyEditorChecker.java │ │ │ ├── contribution │ │ │ │ └── AbstractExportContributionItem.java │ │ │ ├── core │ │ │ │ └── AbstractExportAction.java │ │ │ └── xmlEditors │ │ │ │ ├── AbstractEditor.java │ │ │ │ ├── AbstractEditorContribution.java │ │ │ │ ├── AbstractFormPage.java │ │ │ │ ├── AbstractMultiSourceFormEditor.java │ │ │ │ ├── NoPropertySheetStructuredTextEditor.java │ │ │ │ └── ReadOnlyStructuredTextEditor.java │ │ │ ├── handler │ │ │ ├── BonitaStatusHandler.java │ │ │ ├── DeleteFileHandler.java │ │ │ └── NewFileHandler.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── notification │ │ │ ├── BonitaNotificationPopup.java │ │ │ ├── BonitaNotificator.java │ │ │ └── OpenRestartNotificationHandler.java │ │ │ ├── page │ │ │ ├── AbstractImportPage.java │ │ │ ├── SelectionMultiPage.java │ │ │ ├── SelectionPage.java │ │ │ ├── SelectionRenamePage.java │ │ │ └── SelectionSinglePage.java │ │ │ ├── preference │ │ │ ├── PreferenceConstants.java │ │ │ └── PreferenceInitializer.java │ │ │ ├── provider │ │ │ ├── FileStoreLabelProvider.java │ │ │ ├── ObservableProposalContentProvider.java │ │ │ └── TypedLabelProvider.java │ │ │ ├── styler │ │ │ └── StylerBuilder.java │ │ │ ├── util │ │ │ ├── ProcessValidationStatus.java │ │ │ ├── StatusCollectors.java │ │ │ └── StringIncrementer.java │ │ │ ├── validator │ │ │ ├── EmptyInputValidator.java │ │ │ ├── ExtensionSupported.java │ │ │ ├── FileNameValidator.java │ │ │ ├── InputValidatorWrapper.java │ │ │ ├── LengthValidator.java │ │ │ ├── MultiValidator.java │ │ │ ├── NamespaceXMLFileValidator.java │ │ │ ├── PathValidator.java │ │ │ ├── RegExpValidator.java │ │ │ ├── StringValidator.java │ │ │ ├── TypedValidator.java │ │ │ └── ValidatorBuilder.java │ │ │ ├── viewer │ │ │ ├── AutoCompleteTextCellEditor.java │ │ │ ├── CheckboxLabelProviderBuilder.java │ │ │ ├── ComboBoxEditingSupportBuilder.java │ │ │ ├── EditingSupportBuilder.java │ │ │ └── LabelProviderBuilder.java │ │ │ ├── widget │ │ │ ├── AbstractDynamicButtonWidgetBuilder.java │ │ │ ├── BulletPointWidget.java │ │ │ ├── ButtonWidget.java │ │ │ ├── CComboWidget.java │ │ │ ├── ComboWidget.java │ │ │ ├── ControlWidget.java │ │ │ ├── ControlWidgetBuilder.java │ │ │ ├── CustomContentProposalAdapter.java │ │ │ ├── DropdownDynamicButtonWidget.java │ │ │ ├── DynamicButtonWidget.java │ │ │ ├── EditableControlWidget.java │ │ │ ├── EditableControlWidgetBuilder.java │ │ │ ├── NativeTabFolderWidget.java │ │ │ ├── NativeTabItemWidget.java │ │ │ ├── NativeTextAreaWidget.java │ │ │ ├── NativeTextWidget.java │ │ │ ├── SearchWidget.java │ │ │ ├── StaticWidgetMessageDecorator.java │ │ │ ├── TextAreaWidget.java │ │ │ ├── TextWidget.java │ │ │ ├── WidgetMessageDecorator.java │ │ │ ├── checked.png │ │ │ ├── edit.png │ │ │ ├── error.png │ │ │ └── pencil.png │ │ │ └── wizard │ │ │ ├── CanFinishSupplier.java │ │ │ ├── ControlSupplier.java │ │ │ ├── CustomLabelWizardDialog.java │ │ │ ├── FinishHandler.java │ │ │ ├── FinishHandlerException.java │ │ │ ├── WizardBuilder.java │ │ │ ├── WizardPageBuilder.java │ │ │ └── listener │ │ │ └── WizardDoubleClickListener.java │ ├── org.bonitasoft.studio.validation.common │ │ ├── .classpath │ │ ├── .project │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── validation │ │ │ └── common │ │ │ ├── ValidationCommonPlugin.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ └── operation │ │ │ ├── BatchValidationOperation.java │ │ │ ├── BatchValidatorFactory.java │ │ │ ├── ConstraintDescriptorAdapter.java │ │ │ ├── FindDiagramRunnable.java │ │ │ ├── OffscreenDiagramEditPartRunnable.java │ │ │ ├── OffscreenEditPartFactory.java │ │ │ ├── ProcessValidationOperation.java │ │ │ ├── RunProcessesValidationOperation.java │ │ │ └── ValidationMarkerProvider.java │ ├── org.bonitasoft.studio.validation.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── validation │ │ │ ├── TokenDispatcherTest.java │ │ │ ├── constraints │ │ │ ├── ExpressionDependenciesConstraintTest.java │ │ │ ├── OperatorConsistencyConstraintTest.java │ │ │ ├── connector │ │ │ │ ├── CMISConnectorDefinitionConstraintTest.java │ │ │ │ ├── ConnectorDefinitionAndConfigurationInputConsistencyConstraintTest.java │ │ │ │ └── ConnectorDefinitionAndConfigurationOutputConsistencyConstraintTest.java │ │ │ └── process │ │ │ │ ├── BusinessObjectDefinitionValidationConstraintTest.java │ │ │ │ ├── CallActivityConstraintTest.java │ │ │ │ ├── ContractConstraintTest.java │ │ │ │ ├── ContractLongTypeConstraintTest.java │ │ │ │ ├── DocumentWithContractInputContentConstraintTest.java │ │ │ │ ├── EmptyNameConstraintTest.java │ │ │ │ ├── FormMappingConstraintTest.java │ │ │ │ ├── FormMappingContentConstraintTest.java │ │ │ │ ├── JavaGetterExpressionConstraintTest.java │ │ │ │ ├── JavaSetterOperatorConstraintTest.java │ │ │ │ ├── MultiInstanceIteratorConstraintTest.java │ │ │ │ ├── NameUnicityInProcessScopeValidatorTest.java │ │ │ │ ├── OperationLeftOperandConsistencyConstraintTest.java │ │ │ │ ├── QueryNameValidationConstraintTest.java │ │ │ │ ├── SequenceFlowContainmentConsitencyConstraintTest.java │ │ │ │ └── StartEventWithContractConstraintTest.java │ │ │ └── ui │ │ │ └── view │ │ │ └── ValidationMarkerContentProviderTest.java │ ├── org.bonitasoft.studio.validation │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.moreunit.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.e4xmi │ │ ├── icons │ │ │ ├── validate.png │ │ │ └── validate@2x.png │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── plugin_es.properties │ │ ├── plugin_fr.properties │ │ ├── plugin_ja.properties │ │ ├── plugin_pt_BR.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── bonitasoft │ │ │ └── studio │ │ │ └── validation │ │ │ ├── ModelFileCompatibilityValidator.java │ │ │ ├── TokenDispatcher.java │ │ │ ├── ValidationListener.java │ │ │ ├── ValidationPlugin.java │ │ │ ├── constraints │ │ │ ├── AbstractLiveValidationMarkerConstraint.java │ │ │ ├── BPMN2ValidationConstraint.java │ │ │ ├── ExpressionDependenciesConstraint.java │ │ │ ├── GroovyCompilationOnScriptExpressionConstraint.java │ │ │ ├── OperatorConsistencyConstraint.java │ │ │ ├── ProcessScriptsCompilationResult.java │ │ │ ├── ProcessScriptsCompiler.java │ │ │ ├── ProvidedScriptsDeprecationConstraint.java │ │ │ ├── connector │ │ │ │ ├── CMISConnectorDefinitionConstraint.java │ │ │ │ ├── CloudWarningConnectors.java │ │ │ │ ├── ConnectorDefinitionAndConfigurationInputConsistencyConstraint.java │ │ │ │ ├── ConnectorDefinitionAndConfigurationOutputConsistencyConstraint.java │ │ │ │ └── ConnectorExistenceConstraint.java │ │ │ └── process │ │ │ │ ├── AbstractProcessConfigurationDependenciesConstraint.java │ │ │ │ ├── AbstractProcessVersionConstraint.java │ │ │ │ ├── AssignableConstraint.java │ │ │ │ ├── BusinessObjectDefinitionValidationConstraint.java │ │ │ │ ├── CallActivityConstraint.java │ │ │ │ ├── CallActivityWarningConstraint.java │ │ │ │ ├── CatchLinkEventConstraint.java │ │ │ │ ├── CatchMessageEventConstraint.java │ │ │ │ ├── ContractConstraint.java │ │ │ │ ├── ContractLongTypeConstraint.java │ │ │ │ ├── DeprecatedConnectorConstraint.java │ │ │ │ ├── DocumentWithContractInputContentConstraint.java │ │ │ │ ├── EmptyNameConstraint.java │ │ │ │ ├── EndErrorEventConstraint.java │ │ │ │ ├── ExceptionTransitionConstraint.java │ │ │ │ ├── FormMappingConstraint.java │ │ │ │ ├── FormMappingContentConstraint.java │ │ │ │ ├── InternalDocumentConstraint.java │ │ │ │ ├── JavaGetterExpressionConstraint.java │ │ │ │ ├── JavaSetterOperatorConstraint.java │ │ │ │ ├── LoopConditionConstraint.java │ │ │ │ ├── MessageEventConstraint.java │ │ │ │ ├── MultiInstanceConstraintInput.java │ │ │ │ ├── MultiInstanceConstraintOutput.java │ │ │ │ ├── MultiInstanceIteratorConstraint.java │ │ │ │ ├── NameUnicityInProcessScopeValidator.java │ │ │ │ ├── NoIncomingLinkWarningConstraint.java │ │ │ │ ├── NoMessageDefinedConstraint.java │ │ │ │ ├── OpeartionReturnTypeWarningConstraint.java │ │ │ │ ├── OperationLeftOperandConsistencyConstraint.java │ │ │ │ ├── OperationNotEmptyConstraint.java │ │ │ │ ├── OutputTransitionConstraint.java │ │ │ │ ├── ParalellMergeGatewayConstraint.java │ │ │ │ ├── ProcessConfigurationDependenciesConstraint.java │ │ │ │ ├── ProcessLocalConfigurationDependenciesConstraint.java │ │ │ │ ├── QueryExpressionValidationConstraint.java │ │ │ │ ├── QueryNameValidationConstraint.java │ │ │ │ ├── SequenceFlowConstraint.java │ │ │ │ ├── SequenceFlowContainmentConsitencyConstraint.java │ │ │ │ ├── SignalEventConstraint.java │ │ │ │ ├── StartAndEndEventWarningConstraint.java │ │ │ │ ├── StartEventWithContractConstraint.java │ │ │ │ ├── SubprocessEventConstraint.java │ │ │ │ ├── ThrowLinkEventConstraint.java │ │ │ │ ├── TimerConstraint.java │ │ │ │ ├── UniqueContainerIdConstraint.java │ │ │ │ ├── UniqueFlowElementAndBoundaryIdConstraint.java │ │ │ │ ├── XORGatewayConstraint.java │ │ │ │ └── internal │ │ │ │ └── PerAttributeValidatorAdapterFactory.java │ │ │ ├── handler │ │ │ ├── BatchValidationHandler.java │ │ │ └── ValidateDiagramHandler.java │ │ │ ├── i18n │ │ │ └── Messages.java │ │ │ ├── selector │ │ │ └── BonitaClientSelector.java │ │ │ └── ui │ │ │ └── view │ │ │ ├── SeverityColumnLabelProvider.java │ │ │ ├── ValidationMarkerContentProvider.java │ │ │ ├── ValidationViewAction.java │ │ │ └── ValidationViewPart.java │ ├── org.bonitasoft.studio.xml │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.wst.validation.prefs │ │ │ └── org.eclipse.wst.xml.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── messages.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_ja.properties │ │ ├── messages_pt_BR.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src │ │ │ └── org │ │ │ │ └── bonitasoft │ │ │ │ └── studio │ │ │ │ └── xml │ │ │ │ ├── Messages.java │ │ │ │ ├── XMLPlugin.java │ │ │ │ ├── api │ │ │ │ ├── XPathReturnType.java │ │ │ │ └── XSDImport.java │ │ │ │ ├── export │ │ │ │ └── XSDResourceProvider.java │ │ │ │ ├── repository │ │ │ │ ├── URIXSDFileStore.java │ │ │ │ ├── XSDFileStore.java │ │ │ │ └── XSDRepositoryStore.java │ │ │ │ └── ui │ │ │ │ ├── SelectPathDialog.java │ │ │ │ ├── XMLTypeDescriptionDialog.java │ │ │ │ ├── XPathExpressionEditor.java │ │ │ │ ├── XPathExpressionProvider.java │ │ │ │ ├── XPathOperatorEditor.java │ │ │ │ ├── XSDContentProvider.java │ │ │ │ ├── XSDLabelProvider.java │ │ │ │ └── internal │ │ │ │ └── DisplayableAdapterFactory.java │ │ └── xsd │ │ │ ├── soap-encoding.xsd │ │ │ └── soap-envelope.xsd │ └── pom.xml └── pom.xml ├── fetch_crowdin_l10n.groovy ├── mvnw ├── mvnw.cmd ├── patched-plugins ├── org.eclipse.datatools.modelbase.sql.query │ ├── .classpath │ ├── .options │ ├── .project │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── org.eclipse.datatools.plugins │ │ │ └── org.eclipse.datatools.modelbase.sql.query │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── README.adoc │ ├── about.html │ ├── build.properties │ ├── build.xml │ ├── model │ │ ├── SQLQueryModel.cat │ │ ├── SQLQueryModel.ecore │ │ ├── SQLQueryModel.genmodel │ │ └── SQLQueryModel.mdl │ ├── plugin.properties │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── datatools │ │ └── modelbase │ │ └── sql │ │ └── query │ │ ├── CallStatement.java │ │ ├── ColumnName.java │ │ ├── CursorReference.java │ │ ├── Grouping.java │ │ ├── GroupingExpression.java │ │ ├── GroupingSets.java │ │ ├── GroupingSetsElement.java │ │ ├── GroupingSetsElementExpression.java │ │ ├── GroupingSetsElementSublist.java │ │ ├── GroupingSpecification.java │ │ ├── MergeInsertSpecification.java │ │ ├── MergeOnCondition.java │ │ ├── MergeOperationSpecification.java │ │ ├── MergeSourceTable.java │ │ ├── MergeTargetTable.java │ │ ├── MergeUpdateSpecification.java │ │ ├── NullOrderingType.java │ │ ├── OrderByOrdinal.java │ │ ├── OrderByResultColumn.java │ │ ├── OrderBySpecification.java │ │ ├── OrderByValueExpression.java │ │ ├── OrderingSpecType.java │ │ ├── Predicate.java │ │ ├── PredicateBasic.java │ │ ├── PredicateBetween.java │ │ ├── PredicateComparisonOperator.java │ │ ├── PredicateExists.java │ │ ├── PredicateIn.java │ │ ├── PredicateInValueList.java │ │ ├── PredicateInValueRowSelect.java │ │ ├── PredicateInValueSelect.java │ │ ├── PredicateIsNull.java │ │ ├── PredicateLike.java │ │ ├── PredicateQuantified.java │ │ ├── PredicateQuantifiedRowSelect.java │ │ ├── PredicateQuantifiedType.java │ │ ├── PredicateQuantifiedValueSelect.java │ │ ├── ProcedureReference.java │ │ ├── QueryChangeStatement.java │ │ ├── QueryCombined.java │ │ ├── QueryCombinedOperator.java │ │ ├── QueryDeleteStatement.java │ │ ├── QueryExpressionBody.java │ │ ├── QueryExpressionRoot.java │ │ ├── QueryInsertStatement.java │ │ ├── QueryMergeStatement.java │ │ ├── QueryNested.java │ │ ├── QueryResultSpecification.java │ │ ├── QuerySearchCondition.java │ │ ├── QuerySelect.java │ │ ├── QuerySelectStatement.java │ │ ├── QueryStatement.java │ │ ├── QueryUpdateStatement.java │ │ ├── QueryValueExpression.java │ │ ├── QueryValues.java │ │ ├── ResultColumn.java │ │ ├── ResultTableAllColumns.java │ │ ├── SQLQueryModelFactory.java │ │ ├── SQLQueryModelPackage.java │ │ ├── SQLQueryObject.java │ │ ├── SearchConditionCombined.java │ │ ├── SearchConditionCombinedOperator.java │ │ ├── SearchConditionNested.java │ │ ├── SuperGroup.java │ │ ├── SuperGroupElement.java │ │ ├── SuperGroupElementExpression.java │ │ ├── SuperGroupElementSublist.java │ │ ├── SuperGroupType.java │ │ ├── TableCorrelation.java │ │ ├── TableExpression.java │ │ ├── TableFunction.java │ │ ├── TableInDatabase.java │ │ ├── TableJoined.java │ │ ├── TableJoinedOperator.java │ │ ├── TableNested.java │ │ ├── TableQueryLateral.java │ │ ├── TableReference.java │ │ ├── UpdatabilityExpression.java │ │ ├── UpdatabilityType.java │ │ ├── UpdateAssignmentExpression.java │ │ ├── UpdateOfColumn.java │ │ ├── UpdateSource.java │ │ ├── UpdateSourceExprList.java │ │ ├── UpdateSourceQuery.java │ │ ├── ValueExpressionAtomic.java │ │ ├── ValueExpressionCase.java │ │ ├── ValueExpressionCaseElse.java │ │ ├── ValueExpressionCaseSearch.java │ │ ├── ValueExpressionCaseSearchContent.java │ │ ├── ValueExpressionCaseSimple.java │ │ ├── ValueExpressionCaseSimpleContent.java │ │ ├── ValueExpressionCast.java │ │ ├── ValueExpressionColumn.java │ │ ├── ValueExpressionCombined.java │ │ ├── ValueExpressionCombinedOperator.java │ │ ├── ValueExpressionDefaultValue.java │ │ ├── ValueExpressionFunction.java │ │ ├── ValueExpressionLabeledDuration.java │ │ ├── ValueExpressionLabeledDurationType.java │ │ ├── ValueExpressionNested.java │ │ ├── ValueExpressionNullValue.java │ │ ├── ValueExpressionRow.java │ │ ├── ValueExpressionScalarSelect.java │ │ ├── ValueExpressionSimple.java │ │ ├── ValueExpressionUnaryOperator.java │ │ ├── ValueExpressionVariable.java │ │ ├── ValuesRow.java │ │ ├── WithTableReference.java │ │ ├── WithTableSpecification.java │ │ ├── helper │ │ ├── BonitaExpressionBinding.java │ │ ├── DataTypeHelper.java │ │ ├── DatabaseHelper.java │ │ ├── JoinHelper.java │ │ ├── StatementHelper.java │ │ ├── TableHelper.java │ │ └── ValueExpressionHelper.java │ │ ├── impl │ │ ├── CallStatementImpl.java │ │ ├── ColumnNameImpl.java │ │ ├── CursorReferenceImpl.java │ │ ├── GroupingExpressionImpl.java │ │ ├── GroupingImpl.java │ │ ├── GroupingSetsElementExpressionImpl.java │ │ ├── GroupingSetsElementImpl.java │ │ ├── GroupingSetsElementSublistImpl.java │ │ ├── GroupingSetsImpl.java │ │ ├── GroupingSpecificationImpl.java │ │ ├── MergeInsertSpecificationImpl.java │ │ ├── MergeOnConditionImpl.java │ │ ├── MergeOperationSpecificationImpl.java │ │ ├── MergeSourceTableImpl.java │ │ ├── MergeTargetTableImpl.java │ │ ├── MergeUpdateSpecificationImpl.java │ │ ├── OrderByOrdinalImpl.java │ │ ├── OrderByResultColumnImpl.java │ │ ├── OrderBySpecificationImpl.java │ │ ├── OrderByValueExpressionImpl.java │ │ ├── PredicateBasicImpl.java │ │ ├── PredicateBetweenImpl.java │ │ ├── PredicateExistsImpl.java │ │ ├── PredicateImpl.java │ │ ├── PredicateInImpl.java │ │ ├── PredicateInValueListImpl.java │ │ ├── PredicateInValueRowSelectImpl.java │ │ ├── PredicateInValueSelectImpl.java │ │ ├── PredicateIsNullImpl.java │ │ ├── PredicateLikeImpl.java │ │ ├── PredicateQuantifiedImpl.java │ │ ├── PredicateQuantifiedRowSelectImpl.java │ │ ├── PredicateQuantifiedValueSelectImpl.java │ │ ├── ProcedureReferenceImpl.java │ │ ├── QueryChangeStatementImpl.java │ │ ├── QueryCombinedImpl.java │ │ ├── QueryDeleteStatementImpl.java │ │ ├── QueryExpressionBodyImpl.java │ │ ├── QueryExpressionRootImpl.java │ │ ├── QueryInsertStatementImpl.java │ │ ├── QueryMergeStatementImpl.java │ │ ├── QueryNestedImpl.java │ │ ├── QueryResultSpecificationImpl.java │ │ ├── QuerySearchConditionImpl.java │ │ ├── QuerySelectImpl.java │ │ ├── QuerySelectStatementImpl.java │ │ ├── QueryStatementImpl.java │ │ ├── QueryUpdateStatementImpl.java │ │ ├── QueryValueExpressionImpl.java │ │ ├── QueryValuesImpl.java │ │ ├── ResultColumnImpl.java │ │ ├── ResultTableAllColumnsImpl.java │ │ ├── SQLQueryModelFactoryImpl.java │ │ ├── SQLQueryModelPackageImpl.java │ │ ├── SQLQueryObjectImpl.java │ │ ├── SearchConditionCombinedImpl.java │ │ ├── SearchConditionNestedImpl.java │ │ ├── SuperGroupElementExpressionImpl.java │ │ ├── SuperGroupElementImpl.java │ │ ├── SuperGroupElementSublistImpl.java │ │ ├── SuperGroupImpl.java │ │ ├── TableCorrelationImpl.java │ │ ├── TableExpressionImpl.java │ │ ├── TableFunctionImpl.java │ │ ├── TableInDatabaseImpl.java │ │ ├── TableJoinedImpl.java │ │ ├── TableNestedImpl.java │ │ ├── TableQueryLateralImpl.java │ │ ├── TableReferenceImpl.java │ │ ├── UpdatabilityExpressionImpl.java │ │ ├── UpdateAssignmentExpressionImpl.java │ │ ├── UpdateOfColumnImpl.java │ │ ├── UpdateSourceExprListImpl.java │ │ ├── UpdateSourceImpl.java │ │ ├── UpdateSourceQueryImpl.java │ │ ├── ValueExpressionAtomicImpl.java │ │ ├── ValueExpressionCaseElseImpl.java │ │ ├── ValueExpressionCaseImpl.java │ │ ├── ValueExpressionCaseSearchContentImpl.java │ │ ├── ValueExpressionCaseSearchImpl.java │ │ ├── ValueExpressionCaseSimpleContentImpl.java │ │ ├── ValueExpressionCaseSimpleImpl.java │ │ ├── ValueExpressionCastImpl.java │ │ ├── ValueExpressionColumnImpl.java │ │ ├── ValueExpressionCombinedImpl.java │ │ ├── ValueExpressionDefaultValueImpl.java │ │ ├── ValueExpressionFunctionImpl.java │ │ ├── ValueExpressionLabeledDurationImpl.java │ │ ├── ValueExpressionNestedImpl.java │ │ ├── ValueExpressionNullValueImpl.java │ │ ├── ValueExpressionRowImpl.java │ │ ├── ValueExpressionScalarSelectImpl.java │ │ ├── ValueExpressionSimpleImpl.java │ │ ├── ValueExpressionVariableImpl.java │ │ ├── ValuesRowImpl.java │ │ ├── WithTableReferenceImpl.java │ │ └── WithTableSpecificationImpl.java │ │ └── util │ │ ├── SQLComment.java │ │ ├── SQLLogUtil.java │ │ ├── SQLQueryArrayDataType.java │ │ ├── SQLQueryArrayDataTypeImpl.java │ │ ├── SQLQueryLogger.java │ │ ├── SQLQueryModelAdapterFactory.java │ │ ├── SQLQueryModelPlugin.java │ │ ├── SQLQueryModelSwitch.java │ │ ├── SQLQueryMultisetDataType.java │ │ ├── SQLQueryMultisetDataTypeImpl.java │ │ ├── SQLQuerySourceBuffer.java │ │ ├── SQLQuerySourceFormat.java │ │ ├── SQLQuerySourceInfo.java │ │ ├── SQLQuerySourceWriter.java │ │ ├── SQLQuerySourceWriterProvider.java │ │ └── SQLSourceWriter.java ├── org.eclipse.gmf.runtime.lite.svg │ ├── .classpath │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── gmf │ │ ├── internal │ │ └── runtime │ │ │ └── lite │ │ │ └── svg │ │ │ ├── Activator.java │ │ │ ├── InferringNamespaceContext.java │ │ │ └── SimpleImageTranscoder.java │ │ └── runtime │ │ └── lite │ │ └── svg │ │ ├── CustomSAXSVGDocumentFactory.java │ │ ├── SVGFigure.java │ │ └── SVGUtils.java ├── org.eclipse.gmf.tooling.runtime.lighter │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── LICENSE │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.adoc │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── gmf │ │ └── tooling │ │ └── runtime │ │ ├── GMFToolingRuntimePlugin.java │ │ ├── LogHelper.java │ │ ├── Messages.java │ │ ├── actions │ │ ├── DefaultDeleteElementAction.java │ │ └── DefaultLoadResourceAction.java │ │ ├── draw2d │ │ └── labels │ │ │ └── SimpleLabelDelegate.java │ │ ├── edit │ │ ├── helpers │ │ │ └── GeneratedEditHelperBase.java │ │ └── policies │ │ │ ├── DefaultLinkLabelDragPolicy.java │ │ │ ├── DefaultNodeLabelDragPolicy.java │ │ │ ├── labels │ │ │ └── IRefreshableFeedbackEditPolicy.java │ │ │ └── reparent │ │ │ ├── CreationEditPolicyWithCustomReparent.java │ │ │ └── MoveViewCommand.java │ │ ├── parsers │ │ ├── AbstractAttributeParser.java │ │ └── AbstractFeatureParser.java │ │ ├── part │ │ ├── DefaultDiagramEditorUtil.java │ │ └── DefaultModelElementSelectionPage.java │ │ ├── providers │ │ ├── DefaultEditPartProvider.java │ │ ├── DefaultElementTypeIconProvider.java │ │ ├── DiagramElementTypeImages.java │ │ └── DiagramElementTypes.java │ │ ├── sheet │ │ └── DefaultPropertySection.java │ │ ├── structure │ │ └── DiagramStructure.java │ │ └── update │ │ ├── DiagramUpdater.java │ │ ├── UpdaterLinkDescriptor.java │ │ └── UpdaterNodeDescriptor.java ├── org.eclipse.ui.views.properties.tabbed │ ├── .api_description │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── pom.xml │ ├── schema │ │ ├── propertyContributor.exsd │ │ ├── propertySections.exsd │ │ └── propertyTabs.exsd │ └── src │ │ └── org │ │ └── eclipse │ │ └── ui │ │ ├── internal │ │ └── views │ │ │ └── properties │ │ │ └── tabbed │ │ │ ├── TabbedPropertyViewStatusCodes.java │ │ │ ├── css │ │ │ ├── TabbedPropertyElementProvider.java │ │ │ ├── TabbedPropertyListAdapter.java │ │ │ ├── TabbedPropertyListCssPropertyHandler.java │ │ │ ├── TabbedPropertyTitleAdapter.java │ │ │ └── TabbedPropertyTitleCssPropertyHandler.java │ │ │ ├── l10n │ │ │ ├── TabbedPropertyMessages.java │ │ │ └── TabbedPropertyMessages.properties │ │ │ └── view │ │ │ ├── OverridableTabListContentProvider.java │ │ │ ├── SectionDescriptor.java │ │ │ ├── TabDescriptor.java │ │ │ ├── TabListContentProvider.java │ │ │ ├── TabbedPropertyComposite.java │ │ │ ├── TabbedPropertyList.java │ │ │ ├── TabbedPropertyRegistry.java │ │ │ ├── TabbedPropertyRegistryClassSectionFilter.java │ │ │ ├── TabbedPropertyRegistryFactory.java │ │ │ ├── TabbedPropertyRegistryViewAware.java │ │ │ ├── TabbedPropertyTitle.java │ │ │ └── TabbedPropertyViewer.java │ │ └── views │ │ └── properties │ │ └── tabbed │ │ ├── AbstractOverridableTabListPropertySection.java │ │ ├── AbstractPropertySection.java │ │ ├── AbstractSectionDescriptor.java │ │ ├── AbstractTabDescriptor.java │ │ ├── AbstractTypeMapper.java │ │ ├── AdvancedPropertySection.java │ │ ├── IActionProvider.java │ │ ├── IOverridableTabList.java │ │ ├── IOverridableTabListContentProvider.java │ │ ├── ISection.java │ │ ├── ISectionDescriptor.java │ │ ├── ISectionDescriptorProvider.java │ │ ├── ITabDescriptor.java │ │ ├── ITabDescriptorProvider.java │ │ ├── ITabItem.java │ │ ├── ITabSelectionListener.java │ │ ├── ITabbedPropertyConstants.java │ │ ├── ITabbedPropertySheetPageContributor.java │ │ ├── ITypeMapper.java │ │ ├── TabContents.java │ │ ├── TabbedPropertySheetPage.java │ │ ├── TabbedPropertySheetWidgetFactory.java │ │ └── package.html └── pom.xml ├── platform ├── .project ├── README.adoc ├── platform.target ├── pom.xml ├── remote_platform.target ├── remote_platform.tpd └── src │ ├── assembly │ └── mirror.xml │ └── script │ ├── configure-mirror-plugin.groovy │ └── generate-mirror-tp.groovy ├── pom.xml ├── setups ├── .gitignore ├── A Studio JUnit plugin test (template).launch ├── BonitaStudio-common.setup ├── BonitaStudio-community.setup ├── BonitaStudio-sp.setup ├── Quick Build Bonita Studio with Maven (template).launch ├── bonitastudio-features.product (template).launch └── bonitastudioEx-features.product (template).launch └── tests ├── .gitignore ├── org.bonitasoft.studio.swtbot.framework ├── .classpath ├── .project ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── pom.xml └── src │ └── org │ └── bonitasoft │ └── studio │ └── swtbot │ └── framework │ ├── AbstractBotWizardPage.java │ ├── BotBase.java │ ├── BotDialog.java │ ├── BotPropertiesView.java │ ├── BotQAConstants.java │ ├── BotWizardDialog.java │ ├── ConditionBuilder.java │ ├── ListElementBot.java │ ├── SWTBotConnectorTestUtil.java │ ├── SWTBotTestUtil.java │ ├── StudioAPIUtil.java │ ├── TabbedPropertyListBot.java │ ├── application │ ├── BotApplicationWorkbenchWindow.java │ ├── BotDeployDialog.java │ ├── BotOpenDiagramDialog.java │ ├── editor │ │ ├── BotHTMLEditor.java │ │ ├── BotProjectOverviewEditor.java │ │ └── project │ │ │ ├── BotCreateExtensionProjectWizard.java │ │ │ ├── BotEditProjectMetadataWizard.java │ │ │ ├── BotExtensionCard.java │ │ │ ├── BotExtensionWizard.java │ │ │ ├── BotFindUsageWizard.java │ │ │ ├── BotMarketplaceWizard.java │ │ │ └── BotMaximizedExtensionCard.java │ └── menu │ │ └── AbstractBotMenu.java │ ├── bdm │ ├── BotBdmConstraintsEditor.java │ ├── BotBdmEditor.java │ ├── BotBdmIndexesEditor.java │ ├── BotBdmModelEditor.java │ ├── BotBdmQueriesEditor.java │ └── ImportBdmWizardBot.java │ ├── composite │ ├── BotOperationComposite.java │ └── BotSelectOperatorDialog.java │ ├── conditions │ ├── ActiveWelcomePageCondition.java │ ├── AssertionCondition.java │ ├── BonitaBPMConditions.java │ ├── EditorOpenCondition.java │ ├── NoPopupCondition.java │ ├── RunCondition.java │ ├── SelectNodeUnder.java │ ├── ShellIsActiveWithThreadSTacksOnFailure.java │ └── ShellWithRegexIsActive.java │ ├── configuration │ └── BotEnvironmentDetails.java │ ├── connector │ ├── ConnectorDefinitionWizardBot.java │ └── ConnectorImplementationWizardBot.java │ ├── diagram │ ├── BotProcessDiagramMigrationPerspective.java │ ├── BotProcessDiagramPerspective.java │ ├── BotProcessDiagramPropertiesViewFolder.java │ ├── BotReportMigrationView.java │ ├── BotTreeView.java │ ├── application │ │ ├── BotApplicationDiagramPropertiesView.java │ │ └── pageflow │ │ │ ├── AbstractBotDataMappingPanel.java │ │ │ ├── BotAddFormWizardDialog.java │ │ │ ├── BotBusinessDataMappingPanel.java │ │ │ ├── BotPageflowPropertySection.java │ │ │ └── BotProcessDataMappingPanel.java │ ├── configuration │ │ ├── BotActorMappingConfigurationPage.java │ │ ├── BotConfigureDialog.java │ │ ├── BotJavaDependenciesConfigurationPage.java │ │ └── BotProcessDependenciesTreeView.java │ ├── data │ │ └── BotDataDiagramPropertiesView.java │ ├── execution │ │ ├── BotDatabaseAccesInformationWizardPage.java │ │ ├── BotExecutionDiagramPropertiesView.java │ │ ├── BotFormMappingPropertySection.java │ │ └── BotGraphicalQueryBuilderWizardpage.java │ ├── export │ │ └── BotExportBOSDialog.java │ ├── general │ │ ├── BotCallActivityInputMappingPropertySection.java │ │ ├── BotGeneralDiagramPropertiesView.java │ │ ├── actors │ │ │ ├── BotActorAssignementPropertySection.java │ │ │ └── BotActorDefinitionPropertySection.java │ │ ├── connectors │ │ │ ├── BotAddConnectorDialog.java │ │ │ ├── BotConnectDatabaseDialog.java │ │ │ ├── BotConnectorsPropertySection.java │ │ │ └── BotEditConnectorDialog.java │ │ ├── contract │ │ │ ├── BotContractConstraintRow.java │ │ │ ├── BotContractConstraintTab.java │ │ │ ├── BotContractInputRow.java │ │ │ ├── BotContractInputTab.java │ │ │ └── BotContractPropertySection.java │ │ ├── data │ │ │ ├── AbstractBotDataWizardPage.java │ │ │ ├── BotAddDataDialog.java │ │ │ ├── BotAddDataWizardPage.java │ │ │ ├── BotDataPropertySection.java │ │ │ └── BotEditDataDialog.java │ │ ├── documents │ │ │ ├── BotAddDocumentDialog.java │ │ │ ├── BotDocumentsPropertySection.java │ │ │ ├── BotEditDocumentDialog.java │ │ │ ├── BotFileStoreSelectDialog.java │ │ │ └── BotRemoveDocumentDialog.java │ │ ├── general │ │ │ ├── BotDiagramPropertySection.java │ │ │ └── BotGeneralPropertySection.java │ │ ├── iteration │ │ │ ├── AbstractBotInputOutputStackPanel.java │ │ │ ├── BotDataBasedStackPanel.java │ │ │ ├── BotMultiInstanceTypeStackPanel.java │ │ │ ├── BotNoneTypeStackPanel.java │ │ │ ├── BotNumberBasedStackPanel.java │ │ │ ├── BotReccurencePropertySection.java │ │ │ └── BotStandardLoopTypeStackPanel.java │ │ ├── lane │ │ │ └── BotLanePropertySection.java │ │ ├── operations │ │ │ └── BotOperationsPropertySection.java │ │ └── pool │ │ │ └── BotPoolPropertySection.java │ ├── importer │ │ ├── BotImportBOSDependenciesPreviewPage.java │ │ ├── BotImportBOSDialog.java │ │ └── BotImportOtherDialog.java │ └── validation │ │ └── BotValidationPropertiesView.java │ ├── draw │ ├── BotGefBaseEditor.java │ ├── BotGefFormDiagramEditor.java │ └── BotGefProcessDiagramEditor.java │ ├── exception │ ├── EmptyDiagramSelectionException.java │ ├── ItemNotFoundException.java │ ├── ReadOnlyWidgetException.java │ └── SemanticElementNotFoundException.java │ ├── expression │ ├── AbstractBotExpressionEditor.java │ ├── BotConditionExpressionEditor.java │ ├── BotExpressionEditorDialog.java │ └── BotScriptExpressionEditor.java │ ├── la │ ├── BotApplicationEditor.java │ ├── DeleteApplicationWizardBot.java │ ├── NewApplicationDescriptorWizardBot.java │ ├── OpenApplicationWizardBot.java │ ├── SelectApplicationToDeployWizardBot.java │ └── SelectApplicationWizardEditorBot.java │ ├── organization │ ├── BotOrganizationEditor.java │ ├── BotOrganizationGroupEditor.java │ ├── BotOrganizationOverviewEditor.java │ ├── BotOrganizationRoleEditor.java │ ├── BotOrganizationUserEditor.java │ └── OpenOrganizationWizardBot.java │ ├── preferences │ ├── BotPreferencesDialog.java │ └── maven │ │ ├── BotMavenConfigurationPage.java │ │ ├── BotMavenMirrorsConfigurationPage.java │ │ ├── BotMavenProxiesConfigurationPage.java │ │ ├── BotMavenRepositoriesConfigurationPage.java │ │ └── BotMavenServersConfigurationPage.java │ ├── projectExplorer │ ├── BDMProjectExplorerBot.java │ ├── DiagramProjectExplorerBot.java │ ├── EnvironmentsProjectExplorerBot.java │ ├── ExtensionProjectExplorerBot.java │ ├── LivingApplicationProjectExplorerBot.java │ ├── OrganizationProjectExplorerBot.java │ └── ProjectExplorerBot.java │ ├── restApi │ └── RestAPIExtensionCreationWizardBot.java │ ├── rule │ ├── EditorMatcherExceptOverview.java │ └── SWTGefBotRule.java │ ├── team │ └── git │ │ ├── BotGitAddRemoteDialog.java │ │ ├── BotGitCloneDialog.java │ │ ├── BotGitInitDialog.java │ │ └── BotGitMenu.java │ └── widget │ ├── BotTableWidget.java │ ├── BotTreeWidget.java │ └── BotWidget.java ├── org.bonitasoft.studio.test.suite ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── pom.xml ├── src-resources │ └── pref_settings_customization.ini ├── src │ └── org │ │ └── bonitasoft │ │ └── studio │ │ └── test │ │ └── suite │ │ └── IntegrationTestSuite.java └── tests-settings.xml ├── org.bonitasoft.studio.test.swtbot.suite ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── pom.xml ├── src-resources │ └── pref_settings_customization.ini ├── src │ └── org │ │ └── bonitasoft │ │ └── studio │ │ └── test │ │ └── swtbot │ │ └── suite │ │ └── SWTBotTestSuite.java └── tests-settings.xml ├── org.bonitasoft.studio.tests ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── pom.xml ├── resources │ ├── DatabaseDriverMigration.bos │ ├── DeployAll-1.0.bos │ ├── DiagramWithNewFormMapping-1.0.bos │ ├── EmailConnectorUpdate.bos │ ├── GroovyScriptForTestImportExportRepository.groovy │ ├── ProcessWithNewFormMapping-1.0 │ │ ├── resource.txt │ │ └── resource3.txt │ ├── ProcessWithNewFormMapping │ │ ├── resource.txt │ │ └── resource2.txt │ ├── RestAPIExtension.bos │ ├── _common │ │ └── resource.txt │ ├── bdm.zip │ ├── bdmWithoutNamespace.bos │ ├── invalid_uid_workspace │ │ ├── web_fragments │ │ │ ├── .metadata │ │ │ │ └── MyFragment.json │ │ │ └── MyFragment │ │ │ │ ├── MyFragment.js │ │ │ │ └── MyFragment.json │ │ ├── web_page │ │ │ ├── .metadata │ │ │ │ ├── .index.json │ │ │ │ ├── MyForm.json │ │ │ │ ├── MyLayout.json │ │ │ │ └── MyPage.json │ │ │ ├── MyForm │ │ │ │ ├── MyForm.json │ │ │ │ └── assets │ │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ │ └── json │ │ │ │ │ └── localization.json │ │ │ ├── MyLayout │ │ │ │ ├── MyLayout.json │ │ │ │ └── assets │ │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ │ └── json │ │ │ │ │ └── localization.json │ │ │ └── MyPage │ │ │ │ ├── MyPage.json │ │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── json │ │ │ │ └── localization.json │ │ └── web_widgets │ │ │ ├── .metadata │ │ │ ├── customMyWidget.json │ │ │ ├── pbAutocomplete.json │ │ │ ├── pbButton.json │ │ │ ├── pbChart.json │ │ │ ├── pbCheckbox.json │ │ │ ├── pbChecklist.json │ │ │ ├── pbContainer.json │ │ │ ├── pbCurrencyInput.json │ │ │ ├── pbDataTable.json │ │ │ ├── pbDatePicker.json │ │ │ ├── pbDateTimePicker.json │ │ │ ├── pbFileViewer.json │ │ │ ├── pbFormContainer.json │ │ │ ├── pbImage.json │ │ │ ├── pbInput.json │ │ │ ├── pbLink.json │ │ │ ├── pbModalContainer.json │ │ │ ├── pbRadioButtons.json │ │ │ ├── pbRichTextarea.json │ │ │ ├── pbSaveButton.json │ │ │ ├── pbSelect.json │ │ │ ├── pbTabContainer.json │ │ │ ├── pbTable.json │ │ │ ├── pbTabsContainer.json │ │ │ ├── pbText.json │ │ │ ├── pbTextarea.json │ │ │ ├── pbTitle.json │ │ │ └── pbUpload.json │ │ │ ├── customMyWidget │ │ │ ├── customMyWidget.ctrl.js │ │ │ ├── customMyWidget.js │ │ │ ├── customMyWidget.json │ │ │ └── customMyWidget.tpl.html │ │ │ ├── pbAutocomplete │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ └── js │ │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ │ ├── pbAutocomplete.ctrl.js │ │ │ ├── pbAutocomplete.js │ │ │ ├── pbAutocomplete.json │ │ │ └── pbAutocomplete.tpl.html │ │ │ ├── pbButton │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── style.css │ │ │ ├── help.html │ │ │ ├── pbButton.ctrl.js │ │ │ ├── pbButton.js │ │ │ ├── pbButton.json │ │ │ └── pbButton.tpl.html │ │ │ ├── pbChart │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── angular-chart-0.8.1.css │ │ │ │ └── js │ │ │ │ │ ├── Chart-1.0.2.min.js │ │ │ │ │ └── angular-chart-0.8.1.min.js │ │ │ ├── pbChart.ctrl.js │ │ │ ├── pbChart.js │ │ │ ├── pbChart.json │ │ │ └── pbChart.tpl.html │ │ │ ├── pbCheckbox │ │ │ ├── pbCheckbox.ctrl.js │ │ │ ├── pbCheckbox.js │ │ │ ├── pbCheckbox.json │ │ │ └── pbCheckbox.tpl.html │ │ │ ├── pbChecklist │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── checklist.css │ │ │ ├── pbChecklist.ctrl.js │ │ │ ├── pbChecklist.js │ │ │ ├── pbChecklist.json │ │ │ └── pbChecklist.tpl.html │ │ │ ├── pbContainer │ │ │ ├── pbContainer.js │ │ │ ├── pbContainer.json │ │ │ └── pbContainer.tpl.html │ │ │ ├── pbCurrencyInput │ │ │ ├── assets │ │ │ │ └── js │ │ │ │ │ └── angularjs-currency-input-mask-1.1.7-patched.min.js │ │ │ ├── pbCurrencyInput.ctrl.js │ │ │ ├── pbCurrencyInput.js │ │ │ ├── pbCurrencyInput.json │ │ │ └── pbCurrencyInput.tpl.html │ │ │ ├── pbDataTable │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── bonita-lib-0.5.21.css │ │ │ │ └── js │ │ │ │ │ ├── bonita-lib-tpl-0.5.21.js │ │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ │ ├── help.html │ │ │ ├── pbDataTable.ctrl.js │ │ │ ├── pbDataTable.js │ │ │ ├── pbDataTable.json │ │ │ └── pbDataTable.tpl.html │ │ │ ├── pbDatePicker │ │ │ ├── assets │ │ │ │ └── js │ │ │ │ │ ├── angular-strap-2.3.9-patched-dateTimePicker-setValidity.compat.min.js │ │ │ │ │ └── angular-strap-2.3.9-patched-dateTimePicker-setValidity.tpl.min.js │ │ │ ├── help.html │ │ │ ├── pbDatePicker.ctrl.js │ │ │ ├── pbDatePicker.js │ │ │ ├── pbDatePicker.json │ │ │ └── pbDatePicker.tpl.html │ │ │ ├── pbDateTimePicker │ │ │ ├── assets │ │ │ │ └── js │ │ │ │ │ ├── angular-moment-0.10.3.min.js │ │ │ │ │ ├── angular-strap-2.3.9-patched-dateTimePicker-setValidity.compat.min.js │ │ │ │ │ ├── angular-strap-2.3.9-patched-dateTimePicker-setValidity.tpl.min.js │ │ │ │ │ └── moment-2.11.2.min.js │ │ │ ├── help.html │ │ │ ├── pbDateTimePicker.ctrl.js │ │ │ ├── pbDateTimePicker.js │ │ │ ├── pbDateTimePicker.json │ │ │ └── pbDateTimePicker.tpl.html │ │ │ ├── pbFileViewer │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── fancy_close.png │ │ │ │ │ ├── fancybox-x.png │ │ │ │ │ ├── fancybox-y.png │ │ │ │ │ ├── fancybox.png │ │ │ │ │ ├── jquery.fancybox-1.3.4.css │ │ │ │ │ └── style.css │ │ │ │ └── js │ │ │ │ │ ├── box-viewer.directive.js │ │ │ │ │ ├── jquery-3.5.1.min.js │ │ │ │ │ └── jquery.fancybox-1.3.4.pack.js │ │ │ ├── pbFileViewer.ctrl.js │ │ │ ├── pbFileViewer.js │ │ │ ├── pbFileViewer.json │ │ │ └── pbFileViewer.tpl.html │ │ │ ├── pbFormContainer │ │ │ ├── pbFormContainer.js │ │ │ ├── pbFormContainer.json │ │ │ └── pbFormContainer.tpl.html │ │ │ ├── pbImage │ │ │ ├── pbImage.js │ │ │ ├── pbImage.json │ │ │ └── pbImage.tpl.html │ │ │ ├── pbInput │ │ │ ├── pbInput.ctrl.js │ │ │ ├── pbInput.js │ │ │ ├── pbInput.json │ │ │ └── pbInput.tpl.html │ │ │ ├── pbLink │ │ │ ├── assets │ │ │ │ └── js │ │ │ │ │ └── http-param-serializer.service.js │ │ │ ├── pbLink.ctrl.js │ │ │ ├── pbLink.js │ │ │ ├── pbLink.json │ │ │ └── pbLink.tpl.html │ │ │ ├── pbModalContainer │ │ │ ├── assets │ │ │ │ └── js │ │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ │ ├── help.html │ │ │ ├── pbModalContainer.ctrl.js │ │ │ ├── pbModalContainer.js │ │ │ ├── pbModalContainer.json │ │ │ └── pbModalContainer.tpl.html │ │ │ ├── pbRadioButtons │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── radio-buttons.css │ │ │ ├── pbRadioButtons.ctrl.js │ │ │ ├── pbRadioButtons.js │ │ │ ├── pbRadioButtons.json │ │ │ └── pbRadioButtons.tpl.html │ │ │ ├── pbRichTextarea │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome-4.5.0.css │ │ │ │ │ └── textAngular-1.4.6.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ └── js │ │ │ │ │ ├── rangy-core.js │ │ │ │ │ ├── rangy-selectionsaverestore.js │ │ │ │ │ ├── textAngular-1.4.6.min.js │ │ │ │ │ ├── textAngular-sanitize-1.4.6.min.js │ │ │ │ │ └── textAngular.i18n.config.js │ │ │ ├── pbRichTextarea.ctrl.js │ │ │ ├── pbRichTextarea.js │ │ │ ├── pbRichTextarea.json │ │ │ └── pbRichTextarea.tpl.html │ │ │ ├── pbSaveButton │ │ │ ├── help.html │ │ │ ├── pbSaveButton.ctrl.js │ │ │ ├── pbSaveButton.js │ │ │ ├── pbSaveButton.json │ │ │ └── pbSaveButton.tpl.html │ │ │ ├── pbSelect │ │ │ ├── pbSelect.ctrl.js │ │ │ ├── pbSelect.js │ │ │ ├── pbSelect.json │ │ │ └── pbSelect.tpl.html │ │ │ ├── pbTabContainer │ │ │ ├── assets │ │ │ │ └── js │ │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ │ ├── pbTabContainer.js │ │ │ ├── pbTabContainer.json │ │ │ └── pbTabContainer.tpl.html │ │ │ ├── pbTable │ │ │ ├── help.html │ │ │ ├── pbTable.ctrl.js │ │ │ ├── pbTable.js │ │ │ ├── pbTable.json │ │ │ └── pbTable.tpl.html │ │ │ ├── pbTabsContainer │ │ │ ├── assets │ │ │ │ └── js │ │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ │ ├── help.html │ │ │ ├── pbTabsContainer.js │ │ │ ├── pbTabsContainer.json │ │ │ └── pbTabsContainer.tpl.html │ │ │ ├── pbText │ │ │ ├── pbText.js │ │ │ ├── pbText.json │ │ │ └── pbText.tpl.html │ │ │ ├── pbTextarea │ │ │ ├── pbTextarea.ctrl.js │ │ │ ├── pbTextarea.js │ │ │ ├── pbTextarea.json │ │ │ └── pbTextarea.tpl.html │ │ │ ├── pbTitle │ │ │ ├── pbTitle.js │ │ │ ├── pbTitle.json │ │ │ └── pbTitle.tpl.html │ │ │ └── pbUpload │ │ │ ├── assets │ │ │ ├── css │ │ │ │ └── file-upload.css │ │ │ └── js │ │ │ │ └── ng-upload-0.5.19-patched.min.js │ │ │ ├── pbUpload.ctrl.js │ │ │ ├── pbUpload.js │ │ │ ├── pbUpload.json │ │ │ └── pbUpload.tpl.html │ ├── legacyBDM.bos │ ├── page-APageToImport.zip │ ├── procurement-example │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── hooks │ │ │ ├── applypatch-msg.sample │ │ │ ├── commit-msg.sample │ │ │ ├── fsmonitor-watchman.sample │ │ │ ├── post-update.sample │ │ │ ├── pre-applypatch.sample │ │ │ ├── pre-commit.sample │ │ │ ├── pre-merge-commit.sample │ │ │ ├── pre-push.sample │ │ │ ├── pre-rebase.sample │ │ │ ├── pre-receive.sample │ │ │ ├── prepare-commit-msg.sample │ │ │ └── update.sample │ │ ├── info │ │ │ └── exclude │ │ ├── objects │ │ │ └── pack │ │ │ │ ├── pack-6b8116b37f9be283c4d2568fd73abe655a3d081e.idx │ │ │ │ └── pack-6b8116b37f9be283c4d2568fd73abe655a3d081e.pack │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── project-with-extensions.bos │ ├── smartImport │ │ ├── model_conflicting_not_ok.zip │ │ ├── model_conflicting_ok.zip │ │ ├── model_initial.zip │ │ └── model_not_conflicting.zip │ ├── testExplorerApplicationFile.xml │ └── valid_uid_workspace │ │ ├── web_fragments │ │ ├── .metadata │ │ │ └── MyFragment.json │ │ └── MyFragment │ │ │ ├── MyFragment.js │ │ │ └── MyFragment.json │ │ ├── web_page │ │ ├── .metadata │ │ │ ├── .index.json │ │ │ ├── MyForm.json │ │ │ ├── MyLayout.json │ │ │ └── MyPage.json │ │ ├── MyForm │ │ │ ├── MyForm.json │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── json │ │ │ │ └── localization.json │ │ ├── MyLayout │ │ │ ├── MyLayout.json │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── json │ │ │ │ └── localization.json │ │ └── MyPage │ │ │ ├── MyPage.json │ │ │ └── assets │ │ │ ├── css │ │ │ └── style.css │ │ │ └── json │ │ │ └── localization.json │ │ └── web_widgets │ │ ├── .metadata │ │ ├── customMyWidget.json │ │ ├── pbAutocomplete.json │ │ ├── pbButton.json │ │ ├── pbChart.json │ │ ├── pbCheckbox.json │ │ ├── pbChecklist.json │ │ ├── pbContainer.json │ │ ├── pbCurrencyInput.json │ │ ├── pbDataTable.json │ │ ├── pbDatePicker.json │ │ ├── pbDateTimePicker.json │ │ ├── pbFileViewer.json │ │ ├── pbFormContainer.json │ │ ├── pbImage.json │ │ ├── pbInput.json │ │ ├── pbLink.json │ │ ├── pbModalContainer.json │ │ ├── pbRadioButtons.json │ │ ├── pbRichTextarea.json │ │ ├── pbSaveButton.json │ │ ├── pbSelect.json │ │ ├── pbTabContainer.json │ │ ├── pbTable.json │ │ ├── pbTabsContainer.json │ │ ├── pbText.json │ │ ├── pbTextarea.json │ │ ├── pbTitle.json │ │ └── pbUpload.json │ │ ├── customMyWidget │ │ ├── customMyWidget.ctrl.js │ │ ├── customMyWidget.js │ │ ├── customMyWidget.json │ │ └── customMyWidget.tpl.html │ │ ├── pbAutocomplete │ │ ├── assets │ │ │ ├── css │ │ │ │ └── style.css │ │ │ └── js │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ ├── pbAutocomplete.ctrl.js │ │ ├── pbAutocomplete.js │ │ ├── pbAutocomplete.json │ │ └── pbAutocomplete.tpl.html │ │ ├── pbButton │ │ ├── assets │ │ │ └── css │ │ │ │ └── style.css │ │ ├── help.html │ │ ├── pbButton.ctrl.js │ │ ├── pbButton.js │ │ ├── pbButton.json │ │ └── pbButton.tpl.html │ │ ├── pbChart │ │ ├── assets │ │ │ ├── css │ │ │ │ └── angular-chart-0.8.1.css │ │ │ └── js │ │ │ │ ├── Chart-1.0.2.min.js │ │ │ │ └── angular-chart-0.8.1.min.js │ │ ├── pbChart.ctrl.js │ │ ├── pbChart.js │ │ ├── pbChart.json │ │ └── pbChart.tpl.html │ │ ├── pbCheckbox │ │ ├── pbCheckbox.ctrl.js │ │ ├── pbCheckbox.js │ │ ├── pbCheckbox.json │ │ └── pbCheckbox.tpl.html │ │ ├── pbChecklist │ │ ├── assets │ │ │ └── css │ │ │ │ └── checklist.css │ │ ├── pbChecklist.ctrl.js │ │ ├── pbChecklist.js │ │ ├── pbChecklist.json │ │ └── pbChecklist.tpl.html │ │ ├── pbContainer │ │ ├── pbContainer.js │ │ ├── pbContainer.json │ │ └── pbContainer.tpl.html │ │ ├── pbCurrencyInput │ │ ├── assets │ │ │ └── js │ │ │ │ └── angularjs-currency-input-mask-1.1.7-patched.min.js │ │ ├── pbCurrencyInput.ctrl.js │ │ ├── pbCurrencyInput.js │ │ ├── pbCurrencyInput.json │ │ └── pbCurrencyInput.tpl.html │ │ ├── pbDataTable │ │ ├── assets │ │ │ ├── css │ │ │ │ └── bonita-lib-0.5.21.css │ │ │ └── js │ │ │ │ ├── bonita-lib-tpl-0.5.21.js │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ ├── help.html │ │ ├── pbDataTable.ctrl.js │ │ ├── pbDataTable.js │ │ ├── pbDataTable.json │ │ └── pbDataTable.tpl.html │ │ ├── pbDatePicker │ │ ├── assets │ │ │ └── js │ │ │ │ ├── angular-strap-2.3.9-patched-dateTimePicker-setValidity.compat.min.js │ │ │ │ └── angular-strap-2.3.9-patched-dateTimePicker-setValidity.tpl.min.js │ │ ├── help.html │ │ ├── pbDatePicker.ctrl.js │ │ ├── pbDatePicker.js │ │ ├── pbDatePicker.json │ │ └── pbDatePicker.tpl.html │ │ ├── pbDateTimePicker │ │ ├── assets │ │ │ └── js │ │ │ │ ├── angular-moment-0.10.3.min.js │ │ │ │ ├── angular-strap-2.3.9-patched-dateTimePicker-setValidity.compat.min.js │ │ │ │ ├── angular-strap-2.3.9-patched-dateTimePicker-setValidity.tpl.min.js │ │ │ │ └── moment-2.11.2.min.js │ │ ├── help.html │ │ ├── pbDateTimePicker.ctrl.js │ │ ├── pbDateTimePicker.js │ │ ├── pbDateTimePicker.json │ │ └── pbDateTimePicker.tpl.html │ │ ├── pbFileViewer │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── blank.gif │ │ │ │ ├── fancy_close.png │ │ │ │ ├── fancybox-x.png │ │ │ │ ├── fancybox-y.png │ │ │ │ ├── fancybox.png │ │ │ │ ├── jquery.fancybox-1.3.4.css │ │ │ │ └── style.css │ │ │ └── js │ │ │ │ ├── box-viewer.directive.js │ │ │ │ ├── jquery-3.5.1.min.js │ │ │ │ └── jquery.fancybox-1.3.4.pack.js │ │ ├── pbFileViewer.ctrl.js │ │ ├── pbFileViewer.js │ │ ├── pbFileViewer.json │ │ └── pbFileViewer.tpl.html │ │ ├── pbFormContainer │ │ ├── pbFormContainer.js │ │ ├── pbFormContainer.json │ │ └── pbFormContainer.tpl.html │ │ ├── pbImage │ │ ├── pbImage.js │ │ ├── pbImage.json │ │ └── pbImage.tpl.html │ │ ├── pbInput │ │ ├── pbInput.ctrl.js │ │ ├── pbInput.js │ │ ├── pbInput.json │ │ └── pbInput.tpl.html │ │ ├── pbLink │ │ ├── assets │ │ │ └── js │ │ │ │ └── http-param-serializer.service.js │ │ ├── pbLink.ctrl.js │ │ ├── pbLink.js │ │ ├── pbLink.json │ │ └── pbLink.tpl.html │ │ ├── pbModalContainer │ │ ├── assets │ │ │ └── js │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ ├── help.html │ │ ├── pbModalContainer.ctrl.js │ │ ├── pbModalContainer.js │ │ ├── pbModalContainer.json │ │ └── pbModalContainer.tpl.html │ │ ├── pbRadioButtons │ │ ├── assets │ │ │ └── css │ │ │ │ └── radio-buttons.css │ │ ├── pbRadioButtons.ctrl.js │ │ ├── pbRadioButtons.js │ │ ├── pbRadioButtons.json │ │ └── pbRadioButtons.tpl.html │ │ ├── pbRichTextarea │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── font-awesome-4.5.0.css │ │ │ │ └── textAngular-1.4.6.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── js │ │ │ │ ├── rangy-core.js │ │ │ │ ├── rangy-selectionsaverestore.js │ │ │ │ ├── textAngular-1.4.6.min.js │ │ │ │ ├── textAngular-sanitize-1.4.6.min.js │ │ │ │ └── textAngular.i18n.config.js │ │ ├── pbRichTextarea.ctrl.js │ │ ├── pbRichTextarea.js │ │ ├── pbRichTextarea.json │ │ └── pbRichTextarea.tpl.html │ │ ├── pbSaveButton │ │ ├── help.html │ │ ├── pbSaveButton.ctrl.js │ │ ├── pbSaveButton.js │ │ ├── pbSaveButton.json │ │ └── pbSaveButton.tpl.html │ │ ├── pbSelect │ │ ├── pbSelect.ctrl.js │ │ ├── pbSelect.js │ │ ├── pbSelect.json │ │ └── pbSelect.tpl.html │ │ ├── pbTabContainer │ │ ├── assets │ │ │ └── js │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ ├── pbTabContainer.js │ │ ├── pbTabContainer.json │ │ └── pbTabContainer.tpl.html │ │ ├── pbTable │ │ ├── help.html │ │ ├── pbTable.ctrl.js │ │ ├── pbTable.js │ │ ├── pbTable.json │ │ └── pbTable.tpl.html │ │ ├── pbTabsContainer │ │ ├── assets │ │ │ └── js │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ ├── help.html │ │ ├── pbTabsContainer.js │ │ ├── pbTabsContainer.json │ │ └── pbTabsContainer.tpl.html │ │ ├── pbText │ │ ├── pbText.js │ │ ├── pbText.json │ │ └── pbText.tpl.html │ │ ├── pbTextarea │ │ ├── pbTextarea.ctrl.js │ │ ├── pbTextarea.js │ │ ├── pbTextarea.json │ │ └── pbTextarea.tpl.html │ │ ├── pbTitle │ │ ├── pbTitle.js │ │ ├── pbTitle.json │ │ └── pbTitle.tpl.html │ │ └── pbUpload │ │ ├── assets │ │ ├── css │ │ │ └── file-upload.css │ │ └── js │ │ │ └── ng-upload-0.5.19-patched.min.js │ │ ├── pbUpload.ctrl.js │ │ ├── pbUpload.js │ │ ├── pbUpload.json │ │ └── pbUpload.tpl.html └── src │ └── org │ └── bonitasoft │ └── studio │ └── tests │ ├── Activator.java │ ├── BonitaProjectIT.java │ ├── IHeapDumper.java │ ├── TestFullScenario.java │ ├── TestLifeCycleManager.java │ ├── TestPatchedBundles.java │ ├── TestPathSize.java │ ├── applicationDescriptor │ ├── ApplicationDescriptorIT.java │ ├── ApplicationDescriptorOverviewIT.java │ └── OpenExistingApplicationIT.java │ ├── bar │ ├── BarExporterTest.java │ ├── ExportBarIT.java │ ├── MockPartChangeListener.java │ ├── TestExportProcessBar.java │ ├── TestExportProcessBarWithDocument-1.0.bos │ ├── TestMenus.java │ └── _2Pools_1.0.proc │ ├── businessobject │ ├── CreateDeployExportBusinessObjectIT.java │ ├── DeployBDMOperationIT.java │ ├── ImportLegacyBDMIT.java │ └── SmartImportBdmIT.java │ ├── conditions │ ├── SWTBOTTestConditions.java │ ├── TestConditions.java │ └── testConditions-2.0.bos │ ├── configuration │ ├── ConfigurationDialogIT.java │ ├── DiagramWithLotOfDependencies-1.0.bos │ ├── JavaDependenciesConfigurationIT.java │ ├── TestConfigurationSynhronizer.java │ └── TestImport-1.0.bos │ ├── connectors │ ├── AdvancedDBConnectorsTest.java │ ├── ConnectorEditedInAsingleCommandIT.java │ ├── GroovyConnectorIT.java │ ├── GroovyConnectorTest-1.0.bos │ ├── RichTextEditorIT.java │ ├── SampleConnectorDef-impl-1.0.0.zip │ ├── TestConnectorOperationIT.java │ ├── TestDatabaseConnectorOutputMode.java │ ├── TestWebserviceVersionForBPMNImport.java │ ├── process-cloner-impl-1.0.0.zip │ └── sforce │ │ ├── AbstractSforceTest.java │ │ ├── SalesforceMockUtil.java │ │ ├── TestSForceConnection.java │ │ ├── TestSForceCreateObject.java │ │ ├── TestSForceDeleteObject.java │ │ ├── TestSForceQueryObject.java │ │ ├── TestSForceRetrieveObject.java │ │ └── TestSForceUpdateObject.java │ ├── contract │ └── ContractIT.java │ ├── data │ ├── DataRefactorIT.java │ ├── DataWizardIT.java │ ├── ProcessWithData_1_0.bos │ └── TestDocumentRefactor.java │ ├── date │ └── TestDateProcess_1.0.proc │ ├── deploy │ ├── DeployWizardIT.java │ ├── ProcessForSubProcessLoopTest-1-1.0.bos │ ├── ProcessForSubProcessLoopTest-2-1.0.bos │ ├── ProcessForTestBug2204.bos │ ├── TestDeployCommand.java │ └── TestTwiceDeployWithSubProc-1.0.bos │ ├── designer │ ├── MigrateUIDOperationIT.java │ └── UIDArtifactCreationIT.java │ ├── diagram │ ├── 0_ProcessToTestOverride--1.0.bar │ ├── 1_ProcessToTestOverride--1.0.bar │ ├── 2_ProcessToTestOverride--1.0.bar │ ├── BoundaryProcess_1_0.bos │ ├── ConvertActivityTypeWithBoundariesIT.java │ ├── CopyPasteTests.java │ ├── DeleteCommandTest.java │ ├── DiagramTests.java │ ├── DuplicateCommandTest.java │ ├── Elements2Delete-1.0.bos │ ├── ExtractAsSubprocessTest.java │ ├── MonProcessus5--1.0.proc │ ├── NewRunTest.java │ ├── ProcWithSameNameAndVersion_1_0.bos │ ├── ProcessWithData_1_0.bos │ ├── RunCondition.java │ ├── TestBoundariesCreation.java │ ├── TestConvertActivityTypeWithCompatibleBoundary-1.0.bos │ ├── TestConvertActivityWithMessageBoundary-1.0.bos │ ├── TestConvertActivtyWithTimerBoundary-1.0.bos │ ├── TestMoveBetweenLane.java │ ├── TestRenameDiagram.java │ ├── TestUndoRedoStackLimit.java │ ├── TestWebPurchase.java │ ├── _1ProcWithSameNameAndVersion_1_0.bos │ └── _2ProcWithSameNameAndVersion_1_0.bos │ ├── dialog │ ├── OpenNameAndVersionDiagramForDiagramTest.java │ └── OpenNameAndVersionForDiagramDialogTest.java │ ├── document │ ├── DocumentRefactoring-1.0.bos │ ├── Idea.jpg │ ├── ProcessWithAttachment_1_0.bos │ ├── RefactorDocumentOperationTest.java │ ├── TestDocument.java │ ├── TestDocumentRefactoring.java │ └── TestRunWithDocument.java │ ├── draw2d │ └── TestLifeCycleWidget.java │ ├── duplicate │ ├── Test confirmation template-1.0.bos │ └── TestDuplicate.java │ ├── engine │ ├── Required_Action--1.0.proc │ ├── RuntimeIntegrationIT.java │ ├── TestSubp--1.0.bar │ ├── TestSubp-1.0.bos │ └── TestSubprocessEventExport.java │ ├── environment │ └── EnvironmentDialogIT.java │ ├── exporter │ ├── ExportBosArchiveIT.java │ └── bpmn │ │ ├── BPMNConnectorExportImportTest.java │ │ ├── BPMNDataExportImportTest.java │ │ ├── BPMNEventSubProcessExportImportTest.java │ │ ├── BPMNExportImportMessageDataTest.java │ │ ├── BPMNExportTests.java │ │ ├── BPMNGatewayExportImportTest.java │ │ ├── BPMNImportExportTest.java │ │ ├── BPMNSequenceFlowConditionExportImportTest.java │ │ ├── BPMNSequenceFlowDefaultFlowExportImportTest.java │ │ ├── BPMNTestUtil.java │ │ ├── Delivery-to-Payment.bpmn │ │ ├── EasyBugFilingProcess.bpmn │ │ ├── Front office.bpmn │ │ ├── Interchange Demo.bpmn │ │ ├── MessageDataTestValue-1.0.bos │ │ ├── MyDiagram2.bpmn │ │ ├── MyDiagramToTestDefaultFlowInBPMN-1.0.bos │ │ ├── TestExportToBPMNDiagram_1_0.bos │ │ ├── bpmn2sample │ │ ├── Correlation │ │ │ └── Buyer Seller │ │ │ │ ├── CorrelationExampleSeller.bpmn │ │ │ │ ├── DataDefinitions.xsd │ │ │ │ └── Interfaces.wsdl │ │ ├── Diagram Interchange │ │ │ ├── Examples - DI - Choreography.bpmn │ │ │ ├── Examples - DI - Choreography.vsd │ │ │ ├── Examples - DI - Conversation.bpmn │ │ │ ├── Examples - DI - Conversation.vsd │ │ │ ├── Examples - DI - Expanded Sub-Process.bpmn │ │ │ ├── Examples - DI - Expanded Sub-Process.vsd │ │ │ ├── Examples - DI - Lanes and Nested Lanes.bpmn │ │ │ ├── Examples - DI - Lanes and Nested Lanes.vsd │ │ │ ├── Examples - DI - Vertical Collaboration.bpmn │ │ │ ├── Examples - DI - Vertical Collaboration.vsd │ │ │ ├── Examples - DI -Collapsed Sub-Process.bpmn │ │ │ └── Examples - DI -Collapsed Sub-Process.vsd │ │ ├── Hardware Retailer │ │ │ ├── triso - Hardware Retailer v2.bpmn │ │ │ └── triso - Hardware Retailer v2.vsd │ │ ├── Incident Management │ │ │ ├── Incident Management - coll chor.bpmn │ │ │ ├── Incident Management - coll chor.vsd │ │ │ ├── Incident Management level 1.bpmn │ │ │ ├── Incident Management level 1.vsd │ │ │ ├── Incident Management(Account Manager Only).bpmn │ │ │ ├── Incident Management(Account Manager Only).vsd │ │ │ ├── Incident Management(Process Engine Executable).bpmn │ │ │ ├── Incident Management(Process Engine Only).bpmn │ │ │ ├── Incident Management(Process Engine Only).vsd │ │ │ ├── Incident Management(Whole Collab).bpmn │ │ │ └── Incident Management(Whole Collab).vsd │ │ ├── Models & Diagrams │ │ │ ├── Call Activity.bpmn │ │ │ ├── Call Activity.vsd │ │ │ ├── Collapsed SubProcess.bpmn │ │ │ ├── Collapsed SubProcess.vsd │ │ │ ├── Expanded SubProcess.bpmn │ │ │ ├── Expanded SubProcess.vsd │ │ │ ├── Laneset.bpmn │ │ │ ├── Laneset.vsd │ │ │ ├── Pool.bpmn │ │ │ ├── Pool.vsd │ │ │ ├── Process.bpmn │ │ │ └── Process.vsd │ │ ├── Nobel Prize │ │ │ ├── Nobel Prize Process.VSD │ │ │ └── Nobel Prize Process.bpmn │ │ ├── Order Fulfillment │ │ │ ├── Procurement Processes with Error Handling - Stencil Trisotech 3 pages.bpmn │ │ │ └── Procurement Processes with Error Handling - Stencil Trisotech 3 pages.vdx │ │ ├── Pizza │ │ │ ├── triso - Order Process for Pizza V4.bpmn │ │ │ └── triso - Order Process for Pizza V4.vsd │ │ ├── Travel Booking │ │ │ ├── Tavel Booking.bpmn │ │ │ └── Tavel Booking.vsd │ │ └── eMail Voting │ │ │ ├── Email Voting 2.VSD │ │ │ └── Email Voting 2.bpmn │ │ ├── brucesample │ │ ├── myTask.bpmn │ │ ├── myTaskMyPool-corrected.bpmn │ │ ├── myTaskMyPool.bpmn │ │ ├── ourProc-corrected.bpmn │ │ ├── ourProc.bpmn │ │ ├── ourProcNoPool-corrected.bpmn │ │ ├── ourProcNoPool.bpmn │ │ ├── ourReusable-corected.bpmn │ │ ├── ourReusable.bpmn │ │ ├── ourSubs-corrected.bpmn │ │ ├── ourSubs.bpmn │ │ ├── ourSubsNoPool-corrected.bpmn │ │ └── ourSubsNoPool.bpmn │ │ ├── connector-definition-descriptor.xsd │ │ ├── connector-implementation-descriptor.xsd │ │ ├── diagramToTestConnectorBPMNImportExport-1.0.bos │ │ ├── diagramToTestGateways-6.0.bos │ │ ├── diagramtoTestEventSubProcess-1.0.bos │ │ ├── testBPMNDataMapping-1.0.bos │ │ ├── two pools.bpmn │ │ ├── withAll.bpmn │ │ └── withMessageFlow.bpmn │ ├── expressionEditor │ ├── ExpressionEditorIT.java │ └── TestPatternExpressionViewer.java │ ├── git │ ├── GitCloneIT.java │ ├── GitIgnoreTests.java │ └── ShareWithGitIT.java │ ├── importer │ ├── api │ │ └── ProcBuilderTests.java │ ├── bos │ │ ├── ConnectorInFormsForTests-1.0.bos │ │ ├── FillDBForDemo_1_0.bos │ │ ├── ImportBOSArchiveIT.java │ │ ├── ImportBOSArchiveWizardIT.java │ │ ├── MyDiagram_1_0.bos │ │ ├── TestImportUserChoices-1.0.bos │ │ ├── conflictingArchive │ │ │ └── ConnectorInFormsForTests-1.0.bos │ │ ├── severalDiagramsImportTest.bos │ │ ├── testConflicts-toImport │ │ │ └── TestImportUserChoices-1.0.bos │ │ └── testRepo_100912_1757.bos │ └── bpmn2 │ │ ├── EasyBugFilingProcess.bpmn │ │ ├── FinancialReportProcess.bpmn │ │ ├── ImportBPMMNFileIT.java │ │ ├── TaskAssigneeTest.testTaskAssignee.bpmn │ │ ├── TestImportBPMN2.java │ │ ├── VacationRequest.bpmn │ │ ├── definitionsTest2.bpmn │ │ ├── definitionsTest3.bpmn │ │ ├── signaviosamples │ │ ├── Delivery-to-Payment.bpmn │ │ ├── Purchase Order-to-Delivery.bpmn │ │ └── Purchase Requisition-to-Purchase Order.bpmn │ │ ├── standardProcess.bpmn │ │ ├── standardProcess_badNameSpace.bpmn │ │ ├── testimport.bpmn │ │ ├── withAll.bpmn │ │ ├── withMessageFlow.bpmn │ │ └── withSubProc.bpmn │ ├── iteration │ └── MultiInstantiationIT.java │ ├── migration │ ├── DiagramToTestDocumentTypeMigration-1.0.bos │ ├── DocumentMigrationIT.java │ ├── MultipleDocumentDiagram-1.0.bos │ └── ProjectMigrationWizardTest.java │ ├── organization │ ├── ACME-Alpha.xml │ ├── ImportOrganizationIT.java │ ├── OrganizationIT.java │ ├── OrganizationTest.xml │ ├── OrganizationWithEncryptedPassword.xml │ ├── TestExportOrganization.java │ ├── TestOrganizationPassword.java │ ├── oldOrganizationTest.xml │ └── toto.xml │ ├── parameter │ ├── Parameters.properties │ ├── Pool1_Context1 dfg.xml │ ├── TestParametersRefactoring.java │ ├── TestProcessParameters.java │ └── testParametersRefactoring-1.0.bos │ ├── preferences │ ├── LocaleUtilIT.java │ └── MavenConfigurationIT.java │ ├── project │ ├── ProjectCompositionIT.java │ └── ProjectOverviewIT.java │ ├── projectExplorer │ ├── ProjectExplorerBdmIT.java │ ├── ProjectExplorerDiagramIT.java │ ├── ProjectExplorerLivingApplicationIT.java │ ├── ProjectExplorerOrganizationIT.java │ └── ProjectExplorerRestApiIT.java │ ├── properties │ ├── CallActivityMappingIT.java │ ├── DemoMessageContentCorrelation-1.0.proc │ ├── ITTest-CallActivityMapping-1.0.bos │ ├── TestCatchMessageSelectionTest-1.0.proc │ ├── TestDecisionTable-1.0.bos │ ├── TestDecisionTable.java │ ├── TestExportToBPMNDiagram_1_0.bos │ ├── TestMessageRefactoring.java │ ├── TestRefactoringMessage.bos │ └── TestThrowCatchMessage.java │ ├── repository │ ├── AttachmentsForImportExportTest.zip │ ├── ConnectorConfigurationsFOrImportExportTest.zip │ ├── ConnectorsFOrImportExportTest.zip │ ├── DiagramForTestImportExportRepository_1.0.proc │ ├── Email-SaveConfigurationForImportExportTest.configuration │ ├── GroovyScriptsForImportExportTestRepository.zip │ ├── JarForTestImportExportRepository.jar │ ├── JarsForImportExportTest.zip │ ├── Machin_Corp.looknfeel │ ├── ProcessesForTestImportExport.zip │ ├── Test Attachment Import-1.0.bos │ ├── TestConnectorBis.jar │ ├── TestImportExportAndDeleteRepository.java │ ├── TestImportRepository.java │ ├── TestSeveralLocalRepositories.java │ ├── UIDesignerWorkspaceIntegrationIT.java │ ├── ValidatorForImportExportTestRepository.jar │ ├── ValidatorsForImportExportTest.zip │ ├── antlr-2.7.7-1.jar │ ├── antlr-2.7.7-2.jar │ └── testConnectorWithCategoryIcon.jar │ ├── restApiExtension │ ├── BuildAndDeployRestAPIExtensionIT.java │ ├── CreateRestAPIExtensionProjectIT.java │ ├── ExportRestAPIExtensionProjectIT.java │ └── RestAPIExtensionMarkerResolutionIT.java │ ├── searchindex │ ├── SearchIndex-1.0.bos │ ├── SearchIndexesTest.java │ ├── TestRunSearchIndex.java │ ├── TestSearchIndexRefactoring.java │ └── searchIndexRefactoringTest-1.0.bos │ ├── subprocess │ ├── ActivityToAdmin-1.0.bos │ ├── Calculator-1.0.bos │ ├── DynamicSubprocess-1.0.bos │ ├── InvokeActivityToAdmin-1.0.bos │ ├── InvokeCalculator-1.0.bos │ ├── ParentSubProcEvent-1.0.bos │ └── TestSubprocess.java │ ├── timer │ ├── TestNonInterruptingBoundaryTimerEvent.java │ ├── TestNonInterruptingTimerEvent-1.0.bos │ ├── TestTimer.java │ └── TestTimer_1_0.bos │ ├── util │ ├── Await.java │ ├── BonitaSuite.java │ ├── EngineAPIUtil.java │ ├── InitialProjectRule.java │ ├── ProjectUtil.java │ └── ResourceMarkerHelper.java │ └── validation │ ├── BS-10043_InfiniteLoopValidation-1.0.bos │ ├── GatewayInclusiveMergeConstraint-1.0.bos │ ├── TestAssignableConstraint-1.0.bos │ ├── TestTokenDispatcher.java │ ├── TestValidationConstraints.java │ └── XORGatewayConstraint-1.0.bos ├── pom.xml ├── tests-common-feature ├── .project ├── build.properties ├── feature.xml └── pom.xml └── tests-feature ├── .project ├── build.properties ├── feature.xml └── pom.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/README.md -------------------------------------------------------------------------------- /all-in-one/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/.gitignore -------------------------------------------------------------------------------- /all-in-one/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/.project -------------------------------------------------------------------------------- /all-in-one/bonitastudio-features.p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/bonitastudio-features.p2.inf -------------------------------------------------------------------------------- /all-in-one/bonitastudio-features.product: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/bonitastudio-features.product -------------------------------------------------------------------------------- /all-in-one/createInstallerProject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/createInstallerProject.xml -------------------------------------------------------------------------------- /all-in-one/icons/bonitasoft-icon-128-128-transparent.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/icons/bonitasoft-icon-128-128-transparent.icns -------------------------------------------------------------------------------- /all-in-one/icons/bonitasoft-icon-128-128-transparent.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/icons/bonitasoft-icon-128-128-transparent.ico -------------------------------------------------------------------------------- /all-in-one/icons/bonitasoft.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/icons/bonitasoft.ico -------------------------------------------------------------------------------- /all-in-one/installer/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/i18n/messages.properties -------------------------------------------------------------------------------- /all-in-one/installer/i18n/messages_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/i18n/messages_es.properties -------------------------------------------------------------------------------- /all-in-one/installer/i18n/messages_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/i18n/messages_fr.properties -------------------------------------------------------------------------------- /all-in-one/installer/i18n/messages_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/i18n/messages_ja.properties -------------------------------------------------------------------------------- /all-in-one/installer/i18n/messages_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/i18n/messages_pt_BR.properties -------------------------------------------------------------------------------- /all-in-one/installer/images/.gitignore: -------------------------------------------------------------------------------- 1 | /splash.png 2 | -------------------------------------------------------------------------------- /all-in-one/installer/images/icon-installer-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/images/icon-installer-48.png -------------------------------------------------------------------------------- /all-in-one/installer/images/install.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/images/install.icns -------------------------------------------------------------------------------- /all-in-one/installer/images/leftImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/images/leftImage.png -------------------------------------------------------------------------------- /all-in-one/installer/images/slide01-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/images/slide01-01.png -------------------------------------------------------------------------------- /all-in-one/installer/images/slide02-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/images/slide02-01.png -------------------------------------------------------------------------------- /all-in-one/installer/images/slide03-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/images/slide03-01.png -------------------------------------------------------------------------------- /all-in-one/installer/images/splash_without_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/images/splash_without_version.png -------------------------------------------------------------------------------- /all-in-one/installer/images/topRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/images/topRight.png -------------------------------------------------------------------------------- /all-in-one/installer/images/windows.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/images/windows.ico -------------------------------------------------------------------------------- /all-in-one/installer/installer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/installer.properties -------------------------------------------------------------------------------- /all-in-one/installer/installer_project_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/installer/installer_project_template.xml -------------------------------------------------------------------------------- /all-in-one/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/pom.xml -------------------------------------------------------------------------------- /all-in-one/verify-packaging.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/all-in-one/verify-packaging.groovy -------------------------------------------------------------------------------- /bundles/features/bos-branding-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/bos-branding-feature/.project -------------------------------------------------------------------------------- /bundles/features/bos-branding-feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /bundles/features/bos-branding-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/bos-branding-feature/feature.xml -------------------------------------------------------------------------------- /bundles/features/bos-branding-feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/bos-branding-feature/pom.xml -------------------------------------------------------------------------------- /bundles/features/platform-specific-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/platform-specific-feature/.project -------------------------------------------------------------------------------- /bundles/features/platform-specific-feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml -------------------------------------------------------------------------------- /bundles/features/platform-specific-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/platform-specific-feature/feature.xml -------------------------------------------------------------------------------- /bundles/features/platform-specific-feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/platform-specific-feature/pom.xml -------------------------------------------------------------------------------- /bundles/features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/pom.xml -------------------------------------------------------------------------------- /bundles/features/rootfiles-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/rootfiles-feature/.project -------------------------------------------------------------------------------- /bundles/features/rootfiles-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/rootfiles-feature/build.properties -------------------------------------------------------------------------------- /bundles/features/rootfiles-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/rootfiles-feature/feature.xml -------------------------------------------------------------------------------- /bundles/features/rootfiles-feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/rootfiles-feature/pom.xml -------------------------------------------------------------------------------- /bundles/features/studio-bos-specific-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/studio-bos-specific-feature/.project -------------------------------------------------------------------------------- /bundles/features/studio-bos-specific-feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | root=file:gpl-2.0.txt -------------------------------------------------------------------------------- /bundles/features/studio-bos-specific-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/studio-bos-specific-feature/feature.xml -------------------------------------------------------------------------------- /bundles/features/studio-bos-specific-feature/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/studio-bos-specific-feature/gpl-2.0.txt -------------------------------------------------------------------------------- /bundles/features/studio-bos-specific-feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/studio-bos-specific-feature/pom.xml -------------------------------------------------------------------------------- /bundles/features/studio-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/studio-feature/.project -------------------------------------------------------------------------------- /bundles/features/studio-feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /bundles/features/studio-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/studio-feature/feature.xml -------------------------------------------------------------------------------- /bundles/features/studio-feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/features/studio-feature/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/bonita-studio-watchdog/.gitignore: -------------------------------------------------------------------------------- 1 | /.classpath 2 | /.project 3 | /.settings/ 4 | -------------------------------------------------------------------------------- /bundles/plugins/bonita-studio-watchdog/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/bonita-studio-watchdog/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/bonita-studio-watchdog/src/main/webapp/VERSION: -------------------------------------------------------------------------------- 1 | ${project.version} -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.engine.bonita-client/.gitignore: -------------------------------------------------------------------------------- 1 | /bonita-home 2 | /lib 3 | /tomcat 4 | /javadoc.zip 5 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.engine.bonita-client/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.engine.bonita-client/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.engine.bonita-client/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.engine.bonita-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.engine.bonita-client/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.engine.bonita-common/.gitignore: -------------------------------------------------------------------------------- 1 | /bonita-home 2 | /lib 3 | /tomcat 4 | /javadoc.zip 5 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.engine.bonita-common/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.engine.bonita-common/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.engine.bonita-common/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.engine.bonita-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.engine.bonita-common/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-models/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-models/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-models/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-models/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-models/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-models/README.adoc -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-models/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-models/build.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-models/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-models/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-models/process.gmfgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-models/process.gmfgen -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-models/process.gmfgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-models/process.gmfgraph -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-models/process.gmfmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-models/process.gmfmap -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-models/process.gmftool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-models/process.gmftool -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-product/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-product/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-product/.gitignore: -------------------------------------------------------------------------------- 1 | /splash.bmp 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-product/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-product/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-product/about.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-product/about.bmp -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-product/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-product/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio-product/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio-product/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.application.tests/.gitignore: -------------------------------------------------------------------------------- 1 | # Test resources 2 | !src/**/*.jar 3 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.application/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.application/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.application/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.application/.gitignore -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.application/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.application/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.application/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.application/logback.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.application/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.application/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.application/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.application/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.businessobject.tests/resources/README: -------------------------------------------------------------------------------- 1 | Put tests resources here -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.businessobject.tests/resources/workspace/tomcat/server/lib/bonita/h2-1.0.jar: -------------------------------------------------------------------------------- 1 | mock jar -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.businessobject.tests/resources/workspaceWithoutH2/tomcat/server/lib/bonita/postgres.jar: -------------------------------------------------------------------------------- 1 | mock jar for test -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.businessobject/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.businessobject/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.businessobject/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.businessobject/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.businessobject/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.diagram/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common.diagram/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.diagram/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common.diagram/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.repository/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common.tests/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.tests/resources/README: -------------------------------------------------------------------------------- 1 | Add tests resources here -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.ui.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common.ui.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.ui.tests/resources/README: -------------------------------------------------------------------------------- 1 | Add tests resources here -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common.ui/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common.ui/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common.ui/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common.ui/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common/build.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common/fragment.e4xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common/fragment.e4xmi -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.common/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.configuration/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.configuration/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.configuration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.configuration/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.connector.wizard.sforce/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.connectors/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.connectors/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.connectors/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.connectors/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.connectors/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.connectors/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.connectors/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.connectors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.connectors/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.contract.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.contract.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.contract.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.contract.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.contract/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.contract/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.contract/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.contract/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.contract/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.contract/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.contract/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.contract/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.data.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.data.tests/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.data.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.data.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.data.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.data.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.data/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.data/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.data/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.data/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.data/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.data/build.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.data/icons/filenew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.data/icons/filenew.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.data/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.data/plugin.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.data/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.data/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.data/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.data/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.datatools/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.datatools/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.datatools/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.datatools/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.datatools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.datatools/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.decision.table/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.decision.table/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.decision.table/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.decision.table/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.dependencies/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.dependencies/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.dependencies/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.dependencies/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.dependencies/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.dependencies/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.dependencies/plugin_es.properties: -------------------------------------------------------------------------------- 1 | manageJars=Administrar dependencias... 2 | development=Desarrollo 3 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.dependencies/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.linux/.gitignore: -------------------------------------------------------------------------------- 1 | /repository/ 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.linux/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer.linux/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.linux/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer.linux/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.macosx/.gitignore: -------------------------------------------------------------------------------- 1 | /repository/ 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.macosx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer.macosx/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.war/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer.war/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.war/.gitignore: -------------------------------------------------------------------------------- 1 | webapp 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.war/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer.war/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer.war/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.win32/.gitignore: -------------------------------------------------------------------------------- 1 | /repository/ 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.win32/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer.win32/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer.win32/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer.win32/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer/.gitignore: -------------------------------------------------------------------------------- 1 | webapp 2 | lib -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer/fragment.e4xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer/fragment.e4xmi -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.designer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.designer/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.diagram.custom/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.diagram.custom/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.diagram.custom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.diagram.custom/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.diagram/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.diagram/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.diagram/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.diagram/.options -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.diagram/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.diagram/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.diagram/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.diagram/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.diagram/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.diagram/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.document.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.document.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.document.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.document.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.document/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.document/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.document/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.document/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.document/fragment.e4xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.document/fragment.e4xmi -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.document/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.document/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.document/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.document/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine.tests/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine/build.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine/fragment.e4xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine/fragment.e4xmi -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine/icons/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine/icons/export.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine/icons/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine/icons/form.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine/icons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine/icons/run.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.engine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.engine/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.exporter/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.exporter/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.exporter/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.exporter/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.exporter/fragment.e4xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.exporter/fragment.e4xmi -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.exporter/icons/bpmn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.exporter/icons/bpmn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.exporter/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.exporter/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.exporter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.exporter/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy.tests/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy.ui.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy.ui.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy.ui/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy.ui/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy.ui/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy.ui/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy/build.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.groovy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.groovy/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.identity.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.identity.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.identity.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.identity.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.identity/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.identity/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.identity/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.identity/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.identity/fragment.e4xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.identity/fragment.e4xmi -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.identity/icons/conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.identity/icons/conf.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.identity/icons/java.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.identity/icons/java.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.identity/icons/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.identity/icons/view.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.identity/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.identity/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.identity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.identity/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer.bos.tests/resources/emptyFolder/file: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer.bos/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer.bos/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer.bos/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer.bos/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer.bos/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer.bos/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer.bos/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer.bos/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer/fragment.e4xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer/fragment.e4xmi -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.importer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.importer/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.intro/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.intro/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.intro/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.intro/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.intro/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.intro/build.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.intro/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.intro/plugin.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.intro/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.intro/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.intro/plugin_es.properties: -------------------------------------------------------------------------------- 1 | openWelcomePage_label=Bienvenido a Bonita Studio 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.intro/plugin_fr.properties: -------------------------------------------------------------------------------- 1 | openWelcomePage_label=Bienvenue dans Bonita Studio 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.intro/plugin_pt_BR.properties: -------------------------------------------------------------------------------- 1 | openWelcomePage_label=Bem-vindo ao Bonita BPM Studio 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.intro/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.intro/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la.tests/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/build.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/fragment.e4xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/fragment.e4xmi -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/icons/home.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/messages.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/plugin.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/plugin_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/plugin_es.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/plugin_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/plugin_fr.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/plugin_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/plugin_ja.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.la/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.la/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.local.repository/.gitignore: -------------------------------------------------------------------------------- 1 | /repository 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.parameters/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.parameters/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.parameters/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.parameters/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.parameters/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.parameters/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.parameters/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.parameters/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics.bonitasoft/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics.bonitasoft/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/build.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/Data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/Data.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/Document.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/Document.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/JavaType.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/JavaType.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/actor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/actor.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/add.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/add_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/add_item.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/arrow-up.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/arrow16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/arrow16.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/balance.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/clear.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/close.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/constant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/constant.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/cut.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/delete.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/deploy.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/done.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/down.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/down@2x.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/empty_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/empty_20.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/error.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/error@2x.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/export.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/filenew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/filenew.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ad.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ae.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/af.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ag.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ai.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/al.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/am.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/an.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ao.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ar.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/as.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/at.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/au.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/aw.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ax.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/az.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ba.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bb.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bd.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/be.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bf.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bg.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bh.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bi.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bj.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bo.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/br.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bs.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bt.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bv.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bw.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/by.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/bz.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ca.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cc.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cd.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cf.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cg.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ch.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ci.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ck.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cl.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/co.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cs.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cu.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cv.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cx.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cy.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/cz.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/de.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/dj.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/dk.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/dm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/do.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/dz.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ec.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ee.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/eg.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/eh.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/er.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/es.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/et.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fi.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fj.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fk.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fo.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/fr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ga.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gb.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gd.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ge.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gf.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gh.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gi.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gl.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gp.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gq.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gs.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gt.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gu.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gw.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/gy.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/hk.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/hm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/hn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/hr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ht.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/hu.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/id.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ie.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/il.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/in.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/io.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/iq.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ir.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/is.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/it.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/jm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/jo.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/jp.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ke.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kg.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kh.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ki.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/km.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kp.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kw.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ky.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/kz.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/la.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lb.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lc.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/li.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lk.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ls.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lt.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lu.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/lv.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ly.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ma.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mc.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/md.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/me.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mg.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mh.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mk.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ml.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mo.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mp.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mq.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ms.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mt.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mu.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mv.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mw.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mx.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/my.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/mz.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/na.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nc.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ne.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nf.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ng.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ni.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nl.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/no.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/np.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nu.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/nz.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/om.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pa.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pe.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pf.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pg.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ph.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pk.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pl.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ps.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pt.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/pw.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/py.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/qa.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/re.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ro.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/rs.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ru.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/rw.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sa.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sb.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sc.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sd.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/se.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sg.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sh.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/si.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sj.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sk.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sl.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/so.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/st.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sv.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sy.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/sz.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tc.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/td.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tf.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tg.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/th.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tj.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tk.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tl.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/to.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tr.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tt.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tv.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tw.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/tz.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ua.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ug.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/um.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/us.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/uy.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/uz.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/va.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/vc.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ve.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/vg.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/vi.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/vn.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/vu.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/wf.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ws.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/ye.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/yt.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/za.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/zm.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/flags/zw.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/form.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/form.ico -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/form.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/forms/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/forms/up.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/full.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/icones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/icones.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/import.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/int_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/int_obj.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/jar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/jar.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/key.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/key@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/key@2x.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/problem.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/resize.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/run.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/simple.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/skip.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/swap.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/switch.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/test.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/up.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/up@2x.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/icons/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/icons/xml.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.pics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.pics/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.preferences/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.preferences/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.preferences/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.preferences/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.properties/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.properties/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.properties/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.properties/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.properties/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.properties/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.properties/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.refactoring/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.refactoring/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.refactoring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.refactoring/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.runtime-bundle/.gitignore: -------------------------------------------------------------------------------- 1 | /bonita-home 2 | /lib 3 | /tomcat 4 | /javadoc.zip 5 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.sap.dependency/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/ 2 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.sap.mock/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.sap.mock/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.sap.mock/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.sap.mock/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.sap.mock/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.sap.mock/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.scripting/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.scripting/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.scripting/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.scripting/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.scripting/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.scripting/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.scripting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.scripting/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.sqlbuilder.ex/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.sqlbuilder.ex/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.team.git/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.team.git/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.team.git/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.team.git/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.team.git/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.team.git/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.team.git/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.team.git/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.team.git/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.tests-utils/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.tests-utils/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.tests-utils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.tests-utils/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui.tests/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui.tests/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui.tests/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/build.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/fragment.e4xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/fragment.e4xmi -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/icons/error.png -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/icons/file_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/icons/file_obj.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/icons/problem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/icons/problem.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/icons/xmldoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/icons/xmldoc.gif -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/plugin.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.ui/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.validation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.validation/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.validation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.validation/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.validation/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.validation/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.validation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.validation/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.xml/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.xml/.classpath -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.xml/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.xml/.project -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.xml/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.xml/build.properties -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.xml/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.xml/plugin.xml -------------------------------------------------------------------------------- /bundles/plugins/org.bonitasoft.studio.xml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/org.bonitasoft.studio.xml/pom.xml -------------------------------------------------------------------------------- /bundles/plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/plugins/pom.xml -------------------------------------------------------------------------------- /bundles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/bundles/pom.xml -------------------------------------------------------------------------------- /fetch_crowdin_l10n.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/fetch_crowdin_l10n.groovy -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /patched-plugins/org.eclipse.datatools.modelbase.sql.query/.options: -------------------------------------------------------------------------------- 1 | org.eclipse.datatools.modelbase.sql.query/debug=false 2 | -------------------------------------------------------------------------------- /patched-plugins/org.eclipse.gmf.runtime.lite.svg/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/patched-plugins/org.eclipse.gmf.runtime.lite.svg/.classpath -------------------------------------------------------------------------------- /patched-plugins/org.eclipse.gmf.runtime.lite.svg/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/patched-plugins/org.eclipse.gmf.runtime.lite.svg/.project -------------------------------------------------------------------------------- /patched-plugins/org.eclipse.gmf.runtime.lite.svg/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/patched-plugins/org.eclipse.gmf.runtime.lite.svg/about.html -------------------------------------------------------------------------------- /patched-plugins/org.eclipse.gmf.runtime.lite.svg/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/patched-plugins/org.eclipse.gmf.runtime.lite.svg/pom.xml -------------------------------------------------------------------------------- /patched-plugins/org.eclipse.gmf.tooling.runtime.lighter/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /patched-plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/patched-plugins/pom.xml -------------------------------------------------------------------------------- /platform/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/platform/.project -------------------------------------------------------------------------------- /platform/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/platform/README.adoc -------------------------------------------------------------------------------- /platform/platform.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/platform/platform.target -------------------------------------------------------------------------------- /platform/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/platform/pom.xml -------------------------------------------------------------------------------- /platform/remote_platform.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/platform/remote_platform.target -------------------------------------------------------------------------------- /platform/remote_platform.tpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/platform/remote_platform.tpd -------------------------------------------------------------------------------- /platform/src/assembly/mirror.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/platform/src/assembly/mirror.xml -------------------------------------------------------------------------------- /platform/src/script/configure-mirror-plugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/platform/src/script/configure-mirror-plugin.groovy -------------------------------------------------------------------------------- /platform/src/script/generate-mirror-tp.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/platform/src/script/generate-mirror-tp.groovy -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/pom.xml -------------------------------------------------------------------------------- /setups/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/setups/.gitignore -------------------------------------------------------------------------------- /setups/A Studio JUnit plugin test (template).launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/setups/A Studio JUnit plugin test (template).launch -------------------------------------------------------------------------------- /setups/BonitaStudio-common.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/setups/BonitaStudio-common.setup -------------------------------------------------------------------------------- /setups/BonitaStudio-community.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/setups/BonitaStudio-community.setup -------------------------------------------------------------------------------- /setups/BonitaStudio-sp.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/setups/BonitaStudio-sp.setup -------------------------------------------------------------------------------- /setups/bonitastudio-features.product (template).launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/setups/bonitastudio-features.product (template).launch -------------------------------------------------------------------------------- /setups/bonitastudioEx-features.product (template).launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/setups/bonitastudioEx-features.product (template).launch -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | screenshots -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.swtbot.framework/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.swtbot.framework/.classpath -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.swtbot.framework/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.swtbot.framework/.project -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.swtbot.framework/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.swtbot.framework/pom.xml -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.test.suite/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.test.suite/.classpath -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.test.suite/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.test.suite/.project -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.test.suite/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.test.suite/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.test.suite/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.test.suite/build.properties -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.test.suite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.test.suite/pom.xml -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.test.suite/tests-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.test.suite/tests-settings.xml -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.test.swtbot.suite/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.test.swtbot.suite/.classpath -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.test.swtbot.suite/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.test.swtbot.suite/.project -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.test.swtbot.suite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.test.swtbot.suite/pom.xml -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.tests/.classpath -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.tests/.project -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.tests/build.properties -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.tests/pom.xml -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/GroovyScriptForTestImportExportRepository.groovy: -------------------------------------------------------------------------------- 1 | Step1 -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/ProcessWithNewFormMapping-1.0/resource.txt: -------------------------------------------------------------------------------- 1 | processVersion -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/ProcessWithNewFormMapping-1.0/resource3.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/ProcessWithNewFormMapping/resource.txt: -------------------------------------------------------------------------------- 1 | process -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/ProcessWithNewFormMapping/resource2.txt: -------------------------------------------------------------------------------- 1 | Salut -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/_common/resource.txt: -------------------------------------------------------------------------------- 1 | Common -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/bdm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.tests/resources/bdm.zip -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_fragments/.metadata/MyFragment.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_page/.metadata/MyForm.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_page/.metadata/MyLayout.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_page/.metadata/MyPage.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_page/MyPage/assets/json/localization.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/customMyWidget.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbAutocomplete.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbButton.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbChart.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbCheckbox.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbChecklist.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbContainer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbCurrencyInput.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbDataTable.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbDatePicker.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbDateTimePicker.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbFileViewer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbFormContainer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbImage.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbInput.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbLink.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbModalContainer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbRadioButtons.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbRichTextarea.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbSaveButton.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbSelect.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbTabContainer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbTable.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbTabsContainer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbText.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbTextarea.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbTitle.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/.metadata/pbUpload.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/pbContainer/pbContainer.tpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/pbFormContainer/pbFormContainer.tpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/pbModalContainer/pbModalContainer.tpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/pbTabContainer/pbTabContainer.tpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/invalid_uid_workspace/web_widgets/pbTabsContainer/pbTabsContainer.tpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/legacyBDM.bos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/org.bonitasoft.studio.tests/resources/legacyBDM.bos -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/procurement-example/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/procurement-example/refs/heads/master: -------------------------------------------------------------------------------- 1 | d0875645271d24af7ac14a23bf12170aafb189e4 2 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_fragments/.metadata/MyFragment.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_page/.metadata/MyForm.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_page/.metadata/MyLayout.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_page/.metadata/MyPage.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/customMyWidget.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbAutocomplete.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbButton.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbChart.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbCheckbox.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbChecklist.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbContainer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbCurrencyInput.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbDataTable.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbDatePicker.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbDateTimePicker.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbFileViewer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbFormContainer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbImage.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbInput.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbLink.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbModalContainer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbRadioButtons.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbRichTextarea.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbSaveButton.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbSelect.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbTabContainer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbTable.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbTabsContainer.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbText.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbTextarea.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbTitle.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/.metadata/pbUpload.json: -------------------------------------------------------------------------------- 1 | {"favorite":false} -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/pbContainer/pbContainer.tpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/pbFormContainer/pbFormContainer.tpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/pbModalContainer/pbModalContainer.tpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/pbTabContainer/pbTabContainer.tpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/resources/valid_uid_workspace/web_widgets/pbTabsContainer/pbTabsContainer.tpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/org.bonitasoft.studio.tests/src/org/bonitasoft/studio/tests/parameter/Parameters.properties: -------------------------------------------------------------------------------- 1 | dbUrl=http://localhost 2 | password=Psd=ds*54 3 | port=8080 -------------------------------------------------------------------------------- /tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/pom.xml -------------------------------------------------------------------------------- /tests/tests-common-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/tests-common-feature/.project -------------------------------------------------------------------------------- /tests/tests-common-feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tests/tests-common-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/tests-common-feature/feature.xml -------------------------------------------------------------------------------- /tests/tests-common-feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/tests-common-feature/pom.xml -------------------------------------------------------------------------------- /tests/tests-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/tests-feature/.project -------------------------------------------------------------------------------- /tests/tests-feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tests/tests-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/tests-feature/feature.xml -------------------------------------------------------------------------------- /tests/tests-feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/bonita-studio/HEAD/tests/tests-feature/pom.xml --------------------------------------------------------------------------------