Author: yzhishko
Date: 2009-10-02 07:48:02 -0400 (Fri, 02 Oct 2009)
New Revision: 17870
Removed:
workspace/yzhishko/org.jboss.tools.jsf.ui.bot.test/bin/
workspace/yzhishko/org.jboss.tools.seam.ui.bot.test/bin/
workspace/yzhishko/org.jboss.tools.smoke.ui.bot.test/bin/
workspace/yzhishko/org.jboss.tools.ui.bot.test/bin/
workspace/yzhishko/org.jboss.tools.ui.bot.test/src/org/jboss/tools/ui/bot/test/SWTBotMultiPageEditor.java
workspace/yzhishko/org.jboss.tools.ui.runtime.bot.test/bin/
workspace/yzhishko/org.jboss.tools.vpe.ui.bot.test/bin/
Log:
Clean old file
Deleted:
workspace/yzhishko/org.jboss.tools.ui.bot.test/src/org/jboss/tools/ui/bot/test/SWTBotMultiPageEditor.java
===================================================================
---
workspace/yzhishko/org.jboss.tools.ui.bot.test/src/org/jboss/tools/ui/bot/test/SWTBotMultiPageEditor.java 2009-10-02
11:43:10 UTC (rev 17869)
+++
workspace/yzhishko/org.jboss.tools.ui.bot.test/src/org/jboss/tools/ui/bot/test/SWTBotMultiPageEditor.java 2009-10-02
11:48:02 UTC (rev 17870)
@@ -1,54 +0,0 @@
-package org.jboss.tools.ui.bot.test;
-
-import org.eclipse.swtbot.eclipse.finder.SWTWorkbenchBot;
-import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotEditor;
-import org.eclipse.ui.IEditorReference;
-import org.hamcrest.SelfDescribing;
-import org.jboss.tools.jst.jsp.jspeditor.JSPMultiPageEditor;
-
-/**
- * This represents Eclipse MultiPageEditor part
- * @author yzhishko
- *
- */
-
-public class SWTBotMultiPageEditor extends SWTBotEditor{
-
- /**
- * Constructs an instance for the given editorReference.
- * @param editorReference - the part reference.
- * @param bot - the helper bot.
- * @param description - the description of the editor part.
- */
-
- public SWTBotMultiPageEditor(IEditorReference editorReference,
- SWTWorkbenchBot bot, SelfDescribing description) {
- super(editorReference, bot, description);
- }
-
- /**
- * Constructs an instance for the given editorReference.
- * @param editorReference - the editor reference
- * @param bot - the instance of {@link SWTWorkbenchBot} which will be used to drive
operations on behalf of this object.
- */
-
- public SWTBotMultiPageEditor(IEditorReference editorReference,
- SWTWorkbenchBot bot) {
- super(editorReference, bot);
- }
-
- /**
- *
- * @return <b>null</b> if current MultiPageEditor isn't instance of
{@link JSPMultiPageEditor}, <i>else</i> <p>
- * An object that has {@link JSPMultiPageEditor} reference type
- * @see JSPMultiPageEditor
- */
-
- public JSPMultiPageEditor getJSPMultiPageEditor(){
- if (partReference.getPart(true) instanceof JSPMultiPageEditor) {
- return (JSPMultiPageEditor)partReference.getPart(true);
- }
- return null;
- }
-
-}
Show replies by date