You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/11 23:26:00 UTC

svn commit: r1134770 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java

Author: simonetripodi
Date: Sat Jun 11 21:26:00 2011
New Revision: 1134770

URL: http://svn.apache.org/viewvc?rev=1134770&view=rev
Log:
fixing javadocs

Modified:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java?rev=1134770&r1=1134769&r2=1134770&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/domain/basic/UndirectedGraphImpl.java Sat Jun 11 21:26:00 2011
@@ -192,6 +192,12 @@ public class UndirectedGraphImpl<V exten
         return new HashSet<WE>();
     }
 
+    /**
+     * TODO fillme
+     *
+     * @param e
+     * @param w
+     */
     public void setWeight( WE e, Number w )
     {
         if ( edgeWeights.containsKey( e ) )
@@ -202,6 +208,9 @@ public class UndirectedGraphImpl<V exten
         edgeWeights.put( e, w );
     }
 
+    /**
+     * {@inheritDoc}
+     */
     public Number getWeight( WE e )
     {
         if ( edgeWeights.containsKey( e ) )
@@ -212,7 +221,7 @@ public class UndirectedGraphImpl<V exten
     }
 
     /**
-     * Description of the Method
+     * {@inheritDoc}
      */
     public Object invoke( Object proxy, Method method, Object args[] )
         throws Throwable