jruaux 2002/10/30 07:41:08
Modified: Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher
JUnitViewFinder.java
Log:
Polished the javadoc
Revision Changes Path
1.3 +7 -4
jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher/JUnitViewFinder.java
Index: JUnitViewFinder.java
===================================================================
RCS file:
/home/cvs/jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher/JUnitViewFinder.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- JUnitViewFinder.java 25 Oct 2002 10:54:11 -0000 1.2
+++ JUnitViewFinder.java 30 Oct 2002 15:41:08 -0000 1.3
@@ -7,7 +7,8 @@
import org.eclipse.ui.IWorkbenchPage;
/**
- * Used to find the JUnit view.
+ * Class responsible for finding the current JUnit view
+ * and for assigning it a test-run listener.
*
* @author <a href="mailto:jruaux@;octo.com">Julien Ruaux</a>
* @version $Id$
@@ -25,8 +26,8 @@
/**
* Constructor
- * @param thePage the page to search
- * @param theListener the listener to notify
+ * @param thePage the page to search in
+ * @param theListener the listener to notify when the view is found
*/
public JUnitViewFinder(IWorkbenchPage thePage, ITestRunListener theListener)
{
@@ -34,7 +35,9 @@
listener = theListener;
}
/**
- * @see java.lang.Runnable#run()
+ * Constantly tries to get the JUnit view.
+ * When the View has been found it gets the associated
+ * RemoteTestRunner Client in order to add a listener to it.
*/
public void run()
{
--
To unsubscribe, e-mail: <mailto:cactus-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:cactus-dev-help@;jakarta.apache.org>