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/07/28 16:33:34 UTC

svn commit: r1366686 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java

Author: simonetripodi
Date: Sat Jul 28 14:33:33 2012
New Revision: 1366686

URL: http://svn.apache.org/viewvc?rev=1366686&view=rev
Log:
javadoc - no functional modifications

Modified:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java?rev=1366686&r1=1366685&r2=1366686&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java Sat Jul 28 14:33:33 2012
@@ -20,8 +20,8 @@ package org.apache.commons.graph.export;
  */
 
 /**
- * TODO Fill me!!
- * 
+ * Allows users selecting the format of graph serialization.
+ *
  * @param <V> the Graph vertices type.
  * @param <E> the Graph edges type.
  */
@@ -30,6 +30,7 @@ public interface ExportSelector<V, E>
 
     /**
      * Export Graphs in <a href="http://en.wikipedia.org/wiki/DOT_language">DOT language</a>.
+     *
      * @return {@link DotExporter} instance
      * @throws GraphExportException
      */
@@ -38,6 +39,7 @@ public interface ExportSelector<V, E>
 
     /**
      * Export Graphs in <a href="http://graphml.graphdrawing.org/">GraphML file format</a>.
+     *
      * @return {@link GraphMLExporter} instance
      * @throws GraphExportException
      */