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/01 17:52:57 UTC

[26/50] [abbrv] incubator-tinkerpop git commit: Replace all
tags in javadoc with

for consistency.

Replace all <br/> tags in javadoc with <p/> for consistency.

<p/> seems to space in the intended way expected when the javadoc is generated (<br/> seems to drop a single line feed only).


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

Branch: refs/heads/variables
Commit: 2e4e2eda83f112d212ecc0627b2375eedd9c70be
Parents: 4203c81
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Apr 30 12:58:41 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Apr 30 12:58:41 2015 -0400

----------------------------------------------------------------------
 .../gremlin/process/traversal/Traverser.java      |  2 +-
 .../strategy/decoration/EventStrategy.java        |  2 +-
 .../apache/tinkerpop/gremlin/structure/Graph.java | 18 +++++++++---------
 .../tinkerpop/gremlin/structure/Transaction.java  |  2 +-
 .../gremlin/structure/VertexProperty.java         |  2 +-
 .../gremlin/structure/io/GraphReader.java         |  2 +-
 .../gremlin/structure/io/GraphWriter.java         |  2 +-
 .../gremlin/structure/io/gryo/GryoMapper.java     |  2 +-
 .../gremlin/structure/io/gryo/GryoReader.java     |  2 +-
 .../structure/util/AbstractTransaction.java       |  2 +-
 .../structure/util/detached/DetachedEdge.java     |  2 +-
 .../structure/util/detached/DetachedVertex.java   |  2 +-
 .../groovy/GroovyEnvironmentIntegrateSuite.java   |  4 ++--
 .../groovy/GroovyEnvironmentPerformanceSuite.java |  4 ++--
 .../gremlin/groovy/GroovyEnvironmentSuite.java    |  2 +-
 .../process/GroovyProcessComputerSuite.java       |  2 +-
 .../process/GroovyProcessStandardSuite.java       |  2 +-
 .../gremlin/groovy/engine/GremlinExecutor.java    |  2 +-
 .../gremlin/groovy/jsr223/DependencyManager.java  |  2 +-
 .../groovy/jsr223/GremlinGroovyScriptEngine.java  |  2 +-
 .../gremlin/server/AbstractChannelizer.java       |  2 +-
 .../server/GremlinDriverIntegrateTest.java        |  2 +-
 .../apache/tinkerpop/gremlin/GraphProvider.java   | 10 +++++-----
 .../apache/tinkerpop/gremlin/LoadGraphWith.java   |  4 ++--
 .../gremlin/process/ProcessComputerSuite.java     |  2 +-
 .../gremlin/process/ProcessPerformanceSuite.java  |  2 +-
 .../gremlin/process/ProcessStandardSuite.java     |  2 +-
 .../structure/StructurePerformanceSuite.java      |  2 +-
 .../gremlin/structure/StructureStandardSuite.java |  2 +-
 .../tinkergraph/structure/TinkerGraph.java        |  6 +++---
 30 files changed, 47 insertions(+), 47 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Traverser.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Traverser.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Traverser.java
index 3a265f1..3ded892 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Traverser.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Traverser.java
@@ -27,7 +27,7 @@ import java.util.function.Function;
  * A {@code Traverser} represents the current state of an object flowing through a {@link Traversal}.
  * A traverser maintains a reference to the current object, a traverser-local "sack", a traversal-global sideEffect,
  * a bulk count, and a path history.
- * <br/>
+ * <p/>
  * Different types of traverser can exist depending on the semantics of the traversal and the desire for
  * space/time optimizations of the developer.
  *

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/EventStrategy.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/EventStrategy.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/EventStrategy.java
index 1843190..64725d2 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/EventStrategy.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/EventStrategy.java
@@ -38,7 +38,7 @@ import java.util.List;
 /**
  * A strategy that raises events when {@link org.apache.tinkerpop.gremlin.process.traversal.step.Mutating} steps are
  * encountered and successfully executed.
- * <br/>
+ * <p/>
  * Note that this implementation requires a {@link Graph} on the {@link Traversal} instance.  If that is not present
  * an {@link java.lang.IllegalStateException} will be thrown.
  *

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/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 511dd13..62ae93f 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
@@ -145,7 +145,7 @@ public interface Graph extends AutoCloseable, Host {
      * vertices.  Note that a vertex identifier does not need to correspond to the actual id used in the graph.  It
      * needs to be a bit more flexible than that in that given the {@link Graph.Features} around id support, multiple
      * arguments might be applicable here.
-     * <br/>
+     * <p/>
      * If the graph return {@code true} for {@link Features.VertexFeatures#supportsNumericIds()} then it should support
      * filters as with:
      * <ul>
@@ -156,20 +156,20 @@ public interface Graph extends AutoCloseable, Host {
      *     <li>g.vertices(1.0f)</li>
      *     <li>g.vertices("1")</li>
      * </ul>
-     * <br/>
+     * <p/>
      * If the graph return {@code true} for {@link Features.VertexFeatures#supportsCustomIds()} ()} then it should support
      * filters as with:
      * <ul>
      *     <li>g.vertices(v.id())</li>
      *     <li>g.vertices(v.id().toString())</li>
      * </ul>
-     * <br/>
+     * <p/>
      * If the graph return {@code true} for {@link Features.VertexFeatures#supportsAnyIds()} ()} then it should support
      * filters as with:
      * <ul>
      *     <li>g.vertices(v.id())</li>
      * </ul>
-     * <br/>
+     * <p/>
      * If the graph return {@code true} for {@link Features.VertexFeatures#supportsStringIds()} ()} then it should support
      * filters as with:
      * <ul>
@@ -177,7 +177,7 @@ public interface Graph extends AutoCloseable, Host {
      *     <li>g.vertices(v.id().toString())</li>
      *     <li>g.vertices("id")</li>
      * </ul>
-     * <br/>
+     * <p/>
      * If the graph return {@code true} for {@link Features.EdgeFeatures#supportsStringIds()} ()} then it should support
      * filters as with:
      * <ul>
@@ -195,7 +195,7 @@ public interface Graph extends AutoCloseable, Host {
      * Note that an edge identifier does not need to correspond to the actual id used in the graph.  It
      * needs to be a bit more flexible than that in that given the {@link Graph.Features} around id support, multiple
      * arguments might be applicable here.
-     * <br/>
+     * <p/>
      * If the graph return {@code true} for {@link Features.EdgeFeatures#supportsNumericIds()} then it should support
      * filters as with:
      * <ul>
@@ -206,20 +206,20 @@ public interface Graph extends AutoCloseable, Host {
      *     <li>g.edges(1.0f)</li>
      *     <li>g.edges("1")</li>
      * </ul>
-     * <br/>
+     * <p/>
      * If the graph return {@code true} for {@link Features.EdgeFeatures#supportsCustomIds()} ()} then it should support
      * filters as with:
      * <ul>\
      *     <li>g.edges(e.id())</li>
      *     <li>g.edges(e.id().toString())</li>
      * </ul>
-     * <br/>
+     * <p/>
      * If the graph return {@code true} for {@link Features.EdgeFeatures#supportsAnyIds()} ()} then it should support
      * filters as with:
      * <ul>
      *     <li>g.edges(e.id())</li>
      * </ul>
-     * <br/>
+     * <p/>
      * If the graph return {@code true} for {@link Features.EdgeFeatures#supportsStringIds()} ()} then it should support
      * filters as with:
      * <ul>

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Transaction.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Transaction.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Transaction.java
index 4a26373..6a1014e 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Transaction.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Transaction.java
@@ -29,7 +29,7 @@ import java.util.function.Function;
  * A set of methods that allow for control of transactional behavior of a {@link Graph} instance. Vendors may
  * consider using {@link org.apache.tinkerpop.gremlin.structure.util.AbstractTransaction} as a base implementation
  * that provides default features for most of these methods.
- * <br/>
+ * <p/>
  * It is expected that this interface be implemented by vendors in a {@link ThreadLocal} fashion. In other words
  * transactions are bound to the current thread, which means that any graph operation executed by the thread occurs
  * in the context of that transaction and that there may only be one thread executing in a single transaction.

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/VertexProperty.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/VertexProperty.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/VertexProperty.java
index bf641da..ecbefb3 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/VertexProperty.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/VertexProperty.java
@@ -26,7 +26,7 @@ import java.util.Iterator;
  * A {@code VertexProperty} is similar to a {@link Property} in that it denotes a key/value pair associated with an
  * {@link Vertex}, however it is different in the sense that it also represents an entity that it is an {@link Element}
  * that can have properties of its own.
- * <br/>
+ * <p/>
  * A property is much like a Java8 {@link java.util.Optional} in that a property can be not present (i.e. empty).
  * The key of a property is always a String and the value of a property is an arbitrary Java object.
  * Each underlying graph engine will typically have constraints on what Java objects are allowed to be used as values.

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/GraphReader.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/GraphReader.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/GraphReader.java
index a4c7a80..b548f07 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/GraphReader.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/GraphReader.java
@@ -39,7 +39,7 @@ import java.util.function.Function;
  * equivalent to another. In other words the input to {@link #readVertex(InputStream, Function)}} need not also
  * be readable by {@link #readObject(InputStream, Class)}. In other words, implementations are free
  * to optimize as is possible for a specific serialization method.
- * <br/>
+ * <p/>
  * That said, it is however important that the complementary "write" operation in {@link GraphWriter} be capable of
  * writing output compatible to its reader.  In other words, the output of
  * {@link GraphWriter#writeObject(OutputStream, Object)} should always be readable by

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/GraphWriter.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/GraphWriter.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/GraphWriter.java
index 946cdb8..5d7d7b3 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/GraphWriter.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/GraphWriter.java
@@ -39,7 +39,7 @@ import java.util.Iterator;
  * {@link #writeVertex(OutputStream, Vertex, Direction)} need to match the representation of that same
  * {@link Edge} when provided to {@link #writeEdge(OutputStream, Edge)}. In other words, implementations are free
  * to optimize as is possible for a specific serialization method.
- * <br/>
+ * <p/>
  * That said, it is however important that the complementary "read" operation in {@link GraphReader} be capable of
  * reading the output of the writer.  In other words, the output of {@link #writeObject(OutputStream, Object)}
  * should always be readable by {@link GraphReader#readObject(InputStream, Class)} and the output of

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoMapper.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoMapper.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoMapper.java
index da8caff..844eea6 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoMapper.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoMapper.java
@@ -91,7 +91,7 @@ import java.util.stream.Collectors;
 /**
  * A {@link Mapper} implementation for Kryo. This implementation requires that all classes to be serialized by
  * Kryo are registered to it.
- * <br/>
+ * <p/>
  * {@link Graph} implementations providing an {@link IoRegistry} should register their custom classs and/or
  * serializers in one of three ways:
  * <ol>

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoReader.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoReader.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoReader.java
index dd3c995..c87a73b 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoReader.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoReader.java
@@ -52,7 +52,7 @@ import java.util.function.Function;
  * The {@link GraphReader} for the Gremlin Structure serialization format based on Kryo.  The format is meant to be
  * non-lossy in terms of Gremlin Structure to Gremlin Structure migrations (assuming both structure implementations
  * support the same graph features).
- * <br/>
+ * <p/>
  * This implementation is not thread-safe.  Have one {@code GryoReader} instance per thread.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/AbstractTransaction.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/AbstractTransaction.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/AbstractTransaction.java
index ea0d62c..9fb8e2f 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/AbstractTransaction.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/AbstractTransaction.java
@@ -32,7 +32,7 @@ import java.util.function.Function;
  * can use this class as a starting point for their own implementations. Implementers should note that this
  * class assumes that threaded transactions are not enabled.  Vendors should explicitly override
  * {@link #create} to implement that functionality if required.
- * <br/>
+ * <p/>
  * Note that transaction listeners are registered in a {@link ThreadLocal} fashion which matches the pattern
  * expected of vendor implementations of a {@link Transaction}.
  *

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedEdge.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedEdge.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedEdge.java
index 02c2fd0..776d313 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedEdge.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedEdge.java
@@ -37,7 +37,7 @@ import java.util.Map;
  * a {@link Graph} in the sense that the {@link Edge} was constructed from a {@link Graph} instance and this reference
  * was removed or it can mean that the {@code DetachedEdge} could have been constructed independently of a
  * {@link Graph} instance in the first place.
- * <br/>
+ * <p/>
  * A {@code DetachedEdge} only has reference to the properties and in/out vertices that are associated with it at the
  * time of detachment (or construction) and is not traversable or mutable.  Note that the references to the in/out
  * vertices are {@link DetachedVertex} instances that only have reference to the

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedVertex.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedVertex.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedVertex.java
index 76e6dc2..1c5ee92 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedVertex.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedVertex.java
@@ -40,7 +40,7 @@ import java.util.stream.Collectors;
  * a {@link Graph} in the sense that a {@link Vertex} was constructed from a {@link Graph} instance and this reference
  * was removed or it can mean that the {@code DetachedVertex} could have been constructed independently of a
  * {@link Graph} instance in the first place.
- * <br/>
+ * <p/>
  * A {@code DetachedVertex} only has reference to the properties that are associated with it at the time of detachment
  * (or construction) and is not traversable or mutable.
  *

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentIntegrateSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentIntegrateSuite.java b/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentIntegrateSuite.java
index b1c5dd3..db4d0e5 100644
--- a/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentIntegrateSuite.java
+++ b/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentIntegrateSuite.java
@@ -40,9 +40,9 @@ import java.util.stream.Stream;
  * {@link Graph} implementation.  This test suite covers ensures that a vendor implementation is compliant with
  * the Groovy "environment" which will typically ensure that the {@link Graph} will work as expected in the Gremlin
  * Console, Gremlin Server, and other Groovy environments.
- * <br/>
+ * <p/>
  * Note that this suite contains "long-run" tests.  At this time, this suite can be considered optional to vendors.
- * <br/>
+ * <p/>
  * For more information on the usage of this suite, please see {@link StructureStandardSuite}.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentPerformanceSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentPerformanceSuite.java b/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentPerformanceSuite.java
index ccff0d1..1108185 100644
--- a/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentPerformanceSuite.java
+++ b/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentPerformanceSuite.java
@@ -41,10 +41,10 @@ import java.util.stream.Stream;
  * {@link Graph} implementation.  This test suite covers ensures that a vendor implementation is compliant with
  * the Groovy "environment" which will typically ensure that the {@link Graph} will work as expected in the Gremlin
  * Console, Gremlin Server, and other Groovy environments.
- * <br/>
+ * <p/>
  * Note that this suite contains "long-run" tests.  At this time, this suite can be considered optional to vendors
  * as the functionality that it provides is generally covered elsewhere.
- * <br/>
+ * <p/>
  * For more information on the usage of this suite, please see {@link StructureStandardSuite}.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentSuite.java b/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentSuite.java
index a938c7a..8b947c7 100644
--- a/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentSuite.java
+++ b/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/groovy/GroovyEnvironmentSuite.java
@@ -43,7 +43,7 @@ import java.util.stream.Stream;
  * {@link Graph} implementation.  This test suite covers ensures that a vendor implementation is compliant with
  * the Groovy "environment" which will typically ensure that the {@link Graph} will work as expected in the Gremlin
  * Console, Gremlin Server, and other Groovy environments.
- * <br/>
+ * <p/>
  * For more information on the usage of this suite, please see {@link StructureStandardSuite}.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/process/GroovyProcessComputerSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/process/GroovyProcessComputerSuite.java b/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/process/GroovyProcessComputerSuite.java
index ad93092..562771c 100644
--- a/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/process/GroovyProcessComputerSuite.java
+++ b/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/process/GroovyProcessComputerSuite.java
@@ -77,7 +77,7 @@ import org.junit.runners.model.RunnerBuilder;
  * be implemented by vendors to validate that their implementations are compliant with the Groovy flavor of the
  * Gremlin language. Implementations that use this test suite should return {@code true} for
  * {@link Graph.Features.GraphFeatures#supportsComputer()}.
- * <br/>
+ * <p/>
  * For more information on the usage of this suite, please see {@link StructureStandardSuite}.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/process/GroovyProcessStandardSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/process/GroovyProcessStandardSuite.java b/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/process/GroovyProcessStandardSuite.java
index e8303b2..7798682 100644
--- a/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/process/GroovyProcessStandardSuite.java
+++ b/gremlin-groovy-test/src/main/java/org/apache/tinkerpop/gremlin/process/GroovyProcessStandardSuite.java
@@ -83,7 +83,7 @@ import org.junit.runners.model.RunnerBuilder;
  * The {@code GroovyProcessStandardSuite} is a JUnit test runner that executes the Gremlin Test Suite over a
  * {@link Graph} implementation.  This test suite covers traversal operations and should be implemented by vendors
  * to validate that their implementations are compliant with the Groovy flavor of the Gremlin language.
- * <br/>
+ * <p/>
  * For more information on the usage of this suite, please see {@link StructureStandardSuite}.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/engine/GremlinExecutor.java
----------------------------------------------------------------------
diff --git a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/engine/GremlinExecutor.java b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/engine/GremlinExecutor.java
index 5d87fc5..ce4cd1a 100644
--- a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/engine/GremlinExecutor.java
+++ b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/engine/GremlinExecutor.java
@@ -63,7 +63,7 @@ import java.util.stream.Collectors;
  * {@code ScriptEngine} and assumes such engines are designed to be thread-safe in the evaluation.  Script evaluation
  * functions return a {@link CompletableFuture} where scripts may timeout if their evaluation
  * takes too long.  The default timeout is 8000ms.
- * <br/>
+ * <p/>
  * By default, the {@code GremlinExecutor} initializes itself to use a shared thread pool initialized with four
  * threads. This default thread pool is shared for both the task of executing script evaluations and for scheduling
  * timeouts. It is worth noting that a timeout simply triggers the returned {@link CompletableFuture} to abort, but

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/DependencyManager.java
----------------------------------------------------------------------
diff --git a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/DependencyManager.java b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/DependencyManager.java
index 6071c5c..e182ac8 100644
--- a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/DependencyManager.java
+++ b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/DependencyManager.java
@@ -38,7 +38,7 @@ public interface DependencyManager {
      * that can support script engine plugins should check if there are any new {@link GremlinPlugin}
      * implementations in the classloader.  The {@link org.apache.tinkerpop.gremlin.groovy.jsr223.GremlinGroovyScriptEngine}
      * implementation uses ServiceLoader to figure out if there are such classes to return.
-     * <br/>
+     * <p/>
      * It is up to the caller to execute the
      * {@link GremlinPlugin#pluginTo(org.apache.tinkerpop.gremlin.groovy.plugin.PluginAcceptor)} method.  The reason for
      * this has to do with conflicts that can occur with mapper imports that are added via the

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/GremlinGroovyScriptEngine.java
----------------------------------------------------------------------
diff --git a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/GremlinGroovyScriptEngine.java b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/GremlinGroovyScriptEngine.java
index af26613..821acc8 100644
--- a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/GremlinGroovyScriptEngine.java
+++ b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/jsr223/GremlinGroovyScriptEngine.java
@@ -159,7 +159,7 @@ public class GremlinGroovyScriptEngine extends GroovyScriptEngineImpl implements
 
     /**
      * {@inheritDoc}
-     * <br/>
+     * <p/>
      * This method should be called after "expected" imports have been added to the {@code DependencyManager}
      * because adding imports with {@link #addImports(java.util.Set)} will reset the classloader and flush away
      * dependencies.

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/AbstractChannelizer.java
----------------------------------------------------------------------
diff --git a/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/AbstractChannelizer.java b/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/AbstractChannelizer.java
index c535c8d..baa4551 100644
--- a/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/AbstractChannelizer.java
+++ b/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/AbstractChannelizer.java
@@ -50,7 +50,7 @@ import java.util.stream.Stream;
  * A base implementation for the {@code Channelizer} which does a basic configuration of the the pipeline, one that
  * is generally common to virtually any Gremlin Server operation (i.e. where the server's purpose is to process
  * Gremlin scripts).
- * <br/>
+ * <p/>
  * Implementers need only worry about determining how incoming data is converted to a
  * {@link org.apache.tinkerpop.gremlin.driver.message.RequestMessage} and outgoing data is converted from a
  * {@link org.apache.tinkerpop.gremlin.driver.message.ResponseMessage} to whatever expected format is needed by the pipeline.

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
----------------------------------------------------------------------
diff --git a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
index ecdb677..2a2a7de 100644
--- a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
+++ b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
@@ -134,7 +134,7 @@ public class GremlinDriverIntegrateTest extends AbstractGremlinServerIntegration
 
     /**
      * This test arose from this issue: https://github.org/apache/tinkerpop/tinkerpop3/issues/515
-     * <br/>
+     * <p/>
      * ResultSet.all returns a CompleteableFuture that blocks on the worker pool until isExausted returns false.
      * isExausted in turn needs a thread on the worker pool to even return. So its totally possible to consume all
      * threads on the worker pool waiting for .all to finish such that you can't even get one to wait for

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/GraphProvider.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/GraphProvider.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/GraphProvider.java
index a2d67c9..e58c1c4 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/GraphProvider.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/GraphProvider.java
@@ -91,7 +91,7 @@ public interface GraphProvider {
      * {@link StandardTraversalEngine} so vendors should override as necessary if their implementation is testing
      * something that requires a different engine type, like those tests for
      * {@link org.apache.tinkerpop.gremlin.process.traversal.TraversalEngine.Type}.
-     * <br/>
+     * <p/>
      * Implementations should apply strategies as necessary to the
      * {@link org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource.Builder} before calling
      * it's {@code create} method.
@@ -145,7 +145,7 @@ public interface GraphProvider {
      * Clears a {@link Graph} of all data and settings.  Implementations will have different ways of handling this.
      * For a brute force approach, implementers can simply delete data directories provided in the configuration.
      * Implementers may choose a more elegant approach if it exists.
-     * <br/>
+     * <p/>
      * Implementations should be able to accept an argument of null for the Graph, in which case the only action
      * that can be performed is a clear given the configuration.  The method will typically be called this way
      * as clean up task on setup to ensure that a persisted graph has a clear space to create a test graph.
@@ -237,7 +237,7 @@ public interface GraphProvider {
      * <li>{@link Vertex}</li>
      * <li>{@link VertexProperty}</li>
      * </ul>
-     * <br/>
+     * <p/>
      * The test suite only enforces registration of the following core structure interfaces (i.e. these classes must
      * be registered or the tests will fail to execute):
      * <ul>
@@ -249,10 +249,10 @@ public interface GraphProvider {
      * <li>{@link Vertex}</li>
      * <li>{@link VertexProperty}</li>
      * </ul>
-     * <br/>
+     * <p/>
      * The remaining interfaces and classes should be registered however as failure to do so, might cause failures
      * in the Groovy environment testing suite.
-     * <br/>
+     * <p/>
      * Internally speaking, tests that make use of this method should bind in {@link #CORE_IMPLEMENTATIONS} to the
      * {@link Set} because these represent {@code gremlin-core} implementations that are likely not registered
      * by the vendor implementations.

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/LoadGraphWith.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/LoadGraphWith.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/LoadGraphWith.java
index 20dac12..17893e5 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/LoadGraphWith.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/LoadGraphWith.java
@@ -37,12 +37,12 @@ import static org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexFeatur
 /**
  * Annotations to define a graph example to load from test resources prior to test execution.  This annotation is
  * for use only with test that extend from {@link AbstractGremlinTest}.
- * <br/>
+ * <p/>
  * Note that the annotation assumes that the @{link GraphData} referenced by the annotation can be made available
  * to the graph in the test.  In other words, even a graph that has "read-only" features, should have some method of
  * getting the data available to it.  That said, graphs must minimally support the data types that the sample
  * data contains for the test to be executed.
- * <br/>
+ * <p/>
  * If a graph implementation is "read-only", it can override the
  * {@link GraphProvider#loadGraphData(org.apache.tinkerpop.gremlin.structure.Graph, LoadGraphWith, Class, String)} method
  * to provide some other mechanism for making that data available to the graph in time for the test.  See the

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessComputerSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessComputerSuite.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessComputerSuite.java
index 84556e2..0d64680 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessComputerSuite.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessComputerSuite.java
@@ -84,7 +84,7 @@ import java.util.stream.Stream;
  * be implemented by vendors to validate that their implementations are compliant with that Gremlin language.
  * Implementations that use this test suite should return {@code true} for
  * {@link org.apache.tinkerpop.gremlin.structure.Graph.Features.GraphFeatures#supportsComputer()}.
- * <br/>
+ * <p/>
  * For more information on the usage of this suite, please see {@link StructureStandardSuite}.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessPerformanceSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessPerformanceSuite.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessPerformanceSuite.java
index 073dacc..f787450 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessPerformanceSuite.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessPerformanceSuite.java
@@ -32,7 +32,7 @@ import org.junit.runners.model.RunnerBuilder;
  * implementation.  This suite contains "long-run" tests that produce reports on the traversal execution
  * performance of a vendor implementation {@link Graph}. Its usage is optional to vendors as the tests are
  * somewhat redundant to those found elsewhere in other required test suites.
- * <br/>
+ * <p/>
  * For more information on the usage of this suite, please see {@link StructureStandardSuite}.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessStandardSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessStandardSuite.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessStandardSuite.java
index f056d2e..5be6765 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessStandardSuite.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessStandardSuite.java
@@ -90,7 +90,7 @@ import java.util.stream.Stream;
  * The {@code ProcessStandardSuite} is a JUnit test runner that executes the Gremlin Test Suite over a
  * {@link Graph} implementation.  This test suite covers traversal operations and should be implemented by vendors
  * to validate that their implementations are compliant with the Gremlin language.
- * <br/>
+ * <p/>
  * For more information on the usage of this suite, please see {@link StructureStandardSuite}.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/StructurePerformanceSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/StructurePerformanceSuite.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/StructurePerformanceSuite.java
index e25fac8..3506e9b 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/StructurePerformanceSuite.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/StructurePerformanceSuite.java
@@ -28,7 +28,7 @@ import org.junit.runners.model.RunnerBuilder;
  * {@link Graph} implementation. This suite contains "long-run" tests that produce reports on the read/write
  * performance of a vendor implementation {@link Graph}. Its usage is optional to vendors as the tests are
  * somewhat redundant to those found elsewhere in other required test suites.
- * <br/>
+ * <p/>
  * For more information on the usage of this suite, please see {@link StructureStandardSuite}.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/StructureStandardSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/StructureStandardSuite.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/StructureStandardSuite.java
index b18fdcf..209c9e7 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/StructureStandardSuite.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/StructureStandardSuite.java
@@ -63,7 +63,7 @@ import java.util.stream.Stream;
  * {@code StructureStandardSuite} will utilized Features defined in the suite to determine which tests will be
  * executed. Note that while the above example demonstrates configuration of this suite, this approach generally
  * applies to all other test suites.
- * <br/>
+ * <p/>
  * Set the {@code GREMLIN_TESTS} environment variable to a comma separated list of test classes to execute.
  * This setting can be helpful to restrict execution of tests to specific ones being focused on during development.
 

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/2e4e2eda/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java
----------------------------------------------------------------------
diff --git a/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java b/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java
index bcaefed..e9058a8 100644
--- a/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java
+++ b/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java
@@ -109,7 +109,7 @@ public class TinkerGraph implements Graph {
 
     /**
      * Open a new {@link TinkerGraph} instance.
-     * <br/>
+     * <p/>
      * <b>Reference Implementation Help:</b> If a {@link Graph} implementation does not require a {@code Configuration}
      * (or perhaps has a default configuration) it can choose to implement a zero argument
      * {@code open()} method. This is an optional constructor method for TinkerGraph. It is not enforced by the Gremlin
@@ -121,7 +121,7 @@ public class TinkerGraph implements Graph {
 
     /**
      * Open a new {@code TinkerGraph} instance.
-     * <br/>
+     * <p/>
      * <b>Reference Implementation Help:</b> This method is the one use by the {@link GraphFactory} to instantiate
      * {@link Graph} instances.  This method must be overridden for the Structure Test Suite to pass. Implementers have
      * latitude in terms of how exceptions are handled within this method.  Such exceptions will be considered
@@ -253,7 +253,7 @@ public class TinkerGraph implements Graph {
 
     /**
      * Return TinkerGraph feature set.
-     * <br/>
+     * <p/>
      * <b>Reference Implementation Help:</b> Implementers only need to implement features for which there are
      * negative or instance configured features.  By default, all
      * {@link org.apache.tinkerpop.gremlin.structure.Graph.Features} return true.