Update of /cvsroot/hibernate/HibernateExt/org.hibernate.eclipse.console
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16397
Modified Files:
plugin.xml
Log Message:
HBX-595 Add "New XML mapping file" option/wizard
Index: plugin.xml
===================================================================
RCS file: /cvsroot/hibernate/HibernateExt/org.hibernate.eclipse.console/plugin.xml,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- plugin.xml 2 Dec 2005 22:48:23 -0000 1.35
+++ plugin.xml 15 Feb 2006 17:07:27 -0000 1.36
@@ -60,6 +60,12 @@
id="hibernatewizards"/>
<wizard
category="hibernatewizards"
+ class="org.hibernate.eclipse.console.wizards.NewHibernateMappingFileWizard"
+ icon="icons/hibernate_small_icon.gif"
+ id="org.hibernate.eclipse.console.wizards.NewHibernateMappingFileWizard"
+ name="Hibernate XML Mapping file (hbm.xml)"/>
+ <wizard
+ category="hibernatewizards"
class="org.hibernate.eclipse.console.wizards.NewConfigurationWizard"
icon="icons/hibernate_small_icon.gif"
id="org.hibernate.eclipse.console.wizards.NewConfigurationWizard"
@@ -67,15 +73,6 @@
<description>Create a new hibernate.cfg.xml file (Helping with the initial JDBC setup etc.)</description>
</wizard>
<wizard
- canFinishEarly="false"
- category="hibernatewizards"
- class="org.hibernate.eclipse.console.wizards.NewReverseEngineeringFileWizard"
- icon="icons/hibernate_small_icon.gif"
- id="org.hibernate.eclipse.console.wizards.NewReverseEngineeringFileWizard"
- name="Hibernate Reverse Engineering File (reveng.xml)">
- <description>Create a new hibernate.reveng.xml (Helping with the initial table and type filtering)</description>
- </wizard>
- <wizard
category="hibernatewizards"
class="org.hibernate.eclipse.console.wizards.ConsoleConfigurationCreationWizard"
descriptionImage="icons/hibernate_small_icon.gif"
@@ -84,9 +81,18 @@
id="org.hibernate.eclipse.console.wizards.ConsoleConfigurationCreationWizard"
name="Hibernate Console Configuration"
preferredPerspectives="org.hibernate.eclipse.console.HibernateConsolePerspective"
- project="false">
+ project="true">
<description>Creates a new Hibernate Console Configuration</description>
</wizard>
+ <wizard
+ canFinishEarly="false"
+ category="hibernatewizards"
+ class="org.hibernate.eclipse.console.wizards.NewReverseEngineeringFileWizard"
+ icon="icons/hibernate_small_icon.gif"
+ id="org.hibernate.eclipse.console.wizards.NewReverseEngineeringFileWizard"
+ name="Hibernate Reverse Engineering File (reveng.xml)">
+ <description>Create a new hibernate.reveng.xml (Helping with the initial table and type filtering)</description>
+ </wizard>
</extension>
<extension
point="org.eclipse.ui.popupMenus">
@@ -267,9 +273,10 @@
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension targetID="org.hibernate.eclipse.console.HibernateConsolePerspective">
+ <newWizardShortcut id="org.hibernate.eclipse.console.wizards.NewHibernateMappingFileWizard"/>
<newWizardShortcut id="org.hibernate.eclipse.console.wizards.NewConfigurationWizard"/>
<newWizardShortcut id="org.hibernate.eclipse.console.wizards.ConsoleConfigurationCreationWizard"/>
- <newWizardShortcut id="org.hibernate.eclipse.console.newWizardShortcut3"/>
+ <newWizardShortcut id="org.hibernate.eclipse.console.wizards.NewReverseEngineeringFileWizard"/>
<viewShortcut id="org.hibernate.eclipse.console.views.KnownConfigurationsView"/>
<viewShortcut id="org.hibernate.eclipse.graph.EntityGraphView"/>
<viewShortcut id="org.hibernate.eclipse.console.views.QueryPageTabView"/>
|