TINKERPOP-1612 Added an import to the doc source As we need to be careful with the number of imports now it seemed better to just add this import manually as it's really for demo purposes only in the docs. It's not a class people would normally use.
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/0401f75c Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/0401f75c Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/0401f75c Branch: refs/heads/TINKERPOP-1612 Commit: 0401f75c9421fbf48ff0934e6c8e642eec876a96 Parents: 32f173b Author: Stephen Mallette <sp...@genoprime.com> Authored: Fri Feb 24 18:02:34 2017 -0500 Committer: Stephen Mallette <sp...@genoprime.com> Committed: Mon Feb 27 10:45:53 2017 -0500 ---------------------------------------------------------------------- docs/src/reference/the-traversal.asciidoc | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/0401f75c/docs/src/reference/the-traversal.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc index 990f50f..1e8d18b 100644 --- a/docs/src/reference/the-traversal.asciidoc +++ b/docs/src/reference/the-traversal.asciidoc @@ -2779,6 +2779,7 @@ console session displays the basic usage: [gremlin-groovy] ---- +import org.apache.tinkerpop.gremlin.process.traversal.step.util.event.* graph = TinkerFactory.createModern() l = new ConsoleMutationListener(graph) strategy = EventStrategy.build().addListener(l).create()