[jbosstools-commits] JBoss Tools SVN: r6751 - in trunk/as/plugins/org.jboss.ide.eclipse.as.ui: jbossui/org/jboss/ide/eclipse/as/ui/wizards and 1 other directory.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Thu Mar 6 18:43:34 EST 2008


Author: rob.stryker at jboss.com
Date: 2008-03-06 18:43:34 -0500 (Thu, 06 Mar 2008)
New Revision: 6751

Added:
   trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBInitialSelectionProvider.java
Removed:
   trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/initialSelectionProvider.java
Modified:
   trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.xml
Log:
Class started with a lowercase (bad) and used 4.0 as the default (also bad)

Copied: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBInitialSelectionProvider.java (from rev 6560, trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/initialSelectionProvider.java)
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBInitialSelectionProvider.java	                        (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBInitialSelectionProvider.java	2008-03-06 23:43:34 UTC (rev 6751)
@@ -0,0 +1,50 @@
+/**
+ * JBoss, a Division of Red Hat
+ * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+* This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.ide.eclipse.as.ui.wizards;
+
+import org.eclipse.wst.server.core.IServerType;
+import org.eclipse.wst.server.ui.internal.viewers.InitialSelectionProvider;
+
+/**
+ * 
+ * @author Rob Stryker <rob.stryker at redhat.com>
+ *
+ */
+public class JBInitialSelectionProvider extends InitialSelectionProvider {
+
+	public JBInitialSelectionProvider() {
+	}
+	
+	public IServerType getInitialSelection(IServerType[] serverTypes) {
+		if (serverTypes == null)
+			return null;
+		
+		int size = serverTypes.length;
+		for (int i = 0; i < size; i++) {
+			if( serverTypes[i].getId().equals("org.jboss.ide.eclipse.as.42"))
+				return serverTypes[i];
+		}
+		return serverTypes[0];
+	}
+
+
+}

Deleted: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/initialSelectionProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/initialSelectionProvider.java	2008-03-06 23:20:28 UTC (rev 6750)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/initialSelectionProvider.java	2008-03-06 23:43:34 UTC (rev 6751)
@@ -1,50 +0,0 @@
-/**
- * JBoss, a Division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
-* This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.ide.eclipse.as.ui.wizards;
-
-import org.eclipse.wst.server.core.IServerType;
-import org.eclipse.wst.server.ui.internal.viewers.InitialSelectionProvider;
-
-/**
- * 
- * @author Rob Stryker <rob.stryker at redhat.com>
- *
- */
-public class initialSelectionProvider extends InitialSelectionProvider {
-
-	public initialSelectionProvider() {
-	}
-	
-	public IServerType getInitialSelection(IServerType[] serverTypes) {
-		if (serverTypes == null)
-			return null;
-		
-		int size = serverTypes.length;
-		for (int i = 0; i < size; i++) {
-			if( serverTypes[i].getId().equals("org.jboss.ide.eclipse.as.40"))
-				return serverTypes[i];
-		}
-		return serverTypes[0];
-	}
-
-
-}

Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.xml	2008-03-06 23:20:28 UTC (rev 6750)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.xml	2008-03-06 23:43:34 UTC (rev 6751)
@@ -209,7 +209,7 @@
       <extension
             point="org.eclipse.wst.server.ui.initialSelectionProvider">
          <selectionProvider
-               class="org.jboss.ide.eclipse.as.ui.wizards.initialSelectionProvider"
+               class="org.jboss.ide.eclipse.as.ui.wizards.JBInitialSelectionProvider"
                id="org.jboss.ide.eclipse.as.ui.jboss40SelectionProvider"/>
       </extension>
       <extension




More information about the jbosstools-commits mailing list