Author: dgolovin
Date: 2007-09-20 15:44:42 -0400 (Thu, 20 Sep 2007)
New Revision: 3737
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/plugin.xml
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamGenerateEnitiesWizard.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-906
Fix Test NG problem for EAR deployment
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/plugin.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/plugin.xml 2007-09-20 19:44:37 UTC (rev
3736)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/plugin.xml 2007-09-20 19:44:42 UTC (rev
3737)
@@ -122,6 +122,21 @@
relative="org.eclipse.ui.views.TaskList">
</view>
</perspectiveExtension>
+ <perspectiveExtension
+ targetID="org.jboss.tools.seam.ui.SeamPerspective">
+ <newWizardShortcut
+ id="org.jboss.tools.seam.ui.wizards.SeamProjectWizard">
+ </newWizardShortcut>
+ <newWizardShortcut
+ id="org.jboss.tools.seam.ui.wizard.SeamActionWizard">
+ </newWizardShortcut>
+ <newWizardShortcut
+ id="org.jboss.tools.seam.ui.wizard.SeamFormWizard">
+ </newWizardShortcut>
+ <newWizardShortcut
+ id="org.jboss.tools.seam.ui.SeamGenerateEntitiesWizard">
+ </newWizardShortcut>
+ </perspectiveExtension>
</extension>
<extension point="org.eclipse.ui.navigator.viewer">
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamGenerateEnitiesWizard.java
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamGenerateEnitiesWizard.java 2007-09-20
19:44:37 UTC (rev 3736)
+++
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamGenerateEnitiesWizard.java 2007-09-20
19:44:42 UTC (rev 3737)
@@ -23,7 +23,6 @@
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Status;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunchConfigurationType;
@@ -37,10 +36,10 @@
import org.hibernate.eclipse.console.model.impl.ExporterDefinition;
import org.hibernate.eclipse.launch.HibernateLaunchConstants;
import org.jboss.tools.seam.core.SeamCorePlugin;
-import org.jboss.tools.seam.core.project.facet.SeamFacetPreference;
import org.jboss.tools.seam.core.project.facet.SeamRuntime;
import org.jboss.tools.seam.core.project.facet.SeamRuntimeManager;
import org.jboss.tools.seam.internal.core.project.facet.ISeamFacetDataModelProperties;
+import org.jboss.tools.seam.ui.SeamGuiPlugin;
import org.jboss.tools.seam.ui.SeamUIMessages;
/**
@@ -116,7 +115,7 @@
launchManager.addLaunch(wc.launch(ILaunchManager.RUN_MODE, monitor));
} catch (CoreException e) {
- SeamCorePlugin.getPluginLog().logError(e);
+ SeamGuiPlugin.getPluginLog().logError(e);
}
return Status.OK_STATUS;
}