Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancesco Guidieri2013-07-04 14:30:36 +0000
committerFrancesco Guidieri2013-07-04 14:30:36 +0000
commit6eff5a52e3078e23bb6cc982adb9f6120110f679 (patch)
treece9d26c1f0afde3c5a261661e053a36ffef81f22 /plugins/org.eclipse.emf.parsley.wizards/plugin.xml
downloadorg.eclipse.emf-parsley-6eff5a52e3078e23bb6cc982adb9f6120110f679.tar.gz
org.eclipse.emf-parsley-6eff5a52e3078e23bb6cc982adb9f6120110f679.tar.xz
org.eclipse.emf-parsley-6eff5a52e3078e23bb6cc982adb9f6120110f679.zip
Initial contribution
Diffstat (limited to 'plugins/org.eclipse.emf.parsley.wizards/plugin.xml')
-rw-r--r--plugins/org.eclipse.emf.parsley.wizards/plugin.xml45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.parsley.wizards/plugin.xml b/plugins/org.eclipse.emf.parsley.wizards/plugin.xml
new file mode 100644
index 000000000..30d8a4341
--- /dev/null
+++ b/plugins/org.eclipse.emf.parsley.wizards/plugin.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<plugin>
+ <extension
+ point="org.eclipse.ui.newWizards">
+ <category
+ id="org.eclipse.emf.parsley.wizards"
+ name="Emf Parsley">
+ </category>
+ </extension>
+ <extension
+ point="org.eclipse.ui.newWizards">
+ <wizard
+ category="org.eclipse.emf.parsley.wizards"
+ class="org.eclipse.emf.parsley.wizards.NewEmfParsleyProjectWizard"
+ icon="icons/sample.gif"
+ id="org.eclipse.emf.parsley.wizards.NewEmfComponentsProject"
+ name="Emf Parsley Project"
+ project="true">
+ </wizard>
+ </extension>
+ <extension
+ point="org.eclipse.pde.ui.pluginContent">
+ <wizard
+ class="org.eclipse.emf.parsley.wizards.TablePluginContentWizard"
+ icon="icons/component.jpg"
+ id="org.eclipse.emf.parsley.masterdetail.tablewizard"
+ java="true"
+ name="Table Master Detail Wizard"
+ pureOSGi="false"
+ rcp="false"
+ requiresActivator="false"
+ ui-content="true">
+ </wizard>
+ </extension>
+ <extension
+ point="org.eclipse.pde.ui.templates">
+ <template
+ class="org.eclipse.emf.parsley.wizards.TableViewTemplateSection"
+ contributingId="org.eclipse.ui.views"
+ icon="icons/component.jpg"
+ id="org.eclipse.emf.parsley.masterdetail.tabletemplate"
+ name="Table Master Detail View"/>
+ </extension>
+</plugin>

Back to the top