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/e21eb798 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e21eb798 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e21eb798 Branch: refs/heads/TINKERPOP-1612 Commit: e21eb798c700e2568c8eadd6571a9565bcc03dab Parents: ac04437 Author: Stephen Mallette <[email protected]> Authored: Fri Feb 24 18:02:34 2017 -0500 Committer: Stephen Mallette <[email protected]> Committed: Tue Feb 28 06:32:39 2017 -0500 ---------------------------------------------------------------------- docs/src/reference/the-traversal.asciidoc | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e21eb798/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()
