[jbosstools-commits] JBoss Tools SVN: r39870 - trunk/cdi/tests/org.jboss.tools.cdi.bot.test/src/org/jboss/tools/cdi/bot/test/uiutils/wizards.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Wed Mar 28 08:16:09 EDT 2012


Author: jjankovi
Date: 2012-03-28 08:16:08 -0400 (Wed, 28 Mar 2012)
New Revision: 39870

Added:
   trunk/cdi/tests/org.jboss.tools.cdi.bot.test/src/org/jboss/tools/cdi/bot/test/uiutils/wizards/AssignableBeansDialog.java
Log:
AssignableBeanDialog created

Added: trunk/cdi/tests/org.jboss.tools.cdi.bot.test/src/org/jboss/tools/cdi/bot/test/uiutils/wizards/AssignableBeansDialog.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.bot.test/src/org/jboss/tools/cdi/bot/test/uiutils/wizards/AssignableBeansDialog.java	                        (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.bot.test/src/org/jboss/tools/cdi/bot/test/uiutils/wizards/AssignableBeansDialog.java	2012-03-28 12:16:08 UTC (rev 39870)
@@ -0,0 +1,63 @@
+/*******************************************************************************
+ * Copyright (c) 2010-2012 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+
+package org.jboss.tools.cdi.bot.test.uiutils.wizards;
+
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell;
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotTable;
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotTree;
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
+
+public class AssignableBeansDialog {
+
+	private SWTBotShell shell = null; 
+	
+	public AssignableBeansDialog(SWTBotShell shell) {
+		this.shell = shell;
+		showAmbiguousBeans().showUnavailableBeans();
+	}
+	
+	public SWTBotTable getAllBeans() {
+		return shell.bot().table();
+	}
+	
+	public AssignableBeansDialog hideUnavailableBeans() {
+		getTreeItem("Unavailable Beans").uncheck();
+		return this;
+	}
+	
+	public AssignableBeansDialog showUnavailableBeans() {
+		getTreeItem("Unavailable Beans").check();
+		return this;
+	}
+	
+	public AssignableBeansDialog hideAmbiguousBeans() {
+		getTreeItem("Eliminated ambiguous").uncheck();
+		return this;
+	}
+	
+	public AssignableBeansDialog showAmbiguousBeans() {
+		getTreeItem("Eliminated ambiguous").check();
+		return this;
+	}
+	
+	private SWTBotTree getAllOptions() {
+		return shell.bot().tree();
+	}
+	
+	protected SWTBotTreeItem getTreeItem(String treeItemText) {
+		for (SWTBotTreeItem ti : getAllOptions().getAllItems()) {
+			if (ti.getText().contains(treeItemText)) return ti;
+		}
+		return null;
+	}
+	
+}



More information about the jbosstools-commits mailing list