plugin.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?eclipse version="3.4"?>
  3. <plugin>
  4. <extension point="org.eclipse.ui.newWizards">
  5. <category
  6. id="org.yakindu.sct.ui.Examples"
  7. name="YAKINDU SCT Examples"
  8. parentCategory="org.eclipse.ui.Examples">
  9. </category>
  10. </extension>
  11. <extension point="org.eclipse.ui.newWizards">
  12. <wizard
  13. category="org.eclipse.ui.Examples/org.yakindu.sct.ui.Examples"
  14. class="org.eclipse.emf.common.ui.wizard.ExampleInstallerWizard"
  15. finalPerspective="org.yakindu.sct.ui.ModelingPerspective"
  16. icon="icons/logo-16.png"
  17. id="org.yakindu.sct.examples.lightswitch"
  18. name="Light Switch Example"
  19. project="true">
  20. <description>YAKINDU Statechart Tools example of a light switch from the tutorial section</description>
  21. </wizard>
  22. <wizard
  23. category="org.eclipse.ui.Examples/org.yakindu.sct.ui.Examples"
  24. class="org.eclipse.emf.common.ui.wizard.ExampleInstallerWizard"
  25. finalPerspective="org.yakindu.sct.ui.ModelingPerspective"
  26. icon="icons/logo-16.png"
  27. id="org.yakindu.sct.examples.digitalwatch"
  28. name="Digital Watch Example"
  29. project="true">
  30. <description>YAKINDU Statechart Tools example of a digital watch including hierarchies parallel regions, etc...</description>
  31. </wizard>
  32. <wizard
  33. category="org.eclipse.ui.Examples/org.yakindu.sct.ui.Examples"
  34. class="org.eclipse.emf.common.ui.wizard.ExampleInstallerWizard"
  35. finalPerspective="org.yakindu.sct.ui.ModelingPerspective"
  36. icon="icons/logo-16.png"
  37. id="org.yakindu.sct.examples.trafficlight"
  38. name="Traffic Light Example"
  39. project="true">
  40. <description>YAKINDU Statechart Tools example of a traffic light with java generated source code</description>
  41. </wizard>
  42. </extension>
  43. <!-- org.yakindu.sct.example.lightswitch -->
  44. <extension point="org.eclipse.emf.common.ui.examples">
  45. <example
  46. id="light.switch"
  47. pageImage="icons/logo-16.png"
  48. wizardID="org.yakindu.sct.examples.lightswitch">
  49. <projectDescriptor name="light_switch" contentURI="contents/light_switch.zip" description="Light switch example from the tutorial section"/>
  50. </example>
  51. </extension>
  52. <extension point="org.eclipse.emf.common.ui.examples">
  53. <example
  54. id="traffic.light"
  55. pageImage="icons/logo-16.png"
  56. wizardID="org.yakindu.sct.examples.trafficlight">
  57. <projectDescriptor name="traffic_light" contentURI="contents/traffic_light.zip" description="Traffic light example with java generated source code"/>
  58. </example>
  59. </extension>
  60. <extension point="org.eclipse.emf.common.ui.examples">
  61. <example
  62. id="digital.watch"
  63. pageImage="icons/logo-16.png"
  64. wizardID="org.yakindu.sct.examples.digitalwatch">
  65. <projectDescriptor name="digital_watch" contentURI="contents/digital_watch.zip" description="Digital watch hierarchies parallel regions, etc..."/>
  66. </example>
  67. </extension>
  68. </plugin>