[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[stp-commits] r3301 - in org.eclipse.stp.sca/trunk: org.eclipse.stp.sca.common/src/org/eclipse/stp/sca/common/internal/wizards org.eclipse.stp.sca.common.java/src/org/eclipse/stp/sca/common/java/wizards
|
- From: genie@xxxxxxxxxxx
- Date: Thu, 27 Aug 2009 04:46:04 -0400 (EDT)
- Delivered-to: stp-commits@eclipse.org
Author: vzurczak
Date: 2009-08-27 04:46:03 -0400 (Thu, 27 Aug 2009)
New Revision: 3301
Modified:
org.eclipse.stp.sca/trunk/org.eclipse.stp.sca.common.java/src/org/eclipse/stp/sca/common/java/wizards/ScaJavaProjectWizard.java
org.eclipse.stp.sca/trunk/org.eclipse.stp.sca.common/src/org/eclipse/stp/sca/common/internal/wizards/ScaProjectWizard.java
Log:
Fixed nature ID in the wizards.
Modified: org.eclipse.stp.sca/trunk/org.eclipse.stp.sca.common/src/org/eclipse/stp/sca/common/internal/wizards/ScaProjectWizard.java
===================================================================
--- org.eclipse.stp.sca/trunk/org.eclipse.stp.sca.common/src/org/eclipse/stp/sca/common/internal/wizards/ScaProjectWizard.java 2009-08-26 12:17:54 UTC (rev 3300)
+++ org.eclipse.stp.sca/trunk/org.eclipse.stp.sca.common/src/org/eclipse/stp/sca/common/internal/wizards/ScaProjectWizard.java 2009-08-27 08:46:03 UTC (rev 3301)
@@ -170,7 +170,7 @@
String[] newNatures = new String[natures.length + 1];
System.arraycopy(natures, 0, newNatures, 0, natures.length);
- newNatures[natures.length] = "org.eclipse.stp.sca.common.internal.jdt.scaNature"; //$NON-NLS-1$
+ newNatures[natures.length] = "org.eclipse.stp.sca.common.scaNature"; //$NON-NLS-1$
description.setNatureIds(newNatures);
scaProject.setDescription(description, monitor);
Modified: org.eclipse.stp.sca/trunk/org.eclipse.stp.sca.common.java/src/org/eclipse/stp/sca/common/java/wizards/ScaJavaProjectWizard.java
===================================================================
--- org.eclipse.stp.sca/trunk/org.eclipse.stp.sca.common.java/src/org/eclipse/stp/sca/common/java/wizards/ScaJavaProjectWizard.java 2009-08-26 12:17:54 UTC (rev 3300)
+++ org.eclipse.stp.sca/trunk/org.eclipse.stp.sca.common.java/src/org/eclipse/stp/sca/common/java/wizards/ScaJavaProjectWizard.java 2009-08-27 08:46:03 UTC (rev 3301)
@@ -106,7 +106,7 @@
String[] natures = description.getNatureIds();
String[] newNatures = new String[natures.length + 1];
System.arraycopy(natures, 0, newNatures, 0, natures.length);
- newNatures[natures.length] = "org.eclipse.stp.sca.common.internal.jdt.scaNature"; //$NON-NLS-1$
+ newNatures[natures.length] = "org.eclipse.stp.sca.common.scaNature"; //$NON-NLS-1$
description.setNatureIds( newNatures );
project.setDescription( description, monitor );