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 2012/03/20 14:21:03 UTC

svn commit: r1302876 - /commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java

Author: simonetripodi
Date: Tue Mar 20 13:21:03 2012
New Revision: 1302876

URL: http://svn.apache.org/viewvc?rev=1302876&view=rev
Log:
properties setters always return the current exporter exporter instance

Modified:
    commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java

Modified: commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java?rev=1302876&r1=1302875&r2=1302876&view=diff
==============================================================================
--- commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java (original)
+++ commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java Tue Mar 20 13:21:03 2012
@@ -182,28 +182,28 @@ final class GraphMLExporter<V, E>
     public <N extends Number> GraphMLExporter<V, E> withEdgeWeights( Mapper<E, N> edgeWeights )
     {
         // TODO Auto-generated method stub
-        return null;
+        return this;
     }
 
     @Override
     public <N extends Number> GraphMLExporter<V, E> withVertexWeights( Mapper<V, N> vertexWeights )
     {
         // TODO Auto-generated method stub
-        return null;
+        return this;
     }
 
     @Override
     public GraphMLExporter<V, E> withEdgeLabels( Mapper<E, String> edgeLabels )
     {
         // TODO Auto-generated method stub
-        return null;
+        return this;
     }
 
     @Override
     public GraphMLExporter<V, E> withVertexLabels( Mapper<V, String> vertexLabels )
     {
         // TODO Auto-generated method stub
-        return null;
+        return this;
     }
 
 }