[jbosstools-commits] JBoss Tools SVN: r42137 - trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Thu Jun 21 05:04:16 EDT 2012


Author: jpeterka
Date: 2012-06-21 05:04:16 -0400 (Thu, 21 Jun 2012)
New Revision: 42137

Added:
   trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RESTFullExplorer.java
   trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RunOnServerDialog.java
Log:
Dummy classes added to avoid compilation problem, real classes to be added  later

Added: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RESTFullExplorer.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RESTFullExplorer.java	                        (rev 0)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RESTFullExplorer.java	2012-06-21 09:04:16 UTC (rev 42137)
@@ -0,0 +1,46 @@
+package org.jboss.tools.ws.ui.bot.test.uiutils;
+
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
+
+public class RESTFullExplorer {
+
+	public RESTFullExplorer(String projectName) {
+		// TODO Auto-generated constructor stub
+	}
+
+	public Object getRestServiceName(SWTBotTreeItem restService) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	public String getPathForRestFulService(SWTBotTreeItem restService) {
+		// TODO Auto-generated method stub
+		return "";
+	}
+
+	public Object getConsumesInfo(SWTBotTreeItem restService) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	public Object getProducesInfo(SWTBotTreeItem restService) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	public SWTBotTreeItem[] getAllRestServices() {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	public Object restService(String webService) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	public RunOnServerDialog runOnServer(Object restService) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+}


Property changes on: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RESTFullExplorer.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain

Added: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RunOnServerDialog.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RunOnServerDialog.java	                        (rev 0)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RunOnServerDialog.java	2012-06-21 09:04:16 UTC (rev 42137)
@@ -0,0 +1,22 @@
+package org.jboss.tools.ws.ui.bot.test.uiutils;
+
+public class RunOnServerDialog {
+
+	public class Server1 {
+		public class Server2 {
+			public void finish() {
+			}
+		}
+
+		public Server2 selectServer(String str) {
+			return new Server2();
+
+		}
+
+	}
+
+	public Server1 chooseExistingServer() {
+		return new Server1();
+	}
+
+}


Property changes on: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RunOnServerDialog.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain



More information about the jbosstools-commits mailing list