You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/08/21 20:36:17 UTC

incubator-tinkerpop git commit: Update javadoc on IoCore

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/tp30 649442c43 -> f91b21bce


Update javadoc on IoCore


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/f91b21bc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/f91b21bc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/f91b21bc

Branch: refs/heads/tp30
Commit: f91b21bce72622550a494abee2fccd99a8ccdf29
Parents: 649442c
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri Aug 21 14:35:59 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Aug 21 14:35:59 2015 -0400

----------------------------------------------------------------------
 .../org/apache/tinkerpop/gremlin/structure/io/IoCore.java   | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/f91b21bc/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoCore.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoCore.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoCore.java
index 00af37e..a22dd28 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoCore.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoCore.java
@@ -32,14 +32,23 @@ public final class IoCore {
 
     private IoCore() {}
 
+    /**
+     * Creates a basic GraphML-based {@link org.apache.tinkerpop.gremlin.structure.io.Io.Builder}.
+     */
     public static Io.Builder<GraphMLIo> graphml() {
         return GraphMLIo.build();
     }
 
+    /**
+     * Creates a basic GraphSON-based {@link org.apache.tinkerpop.gremlin.structure.io.Io.Builder}.
+     */
     public static Io.Builder<GraphSONIo> graphson() {
         return GraphSONIo.build();
     }
 
+    /**
+     * Creates a basic Gryo-based {@link org.apache.tinkerpop.gremlin.structure.io.Io.Builder}.
+     */
     public static Io.Builder<GryoIo> gryo() {
         return GryoIo.build();
     }