Revision: 14990
          http://gate.svn.sourceforge.net/gate/?rev=14990&view=rev
Author:   markagreenwood
Date:     2012-01-10 18:02:42 +0000 (Tue, 10 Jan 2012)
Log Message:
-----------
some more javadoc fixes

Modified Paths:
--------------
    gate/trunk/src/gate/util/Benchmark.java
    gate/trunk/src/gate/util/Benchmarkable.java
    gate/trunk/src/gate/util/GateClassLoader.java
    gate/trunk/src/gate/util/ProcessManager.java
    gate/trunk/src/gate/util/RBTreeMap.java

Modified: gate/trunk/src/gate/util/Benchmark.java
===================================================================
--- gate/trunk/src/gate/util/Benchmark.java     2012-01-10 17:51:05 UTC (rev 
14989)
+++ gate/trunk/src/gate/util/Benchmark.java     2012-01-10 18:02:42 UTC (rev 
14990)
@@ -118,8 +118,6 @@
 
   /**
    * This returns the current system time.
-   * 
-   * @return
    */
   public static long startPoint() {
     return System.currentTimeMillis();
@@ -232,10 +230,6 @@
 
   /**
    * Helper method to generate the benchmark ID.
-   * 
-   * @param resourceName
-   * @param parentBenchmarkID
-   * @return
    */
   public static String createBenchmarkId(String resourceName,
           String parentBenchmarkID) {
@@ -260,8 +254,6 @@
 
   /**
    * Returns if the logging is enabled.
-   * 
-   * @return
    */
   public static boolean isBenchmarkingEnabled() {
     return benchmarkingEnabled;

Modified: gate/trunk/src/gate/util/Benchmarkable.java
===================================================================
--- gate/trunk/src/gate/util/Benchmarkable.java 2012-01-10 17:51:05 UTC (rev 
14989)
+++ gate/trunk/src/gate/util/Benchmarkable.java 2012-01-10 18:02:42 UTC (rev 
14990)
@@ -12,7 +12,6 @@
 
 package gate.util;
 
-import org.apache.log4j.Logger;
 
 /**
  * Resources that want to log their progress or results into a shared
@@ -25,8 +24,6 @@
 
   /**
    * Returns the benchmark ID of this resource.
-   * 
-   * @return
    */
   public String getBenchmarkId();
 

Modified: gate/trunk/src/gate/util/GateClassLoader.java
===================================================================
--- gate/trunk/src/gate/util/GateClassLoader.java       2012-01-10 17:51:05 UTC 
(rev 14989)
+++ gate/trunk/src/gate/util/GateClassLoader.java       2012-01-10 18:02:42 UTC 
(rev 14990)
@@ -79,8 +79,6 @@
   /**
    * Given a fully qualified class name, this method returns the instance of 
Class if it is already loaded using the ClassLoader
    * or it returns null.
-   * @param name
-   * @return
    */
   public synchronized Class<?> findExistingClass(String name) {
          return findLoadedClass(name);

Modified: gate/trunk/src/gate/util/ProcessManager.java
===================================================================
--- gate/trunk/src/gate/util/ProcessManager.java        2012-01-10 17:51:05 UTC 
(rev 14989)
+++ gate/trunk/src/gate/util/ProcessManager.java        2012-01-10 18:02:42 UTC 
(rev 14990)
@@ -73,8 +73,6 @@
    *
    * @param argv the process command line, suitable for passing to
    * <code>Runtime.exec</code>.
-   * @param dumpOutput should we copy the process output and error streams to
-   * the Java output and error streams or just consume them silently?
    */
   public synchronized int runProcess(String[] argv, File dir, OutputStream 
out, OutputStream err)
                           throws IOException {

Modified: gate/trunk/src/gate/util/RBTreeMap.java
===================================================================
--- gate/trunk/src/gate/util/RBTreeMap.java     2012-01-10 17:51:05 UTC (rev 
14989)
+++ gate/trunk/src/gate/util/RBTreeMap.java     2012-01-10 18:02:42 UTC (rev 
14990)
@@ -15,7 +15,18 @@
  */
 
 package gate.util;
-import java.util.*;
+import java.io.IOException;
+import java.util.AbstractCollection;
+import java.util.AbstractMap;
+import java.util.AbstractSet;
+import java.util.Collection;
+import java.util.Comparator;
+import java.util.ConcurrentModificationException;
+import java.util.Map;
+import java.util.NoSuchElementException;
+import java.util.Set;
+import java.util.SortedMap;
+import java.util.SortedSet;
 
 /** Slightly modified implementation of java.util.TreeMap in order to return 
the
   * closest neighbours in the case of a failed search.
@@ -619,7 +630,6 @@
     * <tt>addAll</tt> operations.
     *
     * @return a set view of the mappings contained in this map.
-    * @see Map.Entry
     */
   public Set entrySet() {
     if (entrySet == null) {

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to