├── bundles ├── org.obeonetwork.dsl.dart │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ └── org.eclipse.pde.prefs │ ├── .classpath │ ├── bundle.properties │ ├── META-INF │ │ └── MANIFEST.MF │ ├── .checkstyle │ ├── plugin.xml │ ├── build.properties │ ├── .project │ ├── src-gen │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── dart │ │ │ ├── Folder.java │ │ │ ├── Metadata.java │ │ │ ├── Type.java │ │ │ ├── Element.java │ │ │ ├── AngularType.java │ │ │ ├── impl │ │ │ └── MetadataImpl.java │ │ │ ├── HTML.java │ │ │ ├── Decorator.java │ │ │ ├── Directive.java │ │ │ ├── Container.java │ │ │ ├── Formatter.java │ │ │ ├── Part.java │ │ │ ├── Module.java │ │ │ └── Classifier.java │ ├── src │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── dart │ │ │ └── IDartSpecificationConstants.java │ └── pom.xml ├── org.obeonetwork.dsl.dart.edit │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ └── org.eclipse.pde.prefs │ ├── icons │ │ └── full │ │ │ ├── obj16 │ │ │ ├── HTML.gif │ │ │ ├── Part.gif │ │ │ ├── Asset.gif │ │ │ ├── Class.gif │ │ │ ├── Export.gif │ │ │ ├── Folder.gif │ │ │ ├── Import.gif │ │ │ ├── Module.gif │ │ │ ├── Route.gif │ │ │ ├── Component.gif │ │ │ ├── Decorator.gif │ │ │ ├── Formatter.gif │ │ │ ├── Function.gif │ │ │ ├── Library.gif │ │ │ ├── Metadata.gif │ │ │ ├── Package.gif │ │ │ ├── Parameter.gif │ │ │ ├── Project.gif │ │ │ ├── Typedef.gif │ │ │ ├── Variable.gif │ │ │ ├── Constructor.gif │ │ │ ├── Controller.gif │ │ │ └── Stylesheet.gif │ │ │ └── ctool16 │ │ │ ├── CreateContainer_assets_HTML.gif │ │ │ ├── CreateContainer_assets_Part.gif │ │ │ ├── CreateModule_routes_Route.gif │ │ │ ├── CreateClass_methods_Function.gif │ │ │ ├── CreateContainer_assets_Asset.gif │ │ │ ├── CreateContainer_assets_Class.gif │ │ │ ├── CreateContainer_assets_Folder.gif │ │ │ ├── CreateContainer_assets_Module.gif │ │ │ ├── CreateModule_types_Component.gif │ │ │ ├── CreateModule_types_Controller.gif │ │ │ ├── CreateModule_types_Decorator.gif │ │ │ ├── CreateModule_types_Formatter.gif │ │ │ ├── CreateClassifier_fields_Variable.gif │ │ │ ├── CreateContainer_assets_Component.gif │ │ │ ├── CreateContainer_assets_Decorator.gif │ │ │ ├── CreateContainer_assets_Formatter.gif │ │ │ ├── CreateContainer_assets_Library.gif │ │ │ ├── CreateContainer_assets_Metadata.gif │ │ │ ├── CreateLibrary_functions_Function.gif │ │ │ ├── CreateLibrary_typedefs_Typedef.gif │ │ │ ├── CreateLibrary_variables_Variable.gif │ │ │ ├── CreateProject_packages_Package.gif │ │ │ ├── CreateContainer_assets_Application.gif │ │ │ ├── CreateContainer_assets_Controller.gif │ │ │ ├── CreateContainer_assets_Stylesheet.gif │ │ │ ├── CreateDartResource_exports_Export.gif │ │ │ ├── CreateDartResource_imports_Import.gif │ │ │ ├── CreateMethod_parameters_Parameter.gif │ │ │ ├── CreateTypedef_parameters_Parameter.gif │ │ │ ├── CreateClass_constructors_Constructor.gif │ │ │ └── CreateFunction_parameters_Parameter.gif │ ├── .classpath │ ├── META-INF │ │ └── MANIFEST.MF │ ├── .project │ ├── build.properties │ ├── plugin.xml │ └── pom.xml ├── org.obeonetwork.dsl.dart.design │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ └── org.eclipse.pde.prefs │ ├── icons │ │ ├── common │ │ │ └── empty.png │ │ ├── explorer │ │ │ ├── css_512x512.png │ │ │ ├── gif_512x512.png │ │ │ ├── js_512x512.png │ │ │ ├── mp4_512x512.png │ │ │ ├── npm_512x512.png │ │ │ ├── png_512x512.png │ │ │ ├── asset_512x512.png │ │ │ ├── bower_512x512.png │ │ │ ├── dart_512x512.png │ │ │ ├── folder_512x512.png │ │ │ ├── grunt_512x512.png │ │ │ ├── gulp_512x512.png │ │ │ ├── html_512x512.png │ │ │ ├── jpeg_512x512.png │ │ │ ├── karma_512x512.png │ │ │ ├── less_512x512.png │ │ │ ├── module_512x512.png │ │ │ ├── sass_512x512.png │ │ │ ├── component_512x512.png │ │ │ ├── controller_512x512.png │ │ │ ├── decorator_512x512.png │ │ │ ├── formatter_512x512.png │ │ │ └── folder_documents_512x512.png │ │ └── full │ │ │ ├── wizban │ │ │ ├── DartViewpoint.png │ │ │ ├── DartSpecification.png │ │ │ └── DartDesignerProject.png │ │ │ ├── obj16 │ │ │ └── DartDesignerProject.png │ │ │ └── etool16 │ │ │ └── NewDartDesignerProject.png │ ├── .classpath │ ├── .checkstyle │ ├── bundle.properties │ ├── build.properties │ ├── src │ │ └── org │ │ │ └── obeonetwork │ │ │ └── dsl │ │ │ └── dart │ │ │ └── design │ │ │ └── internal │ │ │ ├── utils │ │ │ ├── IDartDesignerConstants.java │ │ │ ├── IDartDesignerIcons.java │ │ │ └── I18n.java │ │ │ ├── wizards │ │ │ └── DartDesignerProjectSpecificationConfigurationPage.java │ │ │ └── DartDesignerPlugin.java │ ├── plugin.xml │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── pom.xml │ ├── build.acceleo │ └── OSGI-INF │ │ └── i18n │ │ └── messages.properties ├── org.obeonetwork.dsl.dart.editor │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ └── org.eclipse.pde.prefs │ ├── icons │ │ └── full │ │ │ ├── wizban │ │ │ └── DartSpecification.png │ │ │ ├── etool16 │ │ │ └── NewDartSpecification.png │ │ │ └── obj16 │ │ │ └── DartSpecificationFile.png │ ├── .classpath │ ├── .checkstyle │ ├── build.properties │ ├── META-INF │ │ └── MANIFEST.MF │ ├── .project │ ├── pom.xml │ ├── plugin.xml │ └── bundle.properties ├── org.obeonetwork.dsl.dart.documentation │ ├── .bowerrc │ ├── html │ │ └── .gitignore │ ├── bower.json │ ├── META-INF │ │ └── MANIFEST.MF │ ├── plugin.xml │ ├── .project │ ├── bundle.properties │ ├── build.properties │ └── pom.xml └── org.obeonetwork.dsl.dart.usage │ ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.launching.prefs │ └── org.eclipse.pde.prefs │ ├── lib │ └── JGoogleAnalyticsTracker-1.2.1-SNAPSHOT-jar-with-dependencies.jar │ ├── src │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── dart │ │ └── usage │ │ └── internal │ │ ├── dialog │ │ ├── messages.properties │ │ └── UsageDialogMessages.java │ │ ├── analytics │ │ ├── messages.properties │ │ ├── UsageMessages.java │ │ └── UsageStartup.java │ │ ├── preferences │ │ ├── messages.properties │ │ ├── UsagePreferenceInitializer.java │ │ └── PreferencesMessages.java │ │ └── UsageActivator.java │ ├── .classpath │ ├── .checkstyle │ ├── bundle.properties │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ ├── .project │ └── pom.xml ├── packaging ├── org.obeonetwork.dsl.dart.product │ ├── index.html │ ├── plugin_customization.ini │ ├── site.xml │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── icons │ │ ├── about.gif │ │ ├── about.png │ │ ├── logo.icns │ │ ├── logo.ico │ │ ├── logo_16x16.png │ │ ├── logo_32x32.png │ │ ├── logo_48x48.png │ │ ├── logo_64x64.png │ │ ├── logo_8x8.png │ │ ├── logo_128x128.png │ │ ├── logo_256x256.png │ │ ├── logo_512x512.png │ │ ├── launcher │ │ │ ├── logo.icns │ │ │ ├── logo.ico │ │ │ ├── logo_16x16_8bits.bmp │ │ │ ├── logo_32x32_8bits.bmp │ │ │ ├── logo_48x48_8bits.bmp │ │ │ ├── logo_16x16_32bits.bmp │ │ │ ├── logo_32x32_32bits.bmp │ │ │ ├── logo_48x48_32bits.bmp │ │ │ └── logo_256x256_32bits.bmp │ │ └── logo_1024x1024.png │ ├── .project │ └── category.xml └── org.obeonetwork.dsl.dart.branding │ ├── .settings │ ├── org.eclipse.core.runtime.prefs │ └── org.eclipse.core.resources.prefs │ ├── splash.bmp │ ├── splash.png │ ├── icons │ ├── logo.ico │ ├── about.gif │ ├── about.png │ ├── logo.icns │ ├── logo_8x8.png │ ├── logo_16x16.png │ ├── logo_32x32.png │ ├── logo_48x48.png │ ├── logo_64x64.png │ ├── launcher │ │ ├── logo.icns │ │ ├── logo.ico │ │ ├── logo_16x16_32bits.bmp │ │ ├── logo_16x16_8bits.bmp │ │ ├── logo_32x32_32bits.bmp │ │ ├── logo_32x32_8bits.bmp │ │ ├── logo_48x48_32bits.bmp │ │ ├── logo_48x48_8bits.bmp │ │ └── logo_256x256_32bits.bmp │ ├── logo_1024x1024.png │ ├── logo_128x128.png │ ├── logo_256x256.png │ └── logo_512x512.png │ ├── intro │ ├── images │ │ └── about.png │ ├── product_welcome_intro.xml │ ├── index.html │ ├── findhelp.html │ ├── getinvolved.html │ └── gettingstarted.html │ ├── plugin_customization.ini │ ├── META-INF │ └── MANIFEST.MF │ ├── .project │ ├── build.properties │ ├── bundle.properties │ ├── pom.xml │ └── plugin.xml ├── .gitignore ├── releng ├── org.obeonetwork.dsl.dart.target │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── .project │ ├── dartdesigner-luna.targetplatform │ └── dartdesigner-luna.target └── org.obeonetwork.dsl.dart.releng │ ├── .settings │ ├── org.eclipse.core.runtime.prefs │ └── org.eclipse.core.resources.prefs │ ├── .project │ └── launcher │ └── pom.xml ├── repositories └── org.obeonetwork.dsl.dart.repository │ ├── site.xml │ ├── .settings │ ├── org.eclipse.core.runtime.prefs │ └── org.eclipse.core.resources.prefs │ ├── .project │ ├── category.xml │ └── pom.xml ├── features └── org.obeonetwork.dsl.dart.feature │ ├── .settings │ ├── org.eclipse.core.runtime.prefs │ └── org.eclipse.core.resources.prefs │ ├── .project │ ├── build.properties │ ├── pom.xml │ └── feature.xml ├── tests └── org.obeonetwork.dsl.dart.design.tests │ ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.launching.prefs │ └── org.eclipse.pde.prefs │ ├── .classpath │ ├── .checkstyle │ ├── bundle.properties │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── .project │ ├── src │ └── org │ │ └── obeonetwork │ │ └── dsl │ │ └── dart │ │ └── design │ │ └── tests │ │ └── AllTests.java │ └── pom.xml ├── development └── org.obeonetwork.dsl.dart.development │ ├── .settings │ ├── org.eclipse.core.runtime.prefs │ └── org.eclipse.core.resources.prefs │ ├── settings │ ├── org.eclipse.jdt.launching.prefs │ └── org.eclipse.pde.prefs │ └── .project ├── CONTRIBUTING.md ├── README.md ├── .travis.yml └── travis-promote.sh /bundles/org.obeonetwork.dsl.dart/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | target/ 3 | *~ 4 | *.rej 5 | *.bak 6 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.documentation/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "html" 3 | } -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.documentation/html/.gitignore: -------------------------------------------------------------------------------- 1 | documentation/ 2 | bootflat/ -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.dart.target/.gitignore: -------------------------------------------------------------------------------- 1 | /.dartdesigner-luna.targetplatform/ 2 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/plugin_customization.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP = true 2 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /repositories/org.obeonetwork.dsl.dart.repository/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.obeonetwork.dsl.dart.feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.dart.releng/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.dart.target/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /development/org.obeonetwork.dsl.dart.development/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /features/org.obeonetwork.dsl.dart.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.dart.releng/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.dart.target/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /repositories/org.obeonetwork.dsl.dart.repository/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /development/org.obeonetwork.dsl.dart.development/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /repositories/org.obeonetwork.dsl.dart.repository/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/splash.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/splash.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo.ico -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/about.gif -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/about.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo.icns -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo.ico -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/about.gif -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/about.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo.icns -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/common/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/common/empty.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/HTML.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/HTML.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Part.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Part.gif -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo_8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo_8x8.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo_16x16.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo_32x32.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo_48x48.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo_64x64.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo_8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo_8x8.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Asset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Asset.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Class.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Export.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Folder.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Import.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Import.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Module.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Module.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Route.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Route.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=warning 3 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo_16x16.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo_32x32.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo_48x48.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo_64x64.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo_128x128.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo_256x256.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=warning 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=warning 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Component.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Decorator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Decorator.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Formatter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Formatter.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Function.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Function.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Library.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Library.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Metadata.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Metadata.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Package.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Package.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Parameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Parameter.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Project.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Typedef.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Typedef.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Variable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Variable.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=warning 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=warning 3 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo.icns -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo.ico -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo_1024x1024.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo_128x128.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo_256x256.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/logo_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/logo_512x512.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/intro/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/intro/images/about.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo.icns -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo.ico -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/logo_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/logo_1024x1024.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/css_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/css_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/gif_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/gif_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/js_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/js_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/mp4_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/mp4_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/npm_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/npm_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/png_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/png_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Constructor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Constructor.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Controller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Controller.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Stylesheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/obj16/Stylesheet.gif -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=warning 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/asset_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/asset_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/bower_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/bower_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/dart_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/dart_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/folder_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/folder_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/grunt_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/grunt_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/gulp_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/gulp_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/html_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/html_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/jpeg_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/jpeg_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/karma_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/karma_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/less_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/less_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/module_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/module_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/sass_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/sass_512x512.png -------------------------------------------------------------------------------- /development/org.obeonetwork.dsl.dart.development/settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=warning 3 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/full/wizban/DartViewpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/full/wizban/DartViewpoint.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/component_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/component_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/controller_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/controller_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/decorator_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/decorator_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/formatter_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/formatter_512x512.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_16x16_8bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_16x16_8bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_32x32_8bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_32x32_8bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_48x48_8bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_48x48_8bits.bmp -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/full/obj16/DartDesignerProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/full/obj16/DartDesignerProject.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/full/wizban/DartSpecification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/full/wizban/DartSpecification.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/icons/full/wizban/DartSpecification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.editor/icons/full/wizban/DartSpecification.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_16x16_32bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_16x16_32bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_16x16_8bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_16x16_8bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_32x32_32bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_32x32_32bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_32x32_8bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_32x32_8bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_48x48_32bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_48x48_32bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_48x48_8bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_48x48_8bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/intro/product_welcome_intro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_16x16_32bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_16x16_32bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_32x32_32bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_32x32_32bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_48x48_32bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_48x48_32bits.bmp -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/explorer/folder_documents_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/explorer/folder_documents_512x512.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/full/wizban/DartDesignerProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/full/wizban/DartDesignerProject.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/icons/full/etool16/NewDartSpecification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.editor/icons/full/etool16/NewDartSpecification.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/icons/full/obj16/DartSpecificationFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.editor/icons/full/obj16/DartSpecificationFile.png -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_256x256_32bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.branding/icons/launcher/logo_256x256_32bits.bmp -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_256x256_32bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/packaging/org.obeonetwork.dsl.dart.product/icons/launcher/logo_256x256_32bits.bmp -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/icons/full/etool16/NewDartDesignerProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.design/icons/full/etool16/NewDartDesignerProject.png -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_HTML.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_HTML.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Part.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Part.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateModule_routes_Route.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateModule_routes_Route.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateClass_methods_Function.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateClass_methods_Function.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Asset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Asset.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Class.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Folder.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Module.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Module.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateModule_types_Component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateModule_types_Component.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateModule_types_Controller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateModule_types_Controller.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateModule_types_Decorator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateModule_types_Decorator.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateModule_types_Formatter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateModule_types_Formatter.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateClassifier_fields_Variable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateClassifier_fields_Variable.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Component.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Decorator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Decorator.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Formatter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Formatter.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Library.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Library.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Metadata.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Metadata.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateLibrary_functions_Function.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateLibrary_functions_Function.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateLibrary_typedefs_Typedef.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateLibrary_typedefs_Typedef.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateLibrary_variables_Variable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateLibrary_variables_Variable.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateProject_packages_Package.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateProject_packages_Package.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Application.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Application.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Controller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Controller.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Stylesheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateContainer_assets_Stylesheet.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateDartResource_exports_Export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateDartResource_exports_Export.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateDartResource_imports_Import.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateDartResource_imports_Import.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateMethod_parameters_Parameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateMethod_parameters_Parameter.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateTypedef_parameters_Parameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateTypedef_parameters_Parameter.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateClass_constructors_Constructor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateClass_constructors_Constructor.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateFunction_parameters_Parameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.edit/icons/full/ctool16/CreateFunction_parameters_Parameter.gif -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.documentation/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dartdesignerdocumentation", 3 | "version": "0.1.0", 4 | "dependencies": { 5 | "documentation": "https://github.com/dartdesigner/documentation.git#gh-pages" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/lib/JGoogleAnalyticsTracker-1.2.1-SNAPSHOT-jar-with-dependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartdesigner/Dart-Designer/HEAD/bundles/org.obeonetwork.dsl.dart.usage/lib/JGoogleAnalyticsTracker-1.2.1-SNAPSHOT-jar-with-dependencies.jar -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/plugin_customization.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true 2 | org.eclipse.ui/DOCK_PERSPECTIVE_BAR=topRight 3 | org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false 4 | org.eclipse.ui/defaultPerspectiveId=org.eclipse.sirius.ui.tools.perspective.modeling -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.dart.releng/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.releng 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.dart.target/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.target 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.documentation/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-SymbolicName: org.obeonetwork.dsl.dart.documentation;singleton:=true 5 | Bundle-Version: 0.4.0.qualifier 6 | Bundle-Vendor: %Bundle-Vendor 7 | Bundle-Localization: bundle 8 | -------------------------------------------------------------------------------- /development/org.obeonetwork.dsl.dart.development/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.development 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/src/org/obeonetwork/dsl/dart/usage/internal/dialog/messages.properties: -------------------------------------------------------------------------------- 1 | Usage_Dialog_Title=Dart Designer Usage 2 | Usage_Dialog_Message=Will you allow the Dart Designer team to receive anonymous usage statistics for this Eclipse instance with Dart Designer (info)? -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.documentation/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-SymbolicName: org.obeonetwork.dsl.dart.branding;singleton:=true 5 | Bundle-Version: 0.4.0.qualifier 6 | Bundle-Vendor: %Bundle-Vendor 7 | Require-Bundle: org.eclipse.equinox.app, 8 | org.eclipse.ui, 9 | org.eclipse.ui.intro 10 | Bundle-Localization: bundle 11 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /features/org.obeonetwork.dsl.dart.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.product 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.UpdateSiteBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.UpdateSiteNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /repositories/org.obeonetwork.dsl.dart.repository/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.repository 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.UpdateSiteBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.UpdateSiteNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /repositories/org.obeonetwork.dsl.dart.repository/category.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | The Dart Designer is a full-fledged development workbench for Dart developer. 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.product/category.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Viewpoint 5 | 6 | 7 | 8 | 9 | 10 | 11 | The Dart Designer Product 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/.checkstyle: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/bundle.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | Bundle-Name=Dart Model 12 | Bundle-Vendor=Obeo Network 13 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.branding 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.ManifestBuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.SchemaBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.pde.PluginNature 21 | 22 | 23 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/.checkstyle: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/.checkstyle: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.dart.target/dartdesigner-luna.targetplatform: -------------------------------------------------------------------------------- 1 | target "DartDesigner-luna" 2 | 3 | with source, requirements 4 | 5 | location "http://download.eclipse.org/releases/luna" { 6 | org.eclipse.platform.feature.group 7 | org.eclipse.sdk.feature.group 8 | org.eclipse.epp.mpc.feature.group 9 | org.eclipse.equinox.executable.feature.group 10 | org.eclipse.sirius.runtime.feature.group 11 | org.eclipse.sirius.runtime.ide.eef.feature.group 12 | org.eclipse.sirius.runtime.ide.ui.feature.group 13 | } 14 | 15 | location "http://www.dartlang.org/eclipse/update/channels/dev" { 16 | com.google.dart.eclipse.feature.feature.group;version=lazy 17 | } -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/bundle.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | Bundle-Name=Dart Designer Tests 12 | Bundle-Vendor=Obeo Network 13 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.documentation/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.documentation 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.ManifestBuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.SchemaBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.pde.PluginNature 21 | 22 | 23 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-SymbolicName: org.obeonetwork.dsl.dart;singleton:=true 5 | Bundle-Version: 0.4.0.qualifier 6 | Bundle-ClassPath: . 7 | Bundle-Vendor: %Bundle-Vendor 8 | Bundle-Localization: bundle 9 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 10 | Export-Package: org.obeonetwork.dsl.dart;version="0.4.0", 11 | org.obeonetwork.dsl.dart.impl;version="0.4.0", 12 | org.obeonetwork.dsl.dart.util;version="0.4.0" 13 | Require-Bundle: org.eclipse.core.runtime, 14 | org.eclipse.emf.ecore;visibility:=reexport 15 | Bundle-ActivationPolicy: lazy 16 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.documentation/bundle.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | Bundle-Name = Dart Designer Documentation 12 | Bundle-Vendor = Obeo Network -------------------------------------------------------------------------------- /features/org.obeonetwork.dsl.dart.feature/build.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | bin.includes = feature.xml,\ 12 | feature.properties,\ 13 | license.html 14 | -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-SymbolicName: org.obeonetwork.dsl.dart.design.tests 5 | Bundle-Version: 0.4.0.qualifier 6 | Bundle-Vendor: %Bundle-Vendor 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | Bundle-Localization: bundle 9 | Require-Bundle: org.junit;bundle-version="4.11.0", 10 | org.obeonetwork.dsl.dart;bundle-version="0.4.0", 11 | org.obeonetwork.dsl.dart.design;bundle-version="0.4.0" 12 | Export-Package: org.obeonetwork.dsl.dart.design.tests;version="0.4.0", 13 | org.obeonetwork.dsl.dart.design.tests.internal.services;version="0.4.0";x-internal:=true 14 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/bundle.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | Bundle-Name=Dart Usage Tracker 12 | Bundle-Vendor=Obeo Network 13 | 14 | Usage_Preferences_Page_Name = Dart Designer Usage -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/.checkstyle: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/.checkstyle: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/build.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | .,\ 15 | bundle.properties 16 | javacProjectSettings = true 17 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.documentation/build.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | bin.includes = plugin.xml,\ 12 | META-INF/,\ 13 | html/documentation/,\ 14 | *.xml,\ 15 | bundle.properties 16 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-SymbolicName: org.obeonetwork.dsl.dart.edit;singleton:=true 5 | Bundle-Version: 0.4.0.qualifier 6 | Bundle-ClassPath: . 7 | Bundle-Activator: org.obeonetwork.dsl.dart.edit.internal.provider.DartEditPlugin$Implementation 8 | Bundle-Vendor: %Bundle-Vendor 9 | Bundle-Localization: bundle 10 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 11 | Export-Package: org.obeonetwork.dsl.dart.edit.internal.provider;version="0.4.0";x-internal:=true 12 | Require-Bundle: org.eclipse.core.runtime, 13 | org.obeonetwork.dsl.dart;bundle-version="0.4.0";visibility:=reexport, 14 | org.eclipse.emf.edit;visibility:=reexport 15 | Bundle-ActivationPolicy: lazy 16 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/bundle.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | Bundle-Name=Dart Designer 12 | Bundle-Vendor=Obeo Network 13 | 14 | _UI_DartDesignerProjectWizard_label = Dart Designer Project 15 | _UI_DartDesignerProjectWizard_description = Create a new Dart Designer project -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.edit 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.jdt.core.javanature 26 | org.eclipse.pde.PluginNature 27 | 28 | 29 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/build.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | bin.includes = META-INF/,\ 12 | plugin.xml,\ 13 | plugin_customization.ini,\ 14 | icons/,\ 15 | splash.bmp,\ 16 | bundle.properties,\ 17 | intro/ 18 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/build.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | bin.includes = .,\ 12 | icons/,\ 13 | META-INF/,\ 14 | plugin.xml,\ 15 | bundle.properties 16 | jars.compile.order = . 17 | source.. = src-gen/ 18 | output.. = bin/ 19 | javacProjectSettings = true 20 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/build.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | bin.includes = .,\ 12 | icons/,\ 13 | META-INF/,\ 14 | plugin.xml,\ 15 | bundle.properties 16 | jars.compile.order = . 17 | source.. = src-gen/ 18 | output.. = bin 19 | javacProjectSettings = true 20 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/build.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | bin.includes = .,\ 12 | model/,\ 13 | META-INF/,\ 14 | plugin.xml,\ 15 | bundle.properties 16 | jars.compile.order = . 17 | source.. = src-gen/,\ 18 | src/ 19 | output.. = bin/ 20 | javacProjectSettings = true 21 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-SymbolicName: org.obeonetwork.dsl.dart.usage;singleton:=true 5 | Bundle-Version: 0.4.0.qualifier 6 | Bundle-Vendor: %Bundle-Vendor 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | Bundle-Localization: bundle 9 | Bundle-ActivationPolicy: lazy 10 | Bundle-ClassPath: lib/JGoogleAnalyticsTracker-1.2.1-SNAPSHOT-jar-with-dependencies.jar, 11 | . 12 | Require-Bundle: org.eclipse.core.runtime, 13 | org.eclipse.sirius.ui;bundle-version="1.0.0", 14 | org.eclipse.ui;bundle-version="3.105.0", 15 | org.eclipse.ui.ide;bundle-version="3.9.2", 16 | com.google.guava;bundle-version="11.0.2", 17 | org.obeonetwork.dsl.dart.design;bundle-version="0.4.0" 18 | Bundle-Activator: org.obeonetwork.dsl.dart.usage.internal.UsageActivator 19 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/build.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | .,\ 15 | bundle.properties,\ 16 | lib/JGoogleAnalyticsTracker-1.2.1-SNAPSHOT-jar-with-dependencies.jar,\ 17 | plugin.xml 18 | javacProjectSettings = true 19 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/build.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | bin.includes = META-INF/,\ 12 | .,\ 13 | description/,\ 14 | plugin.xml,\ 15 | bundle.properties,\ 16 | OSGI-INF/,\ 17 | icons/ 18 | output..=bin/ 19 | source..=src/ 20 | customBuildCallbacks=build.acceleo 21 | javacProjectSettings = true 22 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-SymbolicName: org.obeonetwork.dsl.dart.editor;singleton:=true 5 | Bundle-Version: 0.4.0.qualifier 6 | Bundle-ClassPath: . 7 | Bundle-Activator: org.obeonetwork.dsl.dart.editor.internal.presentation.DartEditorPlugin$Implementation 8 | Bundle-Vendor: %Bundle-Vendor 9 | Bundle-Localization: bundle 10 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 11 | Export-Package: org.obeonetwork.dsl.dart.editor.internal.presentation;version="0.4.0";x-internal:=true 12 | Require-Bundle: org.eclipse.core.runtime, 13 | org.eclipse.core.resources;visibility:=reexport, 14 | org.obeonetwork.dsl.dart.edit;bundle-version="0.4.0";visibility:=reexport, 15 | org.eclipse.emf.ecore.xmi;visibility:=reexport, 16 | org.eclipse.emf.edit.ui;visibility:=reexport, 17 | org.eclipse.ui.ide;visibility:=reexport 18 | Bundle-ActivationPolicy: lazy 19 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | #Contributing 2 | 3 | You will find in this document all the instructions necessary in order to contribute to this project. 4 | 5 | ## Development Environment 6 | * Eclipse 4.3 Kepler SR2 7 | * Acceleo 3.4.2 8 | * EGit 3.2.0 9 | * EclEmma 2.3.0 10 | * EMF Compare 2.1.3 11 | * Sirius 1.0.0 12 | * EMF 2.9.2 13 | * EMF Xcore 1.1.1 14 | 15 | ## Commit messages 16 | ``` 17 | Title of the issue from Github 18 | 19 | Description of the work realized 20 | 21 | Bug-Url: https://github.com/dartdesigner/Dart-Designer/issues/0123456789 22 | Change-Id: 012345678901234567890123456789 23 | ``` 24 | The change id should be automatically generated by the git commit hook. 25 | 26 | ## Build 27 | To build the Dart Designer, go into releng\org.obeonetwork.dsl.dart.releng\launcher, install the latest version of maven and use "mvn clean verify". The Dart Designer binaries will be available in packaging\org.obeonetwork.dsl.dart.product\target\products. 28 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/bundle.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | Bundle-Name = Dart Designer Branding 12 | Bundle-Vendor = Obeo Network 13 | 14 | Product-Name=Dart Designer 15 | aboutText=Dart Designer\ 16 | \ 17 | Copyright (c) Obeo 2014. All rights reserved.\ 18 | \ 19 | This product includes software developed by the Eclipse Foundation http://www.eclipse.org/\ 20 | This product includes software developed by the Apache Software Foundation http://apache.org/\n 21 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/src/org/obeonetwork/dsl/dart/usage/internal/analytics/messages.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | Usage_GoogleAnalytics=UA-50092246-2 12 | Usage_ActivationPageURL=DartDesigner/Usage/Activation 13 | Usage_ActivationPageTitle=platform:/plugin/org.obeonetwork.dsl.dart.design/usage/activation 14 | 15 | Error_CreatingGoogleAnalyticsConfig=Error while creating the Google Analytics configuration 16 | Error_OpeningUsageHyperlink=Error while accessing the usage report web page 17 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | net.sf.eclipsecs.core.CheckstyleBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.ManifestBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.SchemaBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | net.sf.eclipsecs.core.CheckstyleNature 32 | org.eclipse.pde.PluginNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.editor 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | net.sf.eclipsecs.core.CheckstyleBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | org.eclipse.pde.PluginNature 32 | net.sf.eclipsecs.core.CheckstyleNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | 10 | 12 | 17 | 18 | 19 | 21 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.design.tests 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | net.sf.eclipsecs.core.CheckstyleBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | net.sf.eclipsecs.core.CheckstyleNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/src/org/obeonetwork/dsl/dart/design/internal/utils/IDartDesignerConstants.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.design.internal.utils; 12 | 13 | /** 14 | * Utility interface holding some constants. 15 | * 16 | * @author Stephane Begaudeau 17 | */ 18 | public interface IDartDesignerConstants { 19 | /** 20 | * The identifier of the plugin. 21 | */ 22 | String PLUGIN_ID = "org.obeonetwork.dsl.dart.design"; //$NON-NLS-1$ 23 | 24 | } 25 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.usage 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | net.sf.eclipsecs.core.CheckstyleBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | net.sf.eclipsecs.core.CheckstyleNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /features/org.obeonetwork.dsl.dart.feature/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 4.0.0 15 | 16 | 17 | org.obeonetwork.dsl.dart 18 | org.obeonetwork.dsl.dart.releng.parent 19 | 0.4.0-SNAPSHOT 20 | ../../releng/org.obeonetwork.dsl.dart.releng/parent 21 | 22 | 23 | org.obeonetwork.dsl.dart.feature 24 | eclipse-feature 25 | 26 | Dart Designer Feature 27 | 28 | 29 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | 21 | 22 | %_UI_DartDesignerProjectWizard_description 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dart Designer 2 | [Dart Designer](http://dartdesigner.github.io) provides a complete workbench to build Dart applications. 3 | 4 | [![Build Status](https://travis-ci.org/dartdesigner/Dart-Designer.svg?branch=master)](https://travis-ci.org/dartdesigner/Dart-Designer) 5 | [![Stories in Ready](https://badge.waffle.io/dartdesigner/dart-designer.svg?label=ready&title=Ready)](http://waffle.io/dartdesigner/dart-designer) 6 | 7 | [Dart Programming Language Specification](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-408.pdf) 8 | 9 | ## License 10 | The Dart Designer is available under the Eclipse Public License v1.0. It includes components from the Eclipse Foundation, the Apache Foundation and components from the Dart Editor. 11 | 12 | ## Copyright 13 | Copyright (c) 2014 Obeo. 14 | 15 | All rights reserved. This program and the accompanying materials 16 | are made available under the terms of the Eclipse Public License 17 | v1.0 which accompanies this distribution, and is available at 18 | http://www.eclipse.org/legal/epl-v10.html 19 | 20 | ## Contributing 21 | If you want to contribute to this project, fork the repository on Github and use a pull request to submit changes. -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- 1 | compilers.f.unresolved-features=1 2 | compilers.f.unresolved-plugins=1 3 | compilers.incompatible-environment=1 4 | compilers.p.build=1 5 | compilers.p.build.bin.includes=1 6 | compilers.p.build.encodings=2 7 | compilers.p.build.java.compiler=1 8 | compilers.p.build.java.compliance=1 9 | compilers.p.build.missing.output=2 10 | compilers.p.build.output.library=1 11 | compilers.p.build.source.library=1 12 | compilers.p.build.src.includes=1 13 | compilers.p.deprecated=1 14 | compilers.p.discouraged-class=1 15 | compilers.p.internal=1 16 | compilers.p.missing-packages=1 17 | compilers.p.missing-version-export-package=2 18 | compilers.p.missing-version-import-package=2 19 | compilers.p.missing-version-require-bundle=2 20 | compilers.p.no-required-att=0 21 | compilers.p.not-externalized-att=1 22 | compilers.p.unknown-attribute=1 23 | compilers.p.unknown-class=1 24 | compilers.p.unknown-element=1 25 | compilers.p.unknown-identifier=1 26 | compilers.p.unknown-resource=1 27 | compilers.p.unresolved-ex-points=0 28 | compilers.p.unresolved-import=0 29 | compilers.s.create-docs=false 30 | compilers.s.doc-folder=doc 31 | compilers.s.open-tags=1 32 | eclipse.preferences.version=1 33 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- 1 | compilers.f.unresolved-features=1 2 | compilers.f.unresolved-plugins=1 3 | compilers.incompatible-environment=1 4 | compilers.p.build=1 5 | compilers.p.build.bin.includes=1 6 | compilers.p.build.encodings=2 7 | compilers.p.build.java.compiler=1 8 | compilers.p.build.java.compliance=1 9 | compilers.p.build.missing.output=2 10 | compilers.p.build.output.library=1 11 | compilers.p.build.source.library=1 12 | compilers.p.build.src.includes=1 13 | compilers.p.deprecated=1 14 | compilers.p.discouraged-class=1 15 | compilers.p.internal=1 16 | compilers.p.missing-packages=1 17 | compilers.p.missing-version-export-package=2 18 | compilers.p.missing-version-import-package=2 19 | compilers.p.missing-version-require-bundle=2 20 | compilers.p.no-required-att=0 21 | compilers.p.not-externalized-att=1 22 | compilers.p.unknown-attribute=1 23 | compilers.p.unknown-class=1 24 | compilers.p.unknown-element=1 25 | compilers.p.unknown-identifier=1 26 | compilers.p.unknown-resource=1 27 | compilers.p.unresolved-ex-points=0 28 | compilers.p.unresolved-import=0 29 | compilers.s.create-docs=false 30 | compilers.s.doc-folder=doc 31 | compilers.s.open-tags=1 32 | eclipse.preferences.version=1 33 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- 1 | compilers.f.unresolved-features=1 2 | compilers.f.unresolved-plugins=1 3 | compilers.incompatible-environment=1 4 | compilers.p.build=1 5 | compilers.p.build.bin.includes=1 6 | compilers.p.build.encodings=2 7 | compilers.p.build.java.compiler=1 8 | compilers.p.build.java.compliance=1 9 | compilers.p.build.missing.output=2 10 | compilers.p.build.output.library=1 11 | compilers.p.build.source.library=1 12 | compilers.p.build.src.includes=1 13 | compilers.p.deprecated=1 14 | compilers.p.discouraged-class=1 15 | compilers.p.internal=1 16 | compilers.p.missing-packages=1 17 | compilers.p.missing-version-export-package=2 18 | compilers.p.missing-version-import-package=2 19 | compilers.p.missing-version-require-bundle=2 20 | compilers.p.no-required-att=0 21 | compilers.p.not-externalized-att=1 22 | compilers.p.unknown-attribute=1 23 | compilers.p.unknown-class=1 24 | compilers.p.unknown-element=1 25 | compilers.p.unknown-identifier=1 26 | compilers.p.unknown-resource=1 27 | compilers.p.unresolved-ex-points=0 28 | compilers.p.unresolved-import=0 29 | compilers.s.create-docs=false 30 | compilers.s.doc-folder=doc 31 | compilers.s.open-tags=1 32 | eclipse.preferences.version=1 33 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- 1 | compilers.f.unresolved-features=1 2 | compilers.f.unresolved-plugins=1 3 | compilers.incompatible-environment=1 4 | compilers.p.build=1 5 | compilers.p.build.bin.includes=1 6 | compilers.p.build.encodings=2 7 | compilers.p.build.java.compiler=1 8 | compilers.p.build.java.compliance=1 9 | compilers.p.build.missing.output=2 10 | compilers.p.build.output.library=1 11 | compilers.p.build.source.library=1 12 | compilers.p.build.src.includes=1 13 | compilers.p.deprecated=1 14 | compilers.p.discouraged-class=1 15 | compilers.p.internal=1 16 | compilers.p.missing-packages=1 17 | compilers.p.missing-version-export-package=2 18 | compilers.p.missing-version-import-package=2 19 | compilers.p.missing-version-require-bundle=2 20 | compilers.p.no-required-att=0 21 | compilers.p.not-externalized-att=1 22 | compilers.p.unknown-attribute=1 23 | compilers.p.unknown-class=1 24 | compilers.p.unknown-element=1 25 | compilers.p.unknown-identifier=1 26 | compilers.p.unknown-resource=1 27 | compilers.p.unresolved-ex-points=0 28 | compilers.p.unresolved-import=0 29 | compilers.s.create-docs=false 30 | compilers.s.doc-folder=doc 31 | compilers.s.open-tags=1 32 | eclipse.preferences.version=1 33 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- 1 | compilers.f.unresolved-features=1 2 | compilers.f.unresolved-plugins=1 3 | compilers.incompatible-environment=1 4 | compilers.p.build=1 5 | compilers.p.build.bin.includes=1 6 | compilers.p.build.encodings=2 7 | compilers.p.build.java.compiler=1 8 | compilers.p.build.java.compliance=1 9 | compilers.p.build.missing.output=2 10 | compilers.p.build.output.library=1 11 | compilers.p.build.source.library=1 12 | compilers.p.build.src.includes=1 13 | compilers.p.deprecated=1 14 | compilers.p.discouraged-class=1 15 | compilers.p.internal=1 16 | compilers.p.missing-packages=2 17 | compilers.p.missing-version-export-package=2 18 | compilers.p.missing-version-import-package=2 19 | compilers.p.missing-version-require-bundle=2 20 | compilers.p.no-required-att=0 21 | compilers.p.not-externalized-att=1 22 | compilers.p.unknown-attribute=1 23 | compilers.p.unknown-class=1 24 | compilers.p.unknown-element=1 25 | compilers.p.unknown-identifier=1 26 | compilers.p.unknown-resource=1 27 | compilers.p.unresolved-ex-points=0 28 | compilers.p.unresolved-import=0 29 | compilers.s.create-docs=false 30 | compilers.s.doc-folder=doc 31 | compilers.s.open-tags=1 32 | eclipse.preferences.version=1 33 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.obeonetwork.dsl.dart.design 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.acceleo.ide.ui.acceleoBuilder 25 | 26 | 27 | 28 | 29 | net.sf.eclipsecs.core.CheckstyleBuilder 30 | 31 | 32 | 33 | 34 | 35 | org.eclipse.acceleo.ide.ui.acceleoNature 36 | org.eclipse.jdt.core.javanature 37 | org.eclipse.pde.PluginNature 38 | net.sf.eclipsecs.core.CheckstyleNature 39 | 40 | 41 | -------------------------------------------------------------------------------- /development/org.obeonetwork.dsl.dart.development/settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- 1 | compilers.f.unresolved-features=1 2 | compilers.f.unresolved-plugins=1 3 | compilers.incompatible-environment=1 4 | compilers.p.build=1 5 | compilers.p.build.bin.includes=1 6 | compilers.p.build.encodings=2 7 | compilers.p.build.java.compiler=1 8 | compilers.p.build.java.compliance=1 9 | compilers.p.build.missing.output=2 10 | compilers.p.build.output.library=1 11 | compilers.p.build.source.library=1 12 | compilers.p.build.src.includes=1 13 | compilers.p.deprecated=1 14 | compilers.p.discouraged-class=1 15 | compilers.p.internal=1 16 | compilers.p.missing-packages=1 17 | compilers.p.missing-version-export-package=2 18 | compilers.p.missing-version-import-package=2 19 | compilers.p.missing-version-require-bundle=2 20 | compilers.p.no-required-att=0 21 | compilers.p.not-externalized-att=1 22 | compilers.p.unknown-attribute=1 23 | compilers.p.unknown-class=1 24 | compilers.p.unknown-element=1 25 | compilers.p.unknown-identifier=1 26 | compilers.p.unknown-resource=1 27 | compilers.p.unresolved-ex-points=0 28 | compilers.p.unresolved-import=0 29 | compilers.s.create-docs=false 30 | compilers.s.doc-folder=doc 31 | compilers.s.open-tags=1 32 | eclipse.preferences.version=1 33 | -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- 1 | compilers.f.unresolved-features=1 2 | compilers.f.unresolved-plugins=1 3 | compilers.incompatible-environment=1 4 | compilers.p.build=1 5 | compilers.p.build.bin.includes=1 6 | compilers.p.build.encodings=2 7 | compilers.p.build.java.compiler=1 8 | compilers.p.build.java.compliance=1 9 | compilers.p.build.missing.output=2 10 | compilers.p.build.output.library=1 11 | compilers.p.build.source.library=1 12 | compilers.p.build.src.includes=1 13 | compilers.p.deprecated=1 14 | compilers.p.discouraged-class=1 15 | compilers.p.internal=1 16 | compilers.p.missing-packages=1 17 | compilers.p.missing-version-export-package=2 18 | compilers.p.missing-version-import-package=2 19 | compilers.p.missing-version-require-bundle=2 20 | compilers.p.no-required-att=0 21 | compilers.p.not-externalized-att=1 22 | compilers.p.unknown-attribute=1 23 | compilers.p.unknown-class=1 24 | compilers.p.unknown-element=1 25 | compilers.p.unknown-identifier=1 26 | compilers.p.unknown-resource=1 27 | compilers.p.unresolved-ex-points=0 28 | compilers.p.unresolved-import=0 29 | compilers.s.create-docs=false 30 | compilers.s.doc-folder=doc 31 | compilers.s.open-tags=1 32 | eclipse.preferences.version=1 33 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | 17 | 18 | 19 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/src/org/obeonetwork/dsl/dart/design/tests/AllTests.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.design.tests; 12 | 13 | import org.junit.runner.RunWith; 14 | import org.junit.runners.Suite; 15 | import org.junit.runners.Suite.SuiteClasses; 16 | import org.obeonetwork.dsl.dart.design.tests.internal.services.CommonToolsServicesTests; 17 | 18 | /** 19 | * Tests suite. 20 | * 21 | * @author Stephane Begaudeau 22 | */ 23 | @RunWith(Suite.class) 24 | @SuiteClasses({CommonToolsServicesTests.class }) 25 | public final class AllTests { 26 | /** 27 | * The constructor. 28 | */ 29 | private AllTests() { 30 | // prevent instantiation 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Folder.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | /** 14 | * A representation of the model object 'Folder'. 16 | * 17 | * @see org.obeonetwork.dsl.dart.DartPackage#getFolder() 18 | * @model 19 | * @generated 20 | */ 21 | public interface Folder extends Container, Asset { 22 | /** 23 | * 24 | * 25 | * @generated 26 | */ 27 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 28 | 29 | } // Folder 30 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Metadata.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | /** 14 | * A representation of the model object 'Metadata'. 16 | * 17 | * @see org.obeonetwork.dsl.dart.DartPackage#getMetadata() 18 | * @model 19 | * @generated 20 | */ 21 | public interface Metadata extends Classifier { 22 | /** 23 | * 24 | * 25 | * @generated 26 | */ 27 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 28 | 29 | } // Metadata 30 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Type.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | import org.eclipse.emf.ecore.EObject; 14 | 15 | /** 16 | * A representation of the model object 'Type'. 17 | * 18 | * @see org.obeonetwork.dsl.dart.DartPackage#getType() 19 | * @model interface="true" abstract="true" 20 | * @generated 21 | */ 22 | public interface Type extends EObject { 23 | /** 24 | * 25 | * 26 | * @generated 27 | */ 28 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 29 | 30 | } // Type 31 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Element.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | import org.eclipse.emf.ecore.EObject; 14 | 15 | /** 16 | * A representation of the model object 'Element'. 18 | * 19 | * @see org.obeonetwork.dsl.dart.DartPackage#getElement() 20 | * @model abstract="true" 21 | * @generated 22 | */ 23 | public interface Element extends EObject { 24 | /** 25 | * 26 | * 27 | * @generated 28 | */ 29 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 30 | 31 | } // Element 32 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/src/org/obeonetwork/dsl/dart/usage/internal/preferences/messages.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | Usage_PreferencePage_Description=Preference page with options for anonymous usage data reporting.\nUsage data is used for statistical matters only. 12 | Usage_PreferencePage_AllowReporting=&Please allow the Dart Designer team to receive anonymous usage\n statistics for this Eclipse installation with Dart Designer. 13 | Usage_PreferencePage_ReportedValues=Reported Values 14 | Usage_PreferencePage_Locale=Locale\: 15 | Usage_PreferencePage_OperatingSystem=Operating system\: 16 | Usage_PreferencePage_OperatingSystemVersion=Operating system version\: 17 | Usage_PreferencePage_ProductId=Eclipse product\: 18 | Usage_PreferencePage_ProductVersion=Eclipse product version\: 19 | Usage_PreferencePage_Diagrams=Used diagrams and number of usage-hits\: -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/AngularType.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | import org.eclipse.emf.ecore.EObject; 14 | 15 | /** 16 | * A representation of the model object 'Angular Type'. 18 | * 19 | * @see org.obeonetwork.dsl.dart.DartPackage#getAngularType() 20 | * @model interface="true" abstract="true" 21 | * @generated 22 | */ 23 | public interface AngularType extends EObject { 24 | /** 25 | * 26 | * 27 | * @generated 28 | */ 29 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 30 | 31 | } // AngularType 32 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src/org/obeonetwork/dsl/dart/IDartSpecificationConstants.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | /** 14 | * Utility interface holding some constants. 15 | * 16 | * @author Stephane Begaudeau 17 | */ 18 | public interface IDartSpecificationConstants { 19 | /** 20 | * The URI of the dartlang specification file. 21 | */ 22 | String DARTLANG_URI = "platform:/plugin/org.obeonetwork.dsl.dart/model/dartlang.dartspec"; //$NON-NLS-1$ 23 | 24 | /** 25 | * The name of the dartlang package. 26 | */ 27 | String DARTLANG_PACKAGE_NAME = "Dart Standard Library"; //$NON-NLS-1$ 28 | 29 | /** 30 | * The Dart specification extension. 31 | */ 32 | String EXTENSION = "dartspec"; //$NON-NLS-1$ 33 | 34 | /** 35 | * The extension of dart files. 36 | */ 37 | String DART_FILE_EXTENSION = ".dart"; //$NON-NLS-1$ 38 | } 39 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/intro/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Welcome to Dart Designer 7 | 8 | 9 | 10 | 11 |
12 |
13 |
14 | 15 |
16 | 17 |
18 |
19 |

Welcome

20 |
21 |
22 | 27 |
28 |
29 | 30 |
31 | 32 |
33 | 36 |
37 | 38 |
39 |
40 |
41 | 42 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-SymbolicName: org.obeonetwork.dsl.dart.design;singleton:=true 5 | Bundle-Version: 0.4.0.qualifier 6 | Bundle-Activator: org.obeonetwork.dsl.dart.design.internal.DartDesignerPlugin 7 | Require-Bundle: org.eclipse.ui;bundle-version="3.105.0", 8 | org.eclipse.core.runtime;bundle-version="3.9.100", 9 | org.eclipse.sirius;bundle-version="1.0.0", 10 | org.obeonetwork.dsl.dart;bundle-version="0.4.0", 11 | org.eclipse.core.resources;bundle-version="3.9.0", 12 | com.google.guava;bundle-version="[15.0.0,16.0.0)", 13 | org.eclipse.ui.ide;bundle-version="3.10.0", 14 | org.eclipse.sirius.ui;bundle-version="1.0.0", 15 | org.eclipse.sirius.ext.base;bundle-version="1.0.0", 16 | org.eclipse.emf.transaction;bundle-version="1.8.0", 17 | org.eclipse.sirius.diagram;bundle-version="1.0.0" 18 | Bundle-ActivationPolicy: lazy 19 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 20 | Bundle-Vendor: %Bundle-Vendor 21 | Bundle-Localization: bundle 22 | Export-Package: org.obeonetwork.dsl.dart.design.internal;version="0.4.0";x-friends:="org.obeonetwork.dsl.dart.usage", 23 | org.obeonetwork.dsl.dart.design.internal.services;version="0.4.0";x-friends:="org.obeonetwork.dsl.dart.design.tests", 24 | org.obeonetwork.dsl.dart.design.internal.utils;version="0.4.0";x-internal:=true, 25 | org.obeonetwork.dsl.dart.design.internal.wizards;version="0.4.0";x-internal:=true 26 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 4.0.0 15 | 16 | 17 | org.obeonetwork.dsl.dart 18 | org.obeonetwork.dsl.dart.releng.parent 19 | 0.4.0-SNAPSHOT 20 | ../../releng/org.obeonetwork.dsl.dart.releng/parent 21 | 22 | 23 | org.obeonetwork.dsl.dart 24 | eclipse-plugin 25 | 26 | Dart Designer Model 27 | 28 | 29 | 30 | 31 | org.eclipse.tycho 32 | tycho-source-plugin 33 | 34 | 35 | org.apache.maven.plugins 36 | maven-pmd-plugin 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 4.0.0 15 | 16 | 17 | org.obeonetwork.dsl.dart 18 | org.obeonetwork.dsl.dart.releng.parent 19 | 0.4.0-SNAPSHOT 20 | ../../releng/org.obeonetwork.dsl.dart.releng/parent 21 | 22 | 23 | org.obeonetwork.dsl.dart.design 24 | eclipse-plugin 25 | 26 | Dart Designer 27 | 28 | 29 | 30 | 31 | org.eclipse.tycho 32 | tycho-source-plugin 33 | 34 | 35 | org.apache.maven.plugins 36 | maven-pmd-plugin 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.edit/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 4.0.0 15 | 16 | 17 | org.obeonetwork.dsl.dart 18 | org.obeonetwork.dsl.dart.releng.parent 19 | 0.4.0-SNAPSHOT 20 | ../../releng/org.obeonetwork.dsl.dart.releng/parent 21 | 22 | 23 | org.obeonetwork.dsl.dart.edit 24 | eclipse-plugin 25 | 26 | Dart Designer Model Edit 27 | 28 | 29 | 30 | 31 | org.eclipse.tycho 32 | tycho-source-plugin 33 | 34 | 35 | org.apache.maven.plugins 36 | maven-pmd-plugin 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 4.0.0 15 | 16 | 17 | org.obeonetwork.dsl.dart 18 | org.obeonetwork.dsl.dart.releng.parent 19 | 0.4.0-SNAPSHOT 20 | ../../releng/org.obeonetwork.dsl.dart.releng/parent 21 | 22 | 23 | org.obeonetwork.dsl.dart.editor 24 | eclipse-plugin 25 | 26 | Dart Designer Model Editor 27 | 28 | 29 | 30 | 31 | org.eclipse.tycho 32 | tycho-source-plugin 33 | 34 | 35 | org.apache.maven.plugins 36 | maven-pmd-plugin 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/build.acceleo: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 15 | 4.0.0 16 | 17 | 18 | org.obeonetwork.dsl.dart 19 | org.obeonetwork.dsl.dart.releng.parent 20 | 0.4.0-SNAPSHOT 21 | ../../releng/org.obeonetwork.dsl.dart.releng/parent 22 | 23 | 24 | org.obeonetwork.dsl.dart.branding 25 | eclipse-plugin 26 | Dart Designer Branding 27 | 28 | 29 | 30 | 31 | org.eclipse.tycho 32 | tycho-source-plugin 33 | 34 | 35 | org.apache.maven.plugins 36 | maven-pmd-plugin 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/src/org/obeonetwork/dsl/dart/usage/internal/preferences/UsagePreferenceInitializer.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2013 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.usage.internal.preferences; 12 | 13 | import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer; 14 | import org.eclipse.jface.dialogs.IDialogConstants; 15 | import org.obeonetwork.dsl.dart.design.internal.DartDesignerPlugin; 16 | 17 | /** 18 | * Initialize default preferences value. 19 | * 20 | * @author Melanie Bats melanie.bats@obeo.fr 21 | */ 22 | public class UsagePreferenceInitializer extends AbstractPreferenceInitializer { 23 | 24 | @Override 25 | public void initializeDefaultPreferences() { 26 | DartDesignerPlugin 27 | .getDefault() 28 | .getPreferenceStore() 29 | .setDefault(UsagePreferences.USAGE_USER_ANSWER_ID, 30 | IDialogConstants.ABORT_ID); 31 | DartDesignerPlugin.getDefault().getPreferenceStore() 32 | .setDefault(UsagePreferences.USAGE_ENABLED_ID, false); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.dart.target/dartdesigner-luna.target: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.documentation/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 15 | 4.0.0 16 | 17 | 18 | org.obeonetwork.dsl.dart 19 | org.obeonetwork.dsl.dart.releng.parent 20 | 0.4.0-SNAPSHOT 21 | ../../releng/org.obeonetwork.dsl.dart.releng/parent 22 | 23 | 24 | org.obeonetwork.dsl.dart.documentation 25 | eclipse-plugin 26 | 27 | Dart Designer Documentation 28 | 29 | 30 | 31 | 32 | org.eclipse.tycho 33 | tycho-source-plugin 34 | 35 | 36 | org.apache.maven.plugins 37 | maven-pmd-plugin 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /tests/org.obeonetwork.dsl.dart.design.tests/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 4.0.0 15 | 16 | 17 | org.obeonetwork.dsl.dart 18 | org.obeonetwork.dsl.dart.releng.parent 19 | 0.4.0-SNAPSHOT 20 | ../../releng/org.obeonetwork.dsl.dart.releng/parent 21 | 22 | 23 | org.obeonetwork.dsl.dart.design.tests 24 | eclipse-test-plugin 25 | 26 | 27 | 28 | 29 | org.eclipse.tycho 30 | tycho-surefire-plugin 31 | ${tycho-version} 32 | 33 | 34 | org/obeonetwork/dsl/dart/design/tests/AllTests.class 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 15 | 4.0.0 16 | 17 | 18 | org.obeonetwork.dsl.dart 19 | org.obeonetwork.dsl.dart.releng.parent 20 | 0.4.0-SNAPSHOT 21 | ../../releng/org.obeonetwork.dsl.dart.releng/parent 22 | 23 | 24 | org.obeonetwork.dsl.dart.usage 25 | eclipse-plugin 26 | 27 | Dart Designer Usage Report with Google Analytics 28 | 29 | 30 | 31 | 32 | org.eclipse.tycho 33 | tycho-source-plugin 34 | 35 | 36 | org.apache.maven.plugins 37 | maven-pmd-plugin 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | env: 3 | global: 4 | secure: bEagBH1ChkGMxsPCHLA+FBmRZEwqntkrz1Wipy7STA9xqpoIqpjKxy2hfLJdtD5vf0ambHog68TtlC+Y2S0gXExm4ahHA7/IPFQGNgZUnpjm+vjfm35LJH8sdHPxxo7PP8RgQp1deTVimAIr6hcenEYWuIVbUJM0ENCe+SdJ04A= 5 | before_script: 6 | - cd bundles/org.obeonetwork.dsl.dart.documentation 7 | - npm install -g bower 8 | - bower install 9 | - cd ../../releng/org.obeonetwork.dsl.dart.releng/launcher 10 | script: mvn clean verify 11 | after_script: 12 | - pwd 13 | - cd ../../../ 14 | - ls 15 | - chmod a+x travis-promote.sh 16 | - ./travis-promote.sh 17 | jdk: oraclejdk7 18 | deploy: 19 | provider: releases 20 | skip_cleanup: true 21 | api_key: 22 | secure: N6mBRX0Yh0pbMX1DshRSOiRRh119w2hO4dX9LxSeSXqCZfxcQIuOKhUHzNLHl/UGZpYTPr1cbjrsVED/tOs610vOm96C8SbL6ZlruAYl2UspxstXkbv7+qd2tt3NtjZLspJA9/WC4CMX9KPfJpYHxPoM4MJreS3sqJ9KUEr8jBc= 23 | file: 24 | - $TRAVIS_BUILD_DIR/packaging/org.obeonetwork.dsl.dart.product/target/products/DartDesigner-linux.gtk.x86.zip 25 | - $TRAVIS_BUILD_DIR/packaging/org.obeonetwork.dsl.dart.product/target/products/DartDesigner-linux.gtk.x86_64.zip 26 | - $TRAVIS_BUILD_DIR/packaging/org.obeonetwork.dsl.dart.product/target/products/DartDesigner-macosx.cocoa.x86_64.zip 27 | - $TRAVIS_BUILD_DIR/packaging/org.obeonetwork.dsl.dart.product/target/products/DartDesigner-win32.win32.x86.zip 28 | - $TRAVIS_BUILD_DIR/packaging/org.obeonetwork.dsl.dart.product/target/products/DartDesigner-win32.win32.x86_64.zip 29 | on: 30 | tags: true 31 | repo: dartdesigner/Dart-Designer 32 | all_branches: true 33 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/src/org/obeonetwork/dsl/dart/usage/internal/dialog/UsageDialogMessages.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.usage.internal.dialog; 12 | 13 | import org.eclipse.osgi.util.NLS; 14 | 15 | /** 16 | * Messages used in usage enablement dialog. 17 | * 18 | * @author Melanie Bats melanie.bats@obeo.fr 19 | */ 20 | public final class UsageDialogMessages extends NLS { 21 | /** 22 | * The name of the bundle. 23 | */ 24 | private static final String BUNDLE_NAME = "org.obeonetwork.dsl.dart.usage.internal.dialog.messages"; //$NON-NLS-1$ 25 | 26 | // CHECKSTYLE:OFF documentation is _still_ required! 27 | 28 | /** 29 | * Usage dialog title. 30 | */ 31 | public static String Usage_Dialog_Title; 32 | 33 | /** 34 | * Usage dialog message. 35 | */ 36 | public static String Usage_Dialog_Message; 37 | 38 | static { 39 | // initialize resource bundle 40 | NLS.initializeMessages(BUNDLE_NAME, UsageDialogMessages.class); 41 | } 42 | 43 | /** 44 | * The constructor. 45 | */ 46 | private UsageDialogMessages() { 47 | // prevent instantiation 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/intro/findhelp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Welcome to Dart Designer 7 | 8 | 9 | 10 | 11 |
12 |
13 |
14 | 15 |
16 |
17 |
18 | 24 |

Find Help

25 |
26 |
27 | 31 |
32 |
33 |
34 |
35 | 38 |
39 |
40 |
41 |
42 | 43 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/impl/MetadataImpl.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart.impl; 12 | 13 | import org.eclipse.emf.ecore.EClass; 14 | 15 | import org.obeonetwork.dsl.dart.DartPackage; 16 | import org.obeonetwork.dsl.dart.Metadata; 17 | 18 | /** 19 | * An implementation of the model object 'Metadata'. 21 | *

22 | *

23 | * 24 | * @generated 25 | */ 26 | public class MetadataImpl extends ClassifierImpl implements Metadata { 27 | /** 28 | * 29 | * 30 | * @generated 31 | */ 32 | public static final String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 33 | 34 | /** 35 | * 36 | * 37 | * @generated 38 | */ 39 | protected MetadataImpl() { 40 | super(); 41 | } 42 | 43 | /** 44 | * 45 | * 46 | * @generated 47 | */ 48 | @Override 49 | protected EClass eStaticClass() { 50 | return DartPackage.Literals.METADATA; 51 | } 52 | 53 | } // MetadataImpl 54 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/src/org/obeonetwork/dsl/dart/design/internal/utils/IDartDesignerIcons.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.design.internal.utils; 12 | 13 | /** 14 | * Utility interface storing the path of the icons. 15 | * 16 | * @author Stephane Begaudeau 17 | */ 18 | public interface IDartDesignerIcons { 19 | /** 20 | * Icons. 21 | */ 22 | String ICONS = "icons/"; //$NON-NLS-1$ 23 | 24 | /** 25 | * The banner of the new Dart Designer wizard page. 26 | */ 27 | String DART_DESIGNER_PROJECT_WIZARD_BANNER = "full/wizban/DartDesignerProject.png"; //$NON-NLS-1$ 28 | 29 | /** 30 | * The banner of the new Dart Specification wizard page. 31 | */ 32 | String DART_SPECIFICATION_WIZARD_BANNER = "full/wizban/DartSpecification.png"; //$NON-NLS-1$ 33 | 34 | /** 35 | * The banner of the new Dart viewpoint wizard page. 36 | */ 37 | String DART_VIEWPOINT_WIZARD_BANNER = "full/wizban/DartViewpoint.png"; //$NON-NLS-1$ 38 | 39 | /** 40 | * The icon of the Dart Designer project. 41 | */ 42 | String DART_DESIGNER_PROJECT_ICON = "full/obj16/DartDesignerProject.png"; //$NON-NLS-1$ 43 | 44 | /** 45 | * The icon of the new Dart Designer wizard page. 46 | */ 47 | String DART_DESIGNER_PROJECT_WIZARD_ICON = "full/etool16/NewDartDesignerProject.png"; //$NON-NLS-1$ 48 | } 49 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/src/org/obeonetwork/dsl/dart/design/internal/utils/I18n.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.design.internal.utils; 12 | 13 | import java.text.MessageFormat; 14 | import java.util.Locale; 15 | import java.util.MissingResourceException; 16 | import java.util.ResourceBundle; 17 | 18 | /** 19 | * Utility class for the internationalization. 20 | * 21 | * @author Stephane Begaudeau 22 | */ 23 | public final class I18n { 24 | /** 25 | * The path of the resources files. 26 | */ 27 | private static final String BUNDLE_NAME = "OSGI-INF/i18n/messages"; //$NON-NLS-1$ 28 | 29 | /** 30 | * The constructor. 31 | */ 32 | private I18n() { 33 | // prevent instantiation 34 | } 35 | 36 | /** 37 | * Returns the value for the given key in the given locale with the given arguments. 38 | * 39 | * @param key 40 | * The key of the message 41 | * @param arguments 42 | * The arguments of the message 43 | * @return The message 44 | */ 45 | public static String getString(String key, Object... arguments) { 46 | try { 47 | return MessageFormat.format(ResourceBundle.getBundle(BUNDLE_NAME, Locale.getDefault()).getString( 48 | key), arguments); 49 | } catch (MissingResourceException e) { 50 | return '!' + key + '!'; 51 | } 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | 17 | 18 | 19 | 22 | 28 | %_UI_DartModelWizard_description 29 | 30 | 31 | 32 | 33 | 34 | 35 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/OSGI-INF/i18n/messages.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | PackageDiagram.NewName = {0} Package Diagram 12 | ExplorerDiagram.NewName = {0} Explorer Diagram 13 | ClassDiagram.NewName = {0} Class Diagram 14 | LibraryDiagram.NewName = {0} Library Diagram 15 | ModuleDiagram.NewName = {0} Module Diagram 16 | RouteDiagram.NewName = {0} Route Diagram 17 | 18 | Package.NewName = New Package 19 | Folder.NewName = New Folder 20 | Class.NewName = NewClass 21 | Metadata.NewName = @NewMetadata 22 | Library.NewName = NewLibrary 23 | Field.NewName = newField 24 | Method.NewName = newMethod 25 | Parameter.NewName = newParameter 26 | Module.NewName = NewModule 27 | Controller.NewName = NewController 28 | Component.NewName = NewComponent 29 | Decorator.NewName = NewDecorator 30 | Formatter.NewName = NewFormatter 31 | 32 | DartDesignerProjectCreation.PrepareDartDesignerProject = Prepare Dart Designer project 33 | DartDesignerProjectCreation.LinkTheSpecification = Link the specification... 34 | 35 | DartDesignerProjectWizard.WizardName = Dart Designer Project 36 | 37 | DartDesignerProjectWizard.ProjectPageName = Dart Designer Project 38 | DartDesignerProjectWizard.ProjectPageTitle = Create a new Dart Designer project 39 | DartDesignerProjectWizard.ProjectPageDescription = Enter the name of the Dart Designer project to create. 40 | 41 | Validation.InvalidHtmlName = The name of the HTML page does not have the proper extension. -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/src/org/obeonetwork/dsl/dart/usage/internal/analytics/UsageMessages.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.usage.internal.analytics; 12 | 13 | import org.eclipse.osgi.util.NLS; 14 | 15 | /** 16 | * Messages used in usage enablement dialog. 17 | * 18 | * @author Melanie Bats melanie.bats@obeo.fr 19 | */ 20 | public final class UsageMessages extends NLS { 21 | /** 22 | * The bundle name. 23 | */ 24 | private static final String BUNDLE_NAME = "org.obeonetwork.dsl.dart.usage.internal.analytics.messages"; //$NON-NLS-1$ 25 | 26 | // CHECKSTYLE:OFF documentation is _still_ required! 27 | 28 | /** 29 | * Google Analytics. 30 | */ 31 | public static String Usage_GoogleAnalytics; 32 | 33 | /** 34 | * Activation page URL. 35 | */ 36 | public static String Usage_ActivationPageURL; 37 | 38 | /** 39 | * Activation page title. 40 | */ 41 | public static String Usage_ActivationPageTitle; 42 | 43 | /** 44 | * Creating Google Analytics config. 45 | */ 46 | public static String Error_CreatingGoogleAnalyticsConfig; 47 | 48 | /** 49 | * 50 | */ 51 | public static String Error_OpeningUsageHyperlink; 52 | 53 | static { 54 | // initialize resource bundle 55 | NLS.initializeMessages(BUNDLE_NAME, UsageMessages.class); 56 | } 57 | 58 | /** 59 | * The constructor. 60 | */ 61 | private UsageMessages() { 62 | // prevent instatiation 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/HTML.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | import org.eclipse.emf.common.util.EList; 14 | 15 | /** 16 | * A representation of the model object 'HTML'. 17 | *

18 | * The following features are supported: 19 | *

    20 | *
  • {@link org.obeonetwork.dsl.dart.HTML#getUses Uses}
  • 21 | *
22 | *

23 | * 24 | * @see org.obeonetwork.dsl.dart.DartPackage#getHTML() 25 | * @model 26 | * @generated 27 | */ 28 | public interface HTML extends Asset { 29 | /** 30 | * 31 | * 32 | * @generated 33 | */ 34 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 35 | 36 | /** 37 | * Returns the value of the 'Uses' reference list. The list contents are of type 38 | * {@link org.obeonetwork.dsl.dart.Asset}. 39 | *

40 | * If the meaning of the 'Uses' reference list isn't clear, there really should be more of a 41 | * description here... 42 | *

43 | * 44 | * 45 | * @return the value of the 'Uses' reference list. 46 | * @see org.obeonetwork.dsl.dart.DartPackage#getHTML_Uses() 47 | * @model 48 | * @generated 49 | */ 50 | EList getUses(); 51 | 52 | } // HTML 53 | -------------------------------------------------------------------------------- /repositories/org.obeonetwork.dsl.dart.repository/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 15 | 4.0.0 16 | 17 | 18 | org.obeonetwork.dsl.dart 19 | org.obeonetwork.dsl.dart.releng.parent 20 | 0.4.0-SNAPSHOT 21 | ../../releng/org.obeonetwork.dsl.dart.releng/parent 22 | 23 | 24 | org.obeonetwork.dsl.dart.repository 25 | eclipse-repository 26 | 27 | Dart Designer Repository 28 | 29 | 30 | 31 | 32 | maven-resources-plugin 33 | 34 | 35 | copy-resources 36 | validate 37 | 38 | copy-resources 39 | 40 | 41 | ${basedir}/target/repository 42 | 43 | 44 | . 45 | 46 | index.html 47 | web/* 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /releng/org.obeonetwork.dsl.dart.releng/launcher/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 4.0.0 15 | 16 | 17 | org.obeonetwork.dsl.dart 18 | org.obeonetwork.dsl.dart.releng.parent 19 | 0.4.0-SNAPSHOT 20 | ../parent 21 | 22 | org.obeonetwork.dsl.dart 23 | org.obeonetwork.dsl.dart.releng.launcher 24 | pom 25 | 26 | Dart Designer Parent 27 | 28 | 29 | 30 | ${root-path}/bundles/org.obeonetwork.dsl.dart 31 | ${root-path}/bundles/org.obeonetwork.dsl.dart.edit 32 | ${root-path}/bundles/org.obeonetwork.dsl.dart.editor 33 | ${root-path}/bundles/org.obeonetwork.dsl.dart.design 34 | ${root-path}/bundles/org.obeonetwork.dsl.dart.usage 35 | ${root-path}/bundles/org.obeonetwork.dsl.dart.documentation 36 | ${root-path}/packaging/org.obeonetwork.dsl.dart.branding 37 | 38 | 39 | ${root-path}/tests/org.obeonetwork.dsl.dart.design.tests 40 | 41 | 42 | ${root-path}/features/org.obeonetwork.dsl.dart.feature 43 | 44 | 45 | ${root-path}/repositories/org.obeonetwork.dsl.dart.repository 46 | ${root-path}/packaging/org.obeonetwork.dsl.dart.product 47 | 48 | 49 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Decorator.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | /** 14 | * A representation of the model object 'Decorator'. 16 | * 17 | * @see org.obeonetwork.dsl.dart.DartPackage#getDecorator() 18 | * @model 19 | * @generated 20 | */ 21 | public interface Decorator extends org.obeonetwork.dsl.dart.Class, AngularType { 22 | /** 23 | * 24 | * 25 | * @generated 26 | */ 27 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 28 | 29 | /** 30 | * Returns the value of the 'Selector' attribute. 31 | *

32 | * If the meaning of the 'Selector' attribute isn't clear, there really should be more of a 33 | * description here... 34 | *

35 | * 36 | * 37 | * @return the value of the 'Selector' attribute. 38 | * @see #setSelector(String) 39 | * @see org.obeonetwork.dsl.dart.DartPackage#getDecorator_Selector() 40 | * @model 41 | * @generated 42 | */ 43 | String getSelector(); 44 | 45 | /** 46 | * Sets the value of the '{@link org.obeonetwork.dsl.dart.Decorator#getSelector Selector}' 47 | * attribute. 48 | * 49 | * @param value 50 | * the new value of the 'Selector' attribute. 51 | * @see #getSelector() 52 | * @generated 53 | */ 54 | void setSelector(String value); 55 | 56 | } // Decorator 57 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/src/org/obeonetwork/dsl/dart/design/internal/wizards/DartDesignerProjectSpecificationConfigurationPage.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.design.internal.wizards; 12 | 13 | import org.eclipse.jface.wizard.WizardPage; 14 | import org.eclipse.swt.widgets.Composite; 15 | import org.eclipse.ui.plugin.AbstractUIPlugin; 16 | import org.obeonetwork.dsl.dart.design.internal.utils.I18n; 17 | import org.obeonetwork.dsl.dart.design.internal.utils.I18nKeys; 18 | import org.obeonetwork.dsl.dart.design.internal.utils.IDartDesignerConstants; 19 | import org.obeonetwork.dsl.dart.design.internal.utils.IDartDesignerIcons; 20 | 21 | /** 22 | * This wizard page will be used to configure the specification to create in the new project. 23 | * 24 | * @author Stephane Begaudeau 25 | */ 26 | public class DartDesignerProjectSpecificationConfigurationPage extends WizardPage { 27 | 28 | /** 29 | * The constructor. 30 | */ 31 | public DartDesignerProjectSpecificationConfigurationPage() { 32 | super(I18n.getString(I18nKeys.DART_DESIGNER_MODEL_WIZARD_PAGE_NAME)); 33 | this.setTitle(I18n.getString(I18nKeys.DART_DESIGNER_MODEL_WIZARD_PAGE_TITLE)); 34 | this.setDescription(I18n.getString(I18nKeys.DART_DESIGNER_MODEL_WIZARD_PAGE_DESCRIPTION)); 35 | this.setImageDescriptor(AbstractUIPlugin.imageDescriptorFromPlugin( 36 | IDartDesignerConstants.PLUGIN_ID, IDartDesignerIcons.ICONS 37 | + IDartDesignerIcons.DART_SPECIFICATION_WIZARD_BANNER)); 38 | } 39 | 40 | /** 41 | * {@inheritDoc} 42 | * 43 | * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite) 44 | */ 45 | @Override 46 | public void createControl(Composite parent) { 47 | // do nothing 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /features/org.obeonetwork.dsl.dart.feature/feature.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | %Feature-Description 10 | 11 | 12 | 13 | %Feature-Copyright 14 | 15 | 16 | 17 | %Feature-License 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 33 | 34 | 40 | 41 | 47 | 48 | 54 | 55 | 60 | 61 | 67 | 68 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.editor/bundle.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | ## Copyright (c) 2014 Obeo. 3 | ## All rights reserved. This program and the accompanying materials 4 | ## are made available under the terms of the Eclipse Public License v1.0 5 | ## which accompanies this distribution, and is available at 6 | ## http://www.eclipse.org/legal/epl-v10.html 7 | ## 8 | ## Contributors: 9 | ## Obeo - initial API and implementation 10 | ################################################################################ 11 | Bundle-Name=Dart Editor 12 | Bundle-Vendor=Obeo Network 13 | 14 | _UI_DartEditor_menu = &Dart Editor 15 | 16 | _UI_CreateChild_menu_item = &New Child 17 | _UI_CreateSibling_menu_item = N&ew Sibling 18 | 19 | _UI_ShowPropertiesView_menu_item = Show &Properties View 20 | _UI_RefreshViewer_menu_item = &Refresh 21 | 22 | _UI_SelectionPage_label = Selection 23 | _UI_ParentPage_label = Parent 24 | _UI_ListPage_label = List 25 | _UI_TreePage_label = Tree 26 | _UI_TablePage_label = Table 27 | _UI_TreeWithColumnsPage_label = Tree with Columns 28 | _UI_ObjectColumn_label = Object 29 | _UI_SelfColumn_label = Self 30 | 31 | _UI_NoObjectSelected = Selected Nothing 32 | _UI_SingleObjectSelected = Selected Object: {0} 33 | _UI_MultiObjectSelected = Selected {0} Objects 34 | 35 | _UI_OpenEditorError_label = Open Editor 36 | 37 | _UI_Wizard_category = Dart Designer 38 | 39 | _UI_CreateModelError_message = Problems encountered in file "{0}" 40 | 41 | _UI_DartModelWizard_label = Dart Specification 42 | _UI_DartModelWizard_description = Create a new Dart specification 43 | 44 | _UI_DartEditor_label = Dart Specification Editor 45 | 46 | _UI_DartEditorFilenameDefaultBase = dart 47 | _UI_DartEditorFilenameExtensions = dartspec 48 | 49 | _UI_Wizard_label = New 50 | 51 | _WARN_FilenameExtension = The file name must end in ''.{0}'' 52 | _WARN_FilenameExtensions = The file name must have one of the following extensions: {0} 53 | 54 | _UI_ModelObject = &Model Object 55 | _UI_XMLEncoding = &XML Encoding 56 | _UI_XMLEncodingChoices = UTF-8 ASCII UTF-16 UTF-16BE UTF-16LE ISO-8859-1 57 | _UI_Wizard_initial_object_description = Select a model object to create 58 | 59 | _UI_FileConflict_label = File Conflict 60 | _WARN_FileConflict = There are unsaved changes that conflict with changes made outside the editor. Do you wish to discard this editor's changes? 61 | 62 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Directive.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | /** 14 | * A representation of the model object 'Directive'. 16 | *

17 | * The following features are supported: 18 | *

    19 | *
  • {@link org.obeonetwork.dsl.dart.Directive#getSelector Selector}
  • 20 | *
21 | *

22 | * 23 | * @see org.obeonetwork.dsl.dart.DartPackage#getDirective() 24 | * @model abstract="true" 25 | * @generated 26 | */ 27 | public interface Directive extends AngularType { 28 | /** 29 | * 30 | * 31 | * @generated 32 | */ 33 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 34 | 35 | /** 36 | * Returns the value of the 'Selector' attribute. 37 | *

38 | * If the meaning of the 'Selector' attribute isn't clear, there really should be more of a 39 | * description here... 40 | *

41 | * 42 | * 43 | * @return the value of the 'Selector' attribute. 44 | * @see #setSelector(String) 45 | * @see org.obeonetwork.dsl.dart.DartPackage#getDirective_Selector() 46 | * @model 47 | * @generated 48 | */ 49 | String getSelector(); 50 | 51 | /** 52 | * Sets the value of the '{@link org.obeonetwork.dsl.dart.Directive#getSelector Selector}' 53 | * attribute. 54 | * 55 | * @param value 56 | * the new value of the 'Selector' attribute. 57 | * @see #getSelector() 58 | * @generated 59 | */ 60 | void setSelector(String value); 61 | 62 | } // Directive 63 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Container.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | import org.eclipse.emf.common.util.EList; 14 | 15 | import org.eclipse.emf.ecore.EObject; 16 | 17 | /** 18 | * A representation of the model object 'Container'. 20 | *

21 | * The following features are supported: 22 | *

    23 | *
  • {@link org.obeonetwork.dsl.dart.Container#getAssets Assets}
  • 24 | *
25 | *

26 | * 27 | * @see org.obeonetwork.dsl.dart.DartPackage#getContainer() 28 | * @model abstract="true" 29 | * @generated 30 | */ 31 | public interface Container extends EObject { 32 | /** 33 | * 34 | * 35 | * @generated 36 | */ 37 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 38 | 39 | /** 40 | * Returns the value of the 'Assets' containment reference list. The list contents are of 41 | * type {@link org.obeonetwork.dsl.dart.Asset}. It is bidirectional and its opposite is ' 42 | * {@link org.obeonetwork.dsl.dart.Asset#getContainer Container}'. 43 | *

44 | * If the meaning of the 'Assets' containment reference list isn't clear, there really should be 45 | * more of a description here... 46 | *

47 | * 48 | * 49 | * @return the value of the 'Assets' containment reference list. 50 | * @see org.obeonetwork.dsl.dart.DartPackage#getContainer_Assets() 51 | * @see org.obeonetwork.dsl.dart.Asset#getContainer 52 | * @model opposite="container" containment="true" 53 | * @generated 54 | */ 55 | EList getAssets(); 56 | 57 | } // Container 58 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/src/org/obeonetwork/dsl/dart/usage/internal/preferences/PreferencesMessages.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.usage.internal.preferences; 12 | 13 | import org.eclipse.osgi.util.NLS; 14 | 15 | /** 16 | * Messages used in usage report preferences. 17 | * 18 | * @author Melanie Bats melanie.bats@obeo.fr 19 | */ 20 | public final class PreferencesMessages extends NLS { 21 | /** 22 | * The bundle name. 23 | */ 24 | private static final String BUNDLE_NAME = "org.obeonetwork.dsl.dart.usage.internal.preferences.messages"; //$NON-NLS-1$ 25 | 26 | // CHECKSTYLE:OFF documentation is _still_ required! 27 | 28 | /** 29 | * Reported values. 30 | */ 31 | public static String Usage_PreferencePage_ReportedValues; 32 | 33 | /** 34 | * Locale. 35 | */ 36 | public static String Usage_PreferencePage_Locale; 37 | 38 | /** 39 | * Operating system. 40 | */ 41 | public static String Usage_PreferencePage_OperatingSystem; 42 | 43 | /** 44 | * Operating system version. 45 | */ 46 | public static String Usage_PreferencePage_OperatingSystemVersion; 47 | 48 | /** 49 | * Product id. 50 | */ 51 | public static String Usage_PreferencePage_ProductId; 52 | 53 | /** 54 | * Product version. 55 | */ 56 | public static String Usage_PreferencePage_ProductVersion; 57 | 58 | /** 59 | * Diagrams. 60 | */ 61 | public static String Usage_PreferencePage_Diagrams; 62 | 63 | /** 64 | * Allow reporting. 65 | */ 66 | public static String Usage_PreferencePage_AllowReporting; 67 | 68 | /** 69 | * Description. 70 | */ 71 | public static String Usage_PreferencePage_Description; 72 | 73 | static { 74 | // initialize resource bundle 75 | NLS.initializeMessages(BUNDLE_NAME, PreferencesMessages.class); 76 | } 77 | 78 | /** 79 | * The constructor. 80 | */ 81 | private PreferencesMessages() { 82 | // prevent instantiation 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/intro/getinvolved.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Welcome to Dart Designer 7 | 8 | 9 | 10 | 11 |
12 |
13 |
14 | 15 |
16 |
17 |
18 | 24 |

How to help?

25 |
26 |
27 |

Reporting bugs

28 |

The best ways to contribute are by finding, reporting bugs and helping us to improve the documentation.

29 |

Hacking Dart Designer

30 |
    31 |
  1. Getting Sirius
  2. 32 |
  3. Forking our main repository do your changes and trigger a pull request
  4. 33 |
  5. Watch our builds on Travis-CI and grab our latest release or nightly build.
  6. 34 |
  7. Building Dart Designer from source
  8. 35 |
36 |
37 |
38 |
39 |
40 | 43 |
44 |
45 |
46 |
47 | 48 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/src/org/obeonetwork/dsl/dart/usage/internal/analytics/UsageStartup.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.usage.internal.analytics; 12 | 13 | import org.eclipse.ui.IStartup; 14 | import org.eclipse.ui.IWindowListener; 15 | import org.eclipse.ui.IWorkbenchWindow; 16 | import org.eclipse.ui.PlatformUI; 17 | 18 | /** 19 | * Activates listener on SIrius editors at startup. 20 | * 21 | * @author Cedric Brun cedric.brun@obeo.fr 22 | * @author Melanie Bats melanie.bats@obeo.fr 23 | */ 24 | public class UsageStartup implements IStartup { 25 | 26 | /** 27 | * The usage window listener. 28 | * 29 | * @author Stephane Begaudeau 30 | */ 31 | private final class UsageWindowListener implements IWindowListener { 32 | @Override 33 | public void windowOpened(IWorkbenchWindow window) { 34 | // do nothing 35 | } 36 | 37 | @Override 38 | public void windowDeactivated(IWorkbenchWindow window) { 39 | // do nothing 40 | } 41 | 42 | @Override 43 | public void windowClosed(IWorkbenchWindow window) { 44 | // do nothing 45 | } 46 | 47 | @Override 48 | public void windowActivated(IWorkbenchWindow window) { 49 | if (usageListener == null && PlatformUI.getWorkbench() != null 50 | && PlatformUI.getWorkbench().getActiveWorkbenchWindow() != null) { 51 | usageListener = new SiriusEditorsListener(); 52 | PlatformUI.getWorkbench().getActiveWorkbenchWindow().getPartService().addPartListener( 53 | usageListener); 54 | } 55 | 56 | } 57 | } 58 | 59 | /** 60 | * Sirius editors listener. 61 | */ 62 | private SiriusEditorsListener usageListener; 63 | 64 | /** 65 | * Called at Eclipse startup. 66 | */ 67 | @Override 68 | public void earlyStartup() { 69 | PlatformUI.getWorkbench().addWindowListener(new UsageWindowListener()); 70 | } 71 | 72 | } 73 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Formatter.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | /** 14 | * A representation of the model object 'Formatter'. 16 | *

17 | * The following features are supported: 18 | *

    19 | *
  • {@link org.obeonetwork.dsl.dart.Formatter#getName Name}
  • 20 | *
21 | *

22 | * 23 | * @see org.obeonetwork.dsl.dart.DartPackage#getFormatter() 24 | * @model 25 | * @generated 26 | */ 27 | public interface Formatter extends org.obeonetwork.dsl.dart.Class, AngularType { 28 | /** 29 | * 30 | * 31 | * @generated 32 | */ 33 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 34 | 35 | /** 36 | * Returns the value of the 'Formatter Name' attribute. 37 | *

38 | * If the meaning of the 'Formatter Name' attribute isn't clear, there really should be more of a 39 | * description here... 40 | *

41 | * 42 | * 43 | * @return the value of the 'Formatter Name' attribute. 44 | * @see #setFormatterName(String) 45 | * @see org.obeonetwork.dsl.dart.DartPackage#getFormatter_FormatterName() 46 | * @model 47 | * @generated 48 | */ 49 | String getFormatterName(); 50 | 51 | /** 52 | * Sets the value of the '{@link org.obeonetwork.dsl.dart.Formatter#getFormatterName 53 | * Formatter Name}' attribute. 54 | * 55 | * @param value 56 | * the new value of the 'Formatter Name' attribute. 57 | * @see #getFormatterName() 58 | * @generated 59 | */ 60 | void setFormatterName(String value); 61 | 62 | } // Formatter 63 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Part.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | /** 14 | * A representation of the model object 'Part'. 15 | *

16 | * The following features are supported: 17 | *

    18 | *
  • {@link org.obeonetwork.dsl.dart.Part#getPartOf Part Of}
  • 19 | *
20 | *

21 | * 22 | * @see org.obeonetwork.dsl.dart.DartPackage#getPart() 23 | * @model abstract="true" 24 | * @generated 25 | */ 26 | public interface Part extends DartResource { 27 | /** 28 | * 29 | * 30 | * @generated 31 | */ 32 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 33 | 34 | /** 35 | * Returns the value of the 'Part Of' reference. It is bidirectional and its opposite is ' 36 | * {@link org.obeonetwork.dsl.dart.Library#getParts Parts}'. 37 | *

38 | * If the meaning of the 'Part Of' reference isn't clear, there really should be more of a 39 | * description here... 40 | *

41 | * 42 | * 43 | * @return the value of the 'Part Of' reference. 44 | * @see #setPartOf(Library) 45 | * @see org.obeonetwork.dsl.dart.DartPackage#getPart_PartOf() 46 | * @see org.obeonetwork.dsl.dart.Library#getParts 47 | * @model opposite="parts" 48 | * @generated 49 | */ 50 | Library getPartOf(); 51 | 52 | /** 53 | * Sets the value of the '{@link org.obeonetwork.dsl.dart.Part#getPartOf Part Of}' reference. 54 | * 55 | * 56 | * @param value 57 | * the new value of the 'Part Of' reference. 58 | * @see #getPartOf() 59 | * @generated 60 | */ 61 | void setPartOf(Library value); 62 | 63 | } // Part 64 | -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 14 | 15 | 16 | 18 | 22 | 24 | 27 | 28 | 29 | 30 | 31 | 34 | 37 | 40 | 41 | 44 | 45 | 48 | 49 | 52 | 53 | 56 | 57 | 60 | 61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /travis-promote.sh: -------------------------------------------------------------------------------- 1 | echo "Build $TRAVIS_JOB_NUMBER" 2 | echo "Git: $TRAVIS_COMMIT [$TRAVIS_BRANCH]" 3 | echo "Java version: $TRAVIS_JDK_VERSION" 4 | CURRENT_TAG=$(git name-rev --name-only --tags HEAD) 5 | if [ $CURRENT_TAG == 'undefined' ] 6 | then 7 | if [ $TRAVIS_PULL_REQUEST == 'false' ] 8 | then 9 | echo "Promoting an untagged build on dartdesigner.github.io/p2/nightly" 10 | cd repositories/org.obeonetwork.dsl.dart.repository/target 11 | git clone https://$GITHUB_TOKEN@github.com/dartdesigner/p2.git -b gh-pages --quiet 12 | if [ -d p2/nightly ] 13 | then 14 | rm -r p2/nightly 15 | echo "An old version of the nightly repository has been found and removed" 16 | fi 17 | echo "Creating the nighly repository" 18 | cp -r repository p2/ 19 | mv p2/repository p2/nightly 20 | echo "Nightly repository created" 21 | ls p2/nightly 22 | cd p2 23 | git config user.email "stephane.begaudeau@gmail.com" 24 | git config user.name "Stéphane Bégaudeau" 25 | git remote rm origin 26 | git remote add origin https://dartdesigner:$GITHUB_TOKEN@github.com/dartdesigner/p2.git 27 | git add -A 28 | git commit -m "Promoting a new nightly build for https://github.com/dartdesigner/Dart-Designer/commit/$TRAVIS_COMMIT [$TRAVIS_BRANCH]" 29 | git push origin gh-pages --quiet &>/dev/null 30 | echo "Build promoted." 31 | fi 32 | else 33 | if [ $TRAVIS_PULL_REQUEST == 'false' ] 34 | then 35 | LAST_TAG=$(git describe --abbrev=0 --tags) 36 | echo "Promoting the release $LAST_TAG on dartdesigner.github.io/p2/releases/$LAST_TAG" 37 | cd repositories/org.obeonetwork.dsl.dart.repository/target 38 | git clone https://$GITHUB_TOKEN@github.com/dartdesigner/p2.git -b gh-pages --quiet 39 | if [ -d p2/releases/$LAST_TAG ] 40 | then 41 | rm -r p2/releases/$LAST_TAG 42 | echo "An old version of the nightly repository has been found and removed" 43 | fi 44 | echo "Creating the nighly repository" 45 | cp -r repository p2/ 46 | mkdir -p p2/releases 47 | mv p2/repository p2/releases/$LAST_TAG 48 | echo "Releases repository created" 49 | cd p2 50 | git config user.email "stephane.begaudeau@gmail.com" 51 | git config user.name "Stéphane Bégaudeau" 52 | git remote rm origin 53 | git remote add origin https://dartdesigner:$GITHUB_TOKEN@github.com/dartdesigner/p2.git 54 | git add -A 55 | git commit -m "Promoting a new nightly build for https://github.com/dartdesigner/Dart-Designer/commit/$TRAVIS_COMMIT [$TRAVIS_BRANCH]" 56 | git push origin gh-pages --quiet &>/dev/null 57 | echo "Build promoted." 58 | fi 59 | fi -------------------------------------------------------------------------------- /packaging/org.obeonetwork.dsl.dart.branding/intro/gettingstarted.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Welcome to Dart Designer 7 | 8 | 9 | 10 | 11 |
12 |
13 |
14 | 15 |
16 | 17 |
18 |
19 | 25 |

Getting started

26 |
27 | 28 | 41 | 42 |
43 |

Documentation

44 | 47 |
48 |
49 |
50 |
51 | 54 |
55 |
56 |
57 |
58 | 59 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Module.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | import org.eclipse.emf.common.util.EList; 14 | 15 | /** 16 | * A representation of the model object 'Module'. 18 | *

19 | * The following features are supported: 20 | *

    21 | *
  • {@link org.obeonetwork.dsl.dart.Module#getTypes Types}
  • 22 | *
  • {@link org.obeonetwork.dsl.dart.Module#getRoutes Routes}
  • 23 | *
24 | *

25 | * 26 | * @see org.obeonetwork.dsl.dart.DartPackage#getModule() 27 | * @model 28 | * @generated 29 | */ 30 | public interface Module extends Part { 31 | /** 32 | * 33 | * 34 | * @generated 35 | */ 36 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 37 | 38 | /** 39 | * Returns the value of the 'Types' reference list. The list contents are of type 40 | * {@link org.obeonetwork.dsl.dart.AngularType}. 41 | *

42 | * If the meaning of the 'Types' containment reference isn't clear, there really should be more 43 | * of a description here... 44 | *

45 | * 46 | * 47 | * @return the value of the 'Types' reference list. 48 | * @see org.obeonetwork.dsl.dart.DartPackage#getModule_Types() 49 | * @model 50 | * @generated 51 | */ 52 | EList getTypes(); 53 | 54 | /** 55 | * Returns the value of the 'Routes' containment reference list. The list contents are of 56 | * type {@link org.obeonetwork.dsl.dart.Route}. 57 | *

58 | * If the meaning of the 'Routes' containment reference list isn't clear, there really should be 59 | * more of a description here... 60 | *

61 | * 62 | * 63 | * @return the value of the 'Routes' containment reference list. 64 | * @see org.obeonetwork.dsl.dart.DartPackage#getModule_Routes() 65 | * @model containment="true" 66 | * @generated 67 | */ 68 | EList getRoutes(); 69 | 70 | } // Module 71 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.design/src/org/obeonetwork/dsl/dart/design/internal/DartDesignerPlugin.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.design.internal; 12 | 13 | import java.util.HashSet; 14 | import java.util.Set; 15 | 16 | import org.eclipse.sirius.business.api.componentization.ViewpointRegistry; 17 | import org.eclipse.sirius.viewpoint.description.Viewpoint; 18 | import org.eclipse.ui.plugin.AbstractUIPlugin; 19 | import org.osgi.framework.BundleContext; 20 | 21 | /** 22 | * The activator class controls the plug-in life cycle. 23 | * 24 | * @author Stephane Begaudeau 25 | */ 26 | public class DartDesignerPlugin extends AbstractUIPlugin { 27 | /** 28 | * The plug-in ID. 29 | */ 30 | public static final String PLUGIN_ID = "org.obeonetwork.dsl.dart.design"; //$NON-NLS-1$ 31 | 32 | /** 33 | * The shared instance. 34 | */ 35 | private static DartDesignerPlugin plugin; 36 | 37 | /** 38 | * The sets of viewpoints to use. 39 | */ 40 | private static Set viewpoints; 41 | 42 | /** 43 | * The constructor. 44 | */ 45 | public DartDesignerPlugin() { 46 | // do nothing 47 | } 48 | 49 | /** 50 | * {@inheritDoc} 51 | * 52 | * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) 53 | */ 54 | @Override 55 | public void start(BundleContext context) throws Exception { 56 | super.start(context); 57 | plugin = this; 58 | viewpoints = new HashSet(); 59 | viewpoints.addAll(ViewpointRegistry.getInstance().registerFromPlugin( 60 | PLUGIN_ID + "/description/dart.odesign")); //$NON-NLS-1$ 61 | } 62 | 63 | /** 64 | * {@inheritDoc} 65 | * 66 | * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext) 67 | */ 68 | @Override 69 | public void stop(BundleContext context) throws Exception { 70 | plugin = null; 71 | if (viewpoints != null) { 72 | for (final Viewpoint viewpoint : viewpoints) { 73 | ViewpointRegistry.getInstance().disposeFromPlugin(viewpoint); 74 | } 75 | viewpoints.clear(); 76 | viewpoints = null; 77 | } 78 | super.stop(context); 79 | } 80 | 81 | /** 82 | * Returns the shared instance. 83 | * 84 | * @return the shared instance. 85 | */ 86 | public static DartDesignerPlugin getDefault() { 87 | return plugin; 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart.usage/src/org/obeonetwork/dsl/dart/usage/internal/UsageActivator.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | *******************************************************************************/ 11 | package org.obeonetwork.dsl.dart.usage.internal; 12 | 13 | import org.eclipse.core.runtime.Plugin; 14 | import org.eclipse.core.runtime.Status; 15 | import org.osgi.framework.BundleActivator; 16 | import org.osgi.framework.BundleContext; 17 | 18 | /** 19 | * Activator. 20 | * 21 | * @author Cedric Brun cedric.brun@obeo.fr 22 | * @author Melanie Bats melanie.bats@obeo.fr 23 | */ 24 | public class UsageActivator extends Plugin implements BundleActivator { 25 | /** 26 | * The plug-in ID. 27 | */ 28 | public static final String PLUGIN_ID = "org.obeonetwork.dsl.dart.usage"; //$NON-NLS-1$ 29 | 30 | /** 31 | * The bundle context. 32 | */ 33 | private static BundleContext context; 34 | 35 | /** 36 | * The shared instance. 37 | */ 38 | private static UsageActivator plugin; 39 | 40 | /** 41 | * Returns the context of the plugin. 42 | * 43 | * @return The context of the plugin. 44 | */ 45 | static BundleContext getContext() { 46 | return context; 47 | } 48 | 49 | /** 50 | * {@inheritDoc} 51 | * 52 | * @see org.eclipse.core.runtime.Plugin#start(org.osgi.framework.BundleContext) 53 | */ 54 | @Override 55 | public void start(BundleContext bundleContext) throws Exception { 56 | UsageActivator.context = bundleContext; 57 | plugin = this; 58 | } 59 | 60 | /** 61 | * {@inheritDoc} 62 | * 63 | * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) 64 | */ 65 | @Override 66 | public void stop(BundleContext bundleContext) throws Exception { 67 | UsageActivator.context = null; 68 | } 69 | 70 | /** 71 | * Returns the shared instance. 72 | * 73 | * @return the shared instance 74 | */ 75 | public static UsageActivator getDefault() { 76 | return plugin; 77 | } 78 | 79 | /** 80 | * A helper to log plugin errors. 81 | * 82 | * @param severity 83 | * the error severity. 84 | * @param message 85 | * the error message. 86 | * @param exception 87 | * the error exception. 88 | */ 89 | public static void log(int severity, String message, Throwable exception) { 90 | getDefault().getLog().log(new Status(severity, PLUGIN_ID, message, exception)); 91 | } 92 | } 93 | -------------------------------------------------------------------------------- /bundles/org.obeonetwork.dsl.dart/src-gen/org/obeonetwork/dsl/dart/Classifier.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014 Obeo. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Obeo - initial API and implementation 10 | */ 11 | package org.obeonetwork.dsl.dart; 12 | 13 | import org.eclipse.emf.common.util.EList; 14 | 15 | /** 16 | * A representation of the model object 'Classifier'. 18 | *

19 | * The following features are supported: 20 | *

    21 | *
  • {@link org.obeonetwork.dsl.dart.Classifier#getFields Fields}
  • 22 | *
  • {@link org.obeonetwork.dsl.dart.Classifier#getMetadata Metadata}
  • 23 | *
24 | *

25 | * 26 | * @see org.obeonetwork.dsl.dart.DartPackage#getClassifier() 27 | * @model abstract="true" 28 | * @generated 29 | */ 30 | public interface Classifier extends Part { 31 | /** 32 | * 33 | * 34 | * @generated 35 | */ 36 | String copyright = " Copyright (c) 2014 Obeo.\r\n All rights reserved. This program and the accompanying materials\r\n are made available under the terms of the Eclipse Public License v1.0\r\n which accompanies this distribution, and is available at\r\n http://www.eclipse.org/legal/epl-v10.html\r\n \r\n Contributors:\r\n Obeo - initial API and implementation"; 37 | 38 | /** 39 | * Returns the value of the 'Fields' containment reference list. The list contents are of 40 | * type {@link org.obeonetwork.dsl.dart.Variable}. 41 | *

42 | * If the meaning of the 'Fields' containment reference list isn't clear, there really should be 43 | * more of a description here... 44 | *

45 | * 46 | * 47 | * @return the value of the 'Fields' containment reference list. 48 | * @see org.obeonetwork.dsl.dart.DartPackage#getClassifier_Fields() 49 | * @model containment="true" 50 | * @generated 51 | */ 52 | EList getFields(); 53 | 54 | /** 55 | * Returns the value of the 'Metadata' reference list. The list contents are of type 56 | * {@link org.obeonetwork.dsl.dart.Metadata}. 57 | *

58 | * If the meaning of the 'Metadata' reference list isn't clear, there really should be more of a 59 | * description here... 60 | *

61 | * 62 | * 63 | * @return the value of the 'Metadata' reference list. 64 | * @see org.obeonetwork.dsl.dart.DartPackage#getClassifier_Metadata() 65 | * @model 66 | * @generated 67 | */ 68 | EList getMetadata(); 69 | 70 | } // Classifier 71 | --------------------------------------------------------------------------------