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/05/05 18:28:41 UTC

[2/4] incubator-tinkerpop git commit: Added some javadoc to Graph.

Added some javadoc to Graph.


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

Branch: refs/heads/master
Commit: 9dff2d99bdc17dc09d13eb5150bb25283e961566
Parents: 09b0c18
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue May 5 08:11:17 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Tue May 5 08:11:17 2015 -0400

----------------------------------------------------------------------
 .../main/java/org/apache/tinkerpop/gremlin/structure/Graph.java  | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/9dff2d99/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
index 62ae93f..1add3f9 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
@@ -27,6 +27,7 @@ import org.apache.tinkerpop.gremlin.process.traversal.engine.StandardTraversalEn
 import org.apache.tinkerpop.gremlin.structure.io.Io;
 import org.apache.tinkerpop.gremlin.structure.io.IoRegistry;
 import org.apache.tinkerpop.gremlin.structure.util.FeatureDescriptor;
+import org.apache.tinkerpop.gremlin.structure.util.GraphFactory;
 import org.apache.tinkerpop.gremlin.structure.util.Host;
 import org.javatuples.Pair;
 
@@ -55,6 +56,9 @@ import java.util.stream.Collectors;
  */
 public interface Graph extends AutoCloseable, Host {
 
+    /**
+     * Configuration key used by {@link GraphFactory}} to determine which graph to instantiate.
+     */
     public static final String GRAPH = "gremlin.graph";
 
     /**