Author: ljelinko
Date: 2012-02-07 10:59:06 -0500 (Tue, 07 Feb 2012)
New Revision: 38475
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/wizards/SWTBotImportWizard.java
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/wizards/SWTBotNewObjectWizard.java
Log:
overriden bot() method
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/wizards/SWTBotImportWizard.java
===================================================================
---
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/wizards/SWTBotImportWizard.java 2012-02-07
15:58:30 UTC (rev 38474)
+++
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/wizards/SWTBotImportWizard.java 2012-02-07
15:59:06 UTC (rev 38475)
@@ -3,6 +3,7 @@
import java.util.Arrays;
import java.util.List;
+import org.eclipse.swtbot.swt.finder.SWTBot;
import org.jboss.tools.ui.bot.ext.SWTBotFactory;
import org.jboss.tools.ui.bot.ext.gen.IImport;
@@ -37,4 +38,9 @@
}
};
}
+
+ @Override
+ public SWTBot bot() {
+ return SWTBotFactory.getBot().activeShell().bot();
+ }
}
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/wizards/SWTBotNewObjectWizard.java
===================================================================
---
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/wizards/SWTBotNewObjectWizard.java 2012-02-07
15:58:30 UTC (rev 38474)
+++
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/wizards/SWTBotNewObjectWizard.java 2012-02-07
15:59:06 UTC (rev 38475)
@@ -3,6 +3,7 @@
import java.util.Arrays;
import java.util.List;
+import org.eclipse.swtbot.swt.finder.SWTBot;
import org.jboss.tools.ui.bot.ext.SWTBotFactory;
import org.jboss.tools.ui.bot.ext.gen.INewObject;
@@ -36,4 +37,9 @@
}
};
}
+
+ @Override
+ public SWTBot bot() {
+ return SWTBotFactory.getBot().activeShell().bot();
+ }
}
Show replies by date