Cleanup intellij complaints about use of the javadoc see tag CTR

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

Branch: refs/heads/master
Commit: a42e080bdc46e0c1326613fd2c4c39a671b65e96
Parents: fc54b72
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri Feb 17 13:17:01 2017 -0500
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Feb 17 13:17:01 2017 -0500

----------------------------------------------------------------------
 .../traversal/dsl/graph/GraphTraversal.java     | 206 +++++++++----------
 1 file changed, 103 insertions(+), 103 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/a42e080b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.java
----------------------------------------------------------------------
diff --git 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.java
 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.java
index 0935f7a..3c750aa 100644
--- 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.java
+++ 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.java
@@ -192,7 +192,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param function the lambda expression that does the functional mapping
      * @return the traversal with an appended {@link LambdaMapStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";>Reference
 Documentation - General Steps</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";
 target="_blank">Reference Documentation - General Steps</a>
      */
     public default <E2> GraphTraversal<S, E2> map(final Function<Traverser<E>, 
E2> function) {
         this.asAdmin().getBytecode().addStep(Symbols.map, function);
@@ -204,7 +204,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param mapTraversal the traversal expression that does the functional 
mapping
      * @return the traversal with an appended {@link LambdaMapStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";>Reference
 Documentation - General Steps</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";
 target="_blank">Reference Documentation - General Steps</a>
      */
     public default <E2> GraphTraversal<S, E2> map(final Traversal<?, E2> 
mapTraversal) {
         this.asAdmin().getBytecode().addStep(Symbols.map, mapTraversal);
@@ -218,7 +218,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param function the lambda expression that does the functional mapping
      * @param <E2>     the type of the returned iterator objects
      * @return the traversal with an appended {@link LambdaFlatMapStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";>Reference
 Documentation - General Steps</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";
 target="_blank">Reference Documentation - General Steps</a>
      */
     public default <E2> GraphTraversal<S, E2> flatMap(final 
Function<Traverser<E>, Iterator<E2>> function) {
         this.asAdmin().getBytecode().addStep(Symbols.flatMap, function);
@@ -232,7 +232,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param flatMapTraversal the traversal generating objects of type 
<code>E2</code>
      * @param <E2>             the end type of the internal traversal
      * @return the traversal with an appended {@link TraversalFlatMapStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";>Reference
 Documentation - General Steps</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";
 target="_blank">Reference Documentation - General Steps</a>
      */
     public default <E2> GraphTraversal<S, E2> flatMap(final Traversal<?, E2> 
flatMapTraversal) {
         this.asAdmin().getBytecode().addStep(Symbols.flatMap, 
flatMapTraversal);
@@ -243,7 +243,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Map the {@link Element} to its {@link Element#id}.
      *
      * @return the traversal with an appended {@link IdStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#id-step";>Reference
 Documentation - Id Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#id-step"; 
target="_blank">Reference Documentation - Id Step</a>
      */
     public default GraphTraversal<S, Object> id() {
         this.asAdmin().getBytecode().addStep(Symbols.id);
@@ -254,7 +254,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Map the {@link Element} to its {@link Element#label}.
      *
      * @return the traversal with an appended {@link LabelStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#label-step";>Reference
 Documentation - Label Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#label-step";
 target="_blank">Reference Documentation - Label Step</a>
      */
     public default GraphTraversal<S, String> label() {
         this.asAdmin().getBytecode().addStep(Symbols.label);
@@ -275,7 +275,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Map any object to a fixed <code>E</code> value.
      *
      * @return the traversal with an appended {@link ConstantStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#constant-step";>Reference
 Documentation - Constant Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#constant-step";
 target="_blank">Reference Documentation - Constant Step</a>
      */
     public default <E2> GraphTraversal<S, E2> constant(final E2 e) {
         this.asAdmin().getBytecode().addStep(Symbols.constant, e);
@@ -287,7 +287,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param vertexIdsOrElements vertices to inject into the traversal
      * @return the traversal with an appended {@link GraphStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#graph-step";>Reference
 Documentation - Graph Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#graph-step";
 target="_blank">Reference Documentation - Graph Step</a>
      */
     public default GraphTraversal<S, Vertex> V(final Object... 
vertexIdsOrElements) {
         this.asAdmin().getBytecode().addStep(Symbols.V, vertexIdsOrElements);
@@ -300,7 +300,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param direction  the direction to traverse from the current vertex
      * @param edgeLabels the edge labels to traverse
      * @return the traversal with an appended {@link VertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Vertex> to(final Direction direction, 
final String... edgeLabels) {
         this.asAdmin().getBytecode().addStep(Symbols.to, direction, 
edgeLabels);
@@ -312,7 +312,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param edgeLabels the edge labels to traverse
      * @return the traversal with an appended {@link VertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Vertex> out(final String... edgeLabels) {
         this.asAdmin().getBytecode().addStep(Symbols.out, edgeLabels);
@@ -324,7 +324,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param edgeLabels the edge labels to traverse
      * @return the traversal with an appended {@link VertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Vertex> in(final String... edgeLabels) {
         this.asAdmin().getBytecode().addStep(Symbols.in, edgeLabels);
@@ -336,7 +336,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param edgeLabels the edge labels to traverse
      * @return the traversal with an appended {@link VertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Vertex> both(final String... edgeLabels) {
         this.asAdmin().getBytecode().addStep(Symbols.both, edgeLabels);
@@ -349,7 +349,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param direction  the direction to traverse from the current vertex
      * @param edgeLabels the edge labels to traverse
      * @return the traversal with an appended {@link VertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Edge> toE(final Direction direction, 
final String... edgeLabels) {
         this.asAdmin().getBytecode().addStep(Symbols.toE, direction, 
edgeLabels);
@@ -361,7 +361,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param edgeLabels the edge labels to traverse
      * @return the traversal with an appended {@link VertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Edge> outE(final String... edgeLabels) {
         this.asAdmin().getBytecode().addStep(Symbols.outE, edgeLabels);
@@ -373,7 +373,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param edgeLabels the edge labels to traverse
      * @return the traversal with an appended {@link VertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Edge> inE(final String... edgeLabels) {
         this.asAdmin().getBytecode().addStep(Symbols.inE, edgeLabels);
@@ -385,7 +385,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param edgeLabels the edge labels to traverse
      * @return the traversal with an appended {@link VertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Edge> bothE(final String... edgeLabels) {
         this.asAdmin().getBytecode().addStep(Symbols.bothE, edgeLabels);
@@ -397,7 +397,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param direction the direction to traverser from the current edge
      * @return the traversal with an appended {@link EdgeVertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Vertex> toV(final Direction direction) {
         this.asAdmin().getBytecode().addStep(Symbols.toV, direction);
@@ -408,7 +408,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Map the {@link Edge} to its incoming/head incident {@link Vertex}.
      *
      * @return the traversal with an appended {@link EdgeVertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Vertex> inV() {
         this.asAdmin().getBytecode().addStep(Symbols.inV);
@@ -419,7 +419,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Map the {@link Edge} to its outgoing/tail incident {@link Vertex}.
      *
      * @return the traversal with an appended {@link EdgeVertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Vertex> outV() {
         this.asAdmin().getBytecode().addStep(Symbols.outV);
@@ -430,7 +430,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Map the {@link Edge} to its incident vertices.
      *
      * @return the traversal with an appended {@link EdgeVertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Vertex> bothV() {
         this.asAdmin().getBytecode().addStep(Symbols.bothV);
@@ -441,7 +441,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Map the {@link Edge} to the incident vertex that was not just traversed 
from in the path history.
      *
      * @return the traversal with an appended {@link EdgeOtherVertexStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";>Reference
 Documentation - Vertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#vertex-steps";
 target="_blank">Reference Documentation - Vertex Step</a>
      */
     public default GraphTraversal<S, Vertex> otherV() {
         this.asAdmin().getBytecode().addStep(Symbols.otherV);
@@ -452,7 +452,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Order all the objects in the traversal up to this point and then emit 
them one-by-one in their ordered sequence.
      *
      * @return the traversal with an appended {@link OrderGlobalStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#order-step";>Reference
 Documentation - Order Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#order-step";
 target="_blank">Reference Documentation - Order Step</a>
      */
     public default GraphTraversal<S, E> order() {
         this.asAdmin().getBytecode().addStep(Symbols.order);
@@ -464,7 +464,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param scope whether the ordering is the current local object or the 
entire global stream.
      * @return the traversal with an appended {@link OrderGlobalStep} or 
{@link OrderLocalStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#order-step";>Reference
 Documentation - Order Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#order-step";
 target="_blank">Reference Documentation - Order Step</a>
      */
     public default GraphTraversal<S, E> order(final Scope scope) {
         this.asAdmin().getBytecode().addStep(Symbols.order, scope);
@@ -478,7 +478,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param propertyKeys the properties to retrieve
      * @param <E2>         the value type of the returned properties
      * @return the traversal with an appended {@link PropertiesStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#properties-step";>Reference
 Documentation - Properties Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#properties-step";
 target="_blank">Reference Documentation - Properties Step</a>
      */
     public default <E2> GraphTraversal<S, ? extends Property<E2>> 
properties(final String... propertyKeys) {
         this.asAdmin().getBytecode().addStep(Symbols.properties, propertyKeys);
@@ -492,7 +492,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param propertyKeys the properties to retrieve their value from
      * @param <E2>         the value type of the properties
      * @return the traversal with an appended {@link PropertiesStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#values-step";>Reference
 Documentation - Values Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#values-step";
 target="_blank">Reference Documentation - Values Step</a>
      */
     public default <E2> GraphTraversal<S, E2> values(final String... 
propertyKeys) {
         this.asAdmin().getBytecode().addStep(Symbols.values, propertyKeys);
@@ -506,7 +506,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param propertyKeys the properties to retrieve
      * @param <E2>         the value type of the returned properties
      * @return the traversal with an appended {@link PropertyMapStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#propertymap-step";>Reference
 Documentation - PropertyMap Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#propertymap-step";
 target="_blank">Reference Documentation - PropertyMap Step</a>
      */
     public default <E2> GraphTraversal<S, Map<String, E2>> propertyMap(final 
String... propertyKeys) {
         this.asAdmin().getBytecode().addStep(Symbols.propertyMap, 
propertyKeys);
@@ -520,7 +520,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param propertyKeys the properties to retrieve
      * @param <E2>         the value type of the returned properties
      * @return the traversal with an appended {@link PropertyMapStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#valuemap-step";>Reference
 Documentation - ValueMap Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#valuemap-step";
 target="_blank">Reference Documentation - ValueMap Step</a>
      */
     public default <E2> GraphTraversal<S, Map<String, E2>> valueMap(final 
String... propertyKeys) {
         this.asAdmin().getBytecode().addStep(Symbols.valueMap, propertyKeys);
@@ -535,7 +535,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param propertyKeys  the properties to retrieve
      * @param <E2>          the value type of the returned properties
      * @return the traversal with an appended {@link PropertyMapStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#valuemap-step";>Reference
 Documentation - ValueMap Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#valuemap-step";
 target="_blank">Reference Documentation - ValueMap Step</a>
      */
     public default <E2> GraphTraversal<S, Map<String, E2>> valueMap(final 
boolean includeTokens, final String... propertyKeys) {
         this.asAdmin().getBytecode().addStep(Symbols.valueMap, includeTokens, 
propertyKeys);
@@ -562,7 +562,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Map the {@link Property} to its {@link Property#key}.
      *
      * @return the traversal with an appended {@link PropertyKeyStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#key-step";>Reference
 Documentation - Key Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#key-step"; 
target="_blank">Reference Documentation - Key Step</a>
      */
     public default GraphTraversal<S, String> key() {
         this.asAdmin().getBytecode().addStep(Symbols.key);
@@ -573,7 +573,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Map the {@link Property} to its {@link Property#value}.
      *
      * @return the traversal with an appended {@link PropertyValueStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#value-step";>Reference
 Documentation - Value Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#value-step";
 target="_blank">Reference Documentation - Value Step</a>
      */
     public default <E2> GraphTraversal<S, E2> value() {
         this.asAdmin().getBytecode().addStep(Symbols.value);
@@ -584,7 +584,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Map the {@link Traverser} to its {@link Path} history via {@link 
Traverser#path}.
      *
      * @return the traversal with an appended {@link PathStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#path-step";>Reference
 Documentation - Path Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#path-step"; 
target="_blank">Reference Documentation - Path Step</a>
      */
     public default GraphTraversal<S, Path> path() {
         this.asAdmin().getBytecode().addStep(Symbols.path);
@@ -597,7 +597,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param matchTraversals the traversal that maintain variables which must 
hold for the life of the traverser
      * @param <E2>            the type of the obejcts bound in the variables
      * @return the traversal with an appended {@link MatchStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#match-step";>Reference
 Documentation - Match Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#match-step";
 target="_blank">Reference Documentation - Match Step</a>
      */
     public default <E2> GraphTraversal<S, Map<String, E2>> match(final 
Traversal<?, ?>... matchTraversals) {
         this.asAdmin().getBytecode().addStep(Symbols.match, matchTraversals);
@@ -609,7 +609,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param <E2> the sack value type
      * @return the traversal with an appended {@link SackStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#sack-step";>Reference
 Documentation - Sack Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#sack-step"; 
target="_blank">Reference Documentation - Sack Step</a>
      */
     public default <E2> GraphTraversal<S, E2> sack() {
         this.asAdmin().getBytecode().addStep(Symbols.sack);
@@ -621,7 +621,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * traverser.
      *
      * @return the traversal with an appended {@link LoopsStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#loops-step";>Reference
 Documentation - Loops Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#loops-step";
 target="_blank">Reference Documentation - Loops Step</a>
      */
     public default GraphTraversal<S, Integer> loops() {
         this.asAdmin().getBytecode().addStep(Symbols.loops);
@@ -632,7 +632,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Projects the current object in the stream into a {@code Map} that is 
keyed by the provided labels.
      *
      * @return the traversal with an appended {@link ProjectStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#project-step";>Reference
 Documentation - Project Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#project-step";
 target="_blank">Reference Documentation - Project Step</a>
      */
     public default <E2> GraphTraversal<S, Map<String, E2>> project(final 
String projectKey, final String... otherProjectKeys) {
         final String[] projectKeys = new String[otherProjectKeys.length + 1];
@@ -651,7 +651,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param otherSelectKeys the third+ keys to project
      * @param <E2>            the type of the objects projected
      * @return the traversal with an appended {@link SelectStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#select-step";>Reference
 Documentation - Select Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#select-step";
 target="_blank">Reference Documentation - Select Step</a>
      */
     public default <E2> GraphTraversal<S, Map<String, E2>> select(final Pop 
pop, final String selectKey1, final String selectKey2, String... 
otherSelectKeys) {
         final String[] selectKeys = new String[otherSelectKeys.length + 2];
@@ -670,7 +670,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param otherSelectKeys the third+ keys to project
      * @param <E2>            the type of the objects projected
      * @return the traversal with an appended {@link SelectStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#select-step";>Reference
 Documentation - Select Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#select-step";
 target="_blank">Reference Documentation - Select Step</a>
      */
     public default <E2> GraphTraversal<S, Map<String, E2>> select(final String 
selectKey1, final String selectKey2, String... otherSelectKeys) {
         final String[] selectKeys = new String[otherSelectKeys.length + 2];
@@ -687,7 +687,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param selectKey the key to project
      * @return the traversal with an appended {@link SelectStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#select-step";>Reference
 Documentation - Select Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#select-step";
 target="_blank">Reference Documentation - Select Step</a>
      */
     public default <E2> GraphTraversal<S, E2> select(final Pop pop, final 
String selectKey) {
         this.asAdmin().getBytecode().addStep(Symbols.select, pop, selectKey);
@@ -701,7 +701,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param selectKey the key to project
      * @return the traversal with an appended {@link SelectStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#select-step";>Reference
 Documentation - Select Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#select-step";
 target="_blank">Reference Documentation - Select Step</a>
      */
     public default <E2> GraphTraversal<S, E2> select(final String selectKey) {
         this.asAdmin().getBytecode().addStep(Symbols.select, selectKey);
@@ -713,7 +713,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param column the column to extract
      * @return the traversal with an appended {@link TraversalMapStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#select-step";>Reference
 Documentation - Select Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#select-step";
 target="_blank">Reference Documentation - Select Step</a>
      */
     public default <E2> GraphTraversal<S, Collection<E2>> select(final Column 
column) {
         this.asAdmin().getBytecode().addStep(Symbols.select, column);
@@ -725,7 +725,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * is not one of those types.
      *
      * @return the traversal with an appended {@link UnfoldStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#unfold-step";>Reference
 Documentation - Unfold Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#unfold-step";
 target="_blank">Reference Documentation - Unfold Step</a>
      */
     public default <E2> GraphTraversal<S, E2> unfold() {
         this.asAdmin().getBytecode().addStep(Symbols.unfold);
@@ -736,7 +736,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Rolls up objects in the stream into an aggregate list.
      *
      * @return the traversal with an appended {@link FoldStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#fold-step";>Reference
 Documentation - Fold Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#fold-step"; 
target="_blank">Reference Documentation - Fold Step</a>
      */
     public default GraphTraversal<S, List<E>> fold() {
         this.asAdmin().getBytecode().addStep(Symbols.fold);
@@ -750,7 +750,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * @param foldFunction the function to fold by where the first argument is 
the {@code seed} or the value returned from subsequent calss and
      *                     the second argument is the value from the stream
      * @return the traversal with an appended {@link FoldStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#fold-step";>Reference
 Documentation - Fold Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#fold-step"; 
target="_blank">Reference Documentation - Fold Step</a>
      */
     public default <E2> GraphTraversal<S, E2> fold(final E2 seed, final 
BiFunction<E2, E, E2> foldFunction) {
         this.asAdmin().getBytecode().addStep(Symbols.fold, seed, foldFunction);
@@ -762,7 +762,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * of traversers up to this point).
      *
      * @return the traversal with an appended {@link CountGlobalStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#count-step";>Reference
 Documentation - Count Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#count-step";
 target="_blank">Reference Documentation - Count Step</a>
      */
     public default GraphTraversal<S, Long> count() {
         this.asAdmin().getBytecode().addStep(Symbols.count);
@@ -774,7 +774,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * {@link Scope} (i.e. count the number of traversers up to this point).
      *
      * @return the traversal with an appended {@link CountGlobalStep} or 
{@link CountLocalStep} depending on the {@link Scope}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#count-step";>Reference
 Documentation - Count Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#count-step";
 target="_blank">Reference Documentation - Count Step</a>
      */
     public default GraphTraversal<S, Long> count(final Scope scope) {
         this.asAdmin().getBytecode().addStep(Symbols.count, scope);
@@ -786,7 +786,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * {@link Traverser#bulk} (i.e. sum the traverser values up to this point).
      *
      * @return the traversal with an appended {@link SumGlobalStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#sum-step";>Reference
 Documentation - Sum Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#sum-step"; 
target="_blank">Reference Documentation - Sum Step</a>
      */
     public default <E2 extends Number> GraphTraversal<S, E2> sum() {
         this.asAdmin().getBytecode().addStep(Symbols.sum);
@@ -798,7 +798,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * {@link Traverser#bulk} given the specified {@link Scope} (i.e. sum the 
traverser values up to this point).
      *
      * @return the traversal with an appended {@link SumGlobalStep} or {@link 
SumLocalStep} depending on the {@link Scope}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#sum-step";>Reference
 Documentation - Sum Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#sum-step"; 
target="_blank">Reference Documentation - Sum Step</a>
      */
     public default <E2 extends Number> GraphTraversal<S, E2> sum(final Scope 
scope) {
         this.asAdmin().getBytecode().addStep(Symbols.sum, scope);
@@ -809,7 +809,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Determines the largest value in the stream.
      *
      * @return the traversal with an appended {@link MaxGlobalStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#max-step";>Reference
 Documentation - Max Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#max-step"; 
target="_blank">Reference Documentation - Max Step</a>
      */
     public default <E2 extends Number> GraphTraversal<S, E2> max() {
         this.asAdmin().getBytecode().addStep(Symbols.max);
@@ -820,7 +820,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Determines the largest value in the stream given the {@link Scope}.
      *
      * @return the traversal with an appended {@link MaxGlobalStep} or {@link 
MaxLocalStep} depending on the {@link Scope}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#max-step";>Reference
 Documentation - Max Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#max-step"; 
target="_blank">Reference Documentation - Max Step</a>
      */
     public default <E2 extends Number> GraphTraversal<S, E2> max(final Scope 
scope) {
         this.asAdmin().getBytecode().addStep(Symbols.max, scope);
@@ -831,7 +831,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Determines the smallest value in the stream.
      *
      * @return the traversal with an appended {@link MinGlobalStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#min-step";>Reference
 Documentation - Min Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#min-step"; 
target="_blank">Reference Documentation - Min Step</a>
      */
     public default <E2 extends Number> GraphTraversal<S, E2> min() {
         this.asAdmin().getBytecode().addStep(Symbols.min);
@@ -842,7 +842,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Determines the smallest value in the stream given the {@link Scope}.
      *
      * @return the traversal with an appended {@link MinGlobalStep} or {@link 
MinLocalStep} depending on the {@link Scope}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#min-step";>Reference
 Documentation - Min Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#min-step"; 
target="_blank">Reference Documentation - Min Step</a>
      */
     public default <E2 extends Number> GraphTraversal<S, E2> min(final Scope 
scope) {
         this.asAdmin().getBytecode().addStep(Symbols.min, scope);
@@ -853,7 +853,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Determines the mean value in the stream.
      *
      * @return the traversal with an appended {@link MeanGlobalStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#mean-step";>Reference
 Documentation - Mean Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#mean-step"; 
target="_blank">Reference Documentation - Mean Step</a>
      */
     public default <E2 extends Number> GraphTraversal<S, E2> mean() {
         this.asAdmin().getBytecode().addStep(Symbols.mean);
@@ -864,7 +864,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Determines the mean value in the stream given the {@link Scope}.
      *
      * @return the traversal with an appended {@link MeanGlobalStep} or {@link 
MeanLocalStep} depending on the {@link Scope}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#mean-step";>Reference
 Documentation - Mean Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#mean-step"; 
target="_blank">Reference Documentation - Mean Step</a>
      */
     public default <E2 extends Number> GraphTraversal<S, E2> mean(final Scope 
scope) {
         this.asAdmin().getBytecode().addStep(Symbols.mean, scope);
@@ -876,7 +876,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * {@link #by()} modulators which help specify how the grouping should 
occur.
      *
      * @return the traversal with an appended {@link GroupStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#group-step";>Reference
 Documentation - Group Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#group-step";
 target="_blank">Reference Documentation - Group Step</a>
      */
     public default <K, V> GraphTraversal<S, Map<K, V>> group() {
         this.asAdmin().getBytecode().addStep(Symbols.group);
@@ -897,7 +897,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * object is the key and the value is the count.
      *
      * @return the traversal with an appended {@link GroupCountStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#groupcount-step";>Reference
 Documentation - GroupCount Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#groupcount-step";
 target="_blank">Reference Documentation - GroupCount Step</a>
      */
     public default <K> GraphTraversal<S, Map<K, Long>> groupCount() {
         this.asAdmin().getBytecode().addStep(Symbols.groupCount);
@@ -908,7 +908,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Aggregates the emanating paths into a {@link Tree} data structure.
      *
      * @return the traversal with an appended {@link TreeStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#tree-step";>Reference
 Documentation - Tree Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#tree-step"; 
target="_blank">Reference Documentation - Tree Step</a>
      */
     public default GraphTraversal<S, Tree> tree() {
         this.asAdmin().getBytecode().addStep(Symbols.tree);
@@ -920,7 +920,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param vertexLabel the label of the {@link Vertex} to add
      * @return the traversal with the {@link AddVertexStep} added
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addvertex-step";>Reference
 Documentation - AddVertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addvertex-step";
 target="_blank">Reference Documentation - AddVertex Step</a>
      */
     public default GraphTraversal<S, Vertex> addV(final String vertexLabel) {
         this.asAdmin().getBytecode().addStep(Symbols.addV, vertexLabel);
@@ -931,7 +931,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      * Adds a {@link Vertex} with a default vertex label.
      *
      * @return the traversal with the {@link AddVertexStep} added
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addvertex-step";>Reference
 Documentation - AddVertex Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addvertex-step";
 target="_blank">Reference Documentation - AddVertex Step</a>
      */
     public default GraphTraversal<S, Vertex> addV() {
         this.asAdmin().getBytecode().addStep(Symbols.addV);
@@ -956,7 +956,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param edgeLabel the label of the newly added edge
      * @return the traversal with the {@link AddEdgeStep} added
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addedge-step";>Reference
 Documentation - AddEdge Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addedge-step";
 target="_blank">Reference Documentation - AddEdge Step</a>
      */
     public default GraphTraversal<S, Edge> addE(final String edgeLabel) {
         this.asAdmin().getBytecode().addStep(Symbols.addE, edgeLabel);
@@ -969,7 +969,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param toStepLabel the step label of the incoming vertex
      * @return the traversal with the modified {@link AddEdgeStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addedge-step";>Reference
 Documentation - AddEdge Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addedge-step";
 target="_blank">Reference Documentation - AddEdge Step</a>
      */
     public default GraphTraversal<S, E> to(final String toStepLabel) {
         this.asAdmin().getBytecode().addStep(Symbols.to, toStepLabel);
@@ -983,7 +983,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param fromStepLabel the step label of the outgoing vertex
      * @return the traversal with the modified {@link AddEdgeStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addedge-step";>Reference
 Documentation - AddEdge Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addedge-step";
 target="_blank">Reference Documentation - AddEdge Step</a>
      */
     public default GraphTraversal<S, E> from(final String fromStepLabel) {
         this.asAdmin().getBytecode().addStep(Symbols.from, fromStepLabel);
@@ -997,7 +997,7 @@ public interface GraphTraversal<S, E> extends Traversal<S, 
E> {
      *
      * @param toVertex the traversal for selecting the incoming vertex
      * @return the traversal with the modified {@link AddEdgeStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addedge-step";>Reference
 Documentation - AddEdge Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addedge-step";
 target="_blank">Reference Documentation - AddEdge Step</a>
      */
     public default GraphTraversal<S, E> to(final Traversal<E, Vertex> 
toVertex) {
         this.asAdmin().getBytecode().addStep(Symbols.to, toVertex);
@@ -1011,7 +1011,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param fromVertex the traversal for selecting the outgoing vertex
      * @return the traversal with the modified {@link AddEdgeStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addedge-step";>Reference
 Documentation - AddEdge Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addedge-step";
 target="_blank">Reference Documentation - AddEdge Step</a>
      */
     public default GraphTraversal<S, E> from(final Traversal<E, Vertex> 
fromVertex) {
         this.asAdmin().getBytecode().addStep(Symbols.from, fromVertex);
@@ -1077,7 +1077,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param predicate the filter function to apply
      * @return the traversal with the {@link LambdaFilterStep} added
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";>Reference
 Documentation - General Steps</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";
 target="_blank">Reference Documentation - General Steps</a>
      */
     public default GraphTraversal<S, E> filter(final Predicate<Traverser<E>> 
predicate) {
         this.asAdmin().getBytecode().addStep(Symbols.filter, predicate);
@@ -1090,7 +1090,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param filterTraversal the filter traversal to apply
      * @return the traversal with the {@link TraversalFilterStep} added
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";>Reference
 Documentation - General Steps</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";
 target="_blank">Reference Documentation - General Steps</a>
      */
     public default GraphTraversal<S, E> filter(final Traversal<?, ?> 
filterTraversal) {
         this.asAdmin().getBytecode().addStep(Symbols.filter, filterTraversal);
@@ -1102,7 +1102,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param orTraversals filter traversals where at least one must be 
satisfied
      * @return the traversal with an appended {@link OrStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#or-step";>Reference
 Documentation - Or Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#or-step"; 
target="_blank">Reference Documentation - Or Step</a>
      */
     public default GraphTraversal<S, E> or(final Traversal<?, ?>... 
orTraversals) {
         this.asAdmin().getBytecode().addStep(Symbols.or, orTraversals);
@@ -1114,7 +1114,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param andTraversals filter traversals that must be satisfied
      * @return the traversal with an appended {@link AndStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#and-step";>Reference
 Documentation - And Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#and-step"; 
target="_blank">Reference Documentation - And Step</a>
      */
     public default GraphTraversal<S, E> and(final Traversal<?, ?>... 
andTraversals) {
         this.asAdmin().getBytecode().addStep(Symbols.and, andTraversals);
@@ -1126,7 +1126,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param injections the objects to add to the stream
      * @return the traversal with an appended {@link InjectStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#inject-step";>Reference
 Documentation - Inject Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#inject-step";
 target="_blank">Reference Documentation - Inject Step</a>
      *
      */
     public default GraphTraversal<S, E> inject(final E... injections) {
@@ -1140,7 +1140,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param scope       whether the deduplication is on the stream (global) 
or the current object (local).
      * @param dedupLabels if labels are provided, then the scope labels 
determine de-duplication. No labels implies current object.
      * @return the traversal with an appended {@link DedupGlobalStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#dedup-step";>Reference
 Documentation - Dedup Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#dedup-step";
 target="_blank">Reference Documentation - Dedup Step</a>
      */
     public default GraphTraversal<S, E> dedup(final Scope scope, final 
String... dedupLabels) {
         this.asAdmin().getBytecode().addStep(Symbols.dedup, scope, 
dedupLabels);
@@ -1152,7 +1152,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param dedupLabels if labels are provided, then the scoped object's 
labels determine de-duplication. No labels implies current object.
      * @return the traversal with an appended {@link DedupGlobalStep}.
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#dedup-step";>Reference
 Documentation - Dedup Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#dedup-step";
 target="_blank">Reference Documentation - Dedup Step</a>
      */
     public default GraphTraversal<S, E> dedup(final String... dedupLabels) {
         this.asAdmin().getBytecode().addStep(Symbols.dedup, dedupLabels);
@@ -1165,9 +1165,9 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param startKey the key containing the object to filter
      * @param predicate the filter to apply
      * @return the traversal with an appended {@link WherePredicateStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#where-step";>Reference
 Documentation - Where Step</a>
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-match";>Reference
 Documentation - Where with Match</a>
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-select";>Reference
 Documentation - Where with Select</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#where-step";
 target="_blank">Reference Documentation - Where Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-match";
 target="_blank">Reference Documentation - Where with Match</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-select";
 target="_blank">Reference Documentation - Where with Select</a>
      */
     public default GraphTraversal<S, E> where(final String startKey, final 
P<String> predicate) {
         this.asAdmin().getBytecode().addStep(Symbols.where, startKey, 
predicate);
@@ -1179,9 +1179,9 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param predicate the filter to apply
      * @return the traversal with an appended {@link WherePredicateStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#where-step";>Reference
 Documentation - Where Step</a>
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-match";>Reference
 Documentation - Where with Match</a>
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-select";>Reference
 Documentation - Where with Select</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#where-step";
 target="_blank">Reference Documentation - Where Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-match";
 target="_blank">Reference Documentation - Where with Match</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-select";
 target="_blank">Reference Documentation - Where with Select</a>
      */
     public default GraphTraversal<S, E> where(final P<String> predicate) {
         this.asAdmin().getBytecode().addStep(Symbols.where, predicate);
@@ -1193,9 +1193,9 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param whereTraversal the filter to apply
      * @return the traversal with an appended {@link WherePredicateStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#where-step";>Reference
 Documentation - Where Step</a>
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-match";>Reference
 Documentation - Where with Match</a>
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-select";>Reference
 Documentation - Where with Select</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#where-step";
 target="_blank">Reference Documentation - Where Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-match";
 target="_blank">Reference Documentation - Where with Match</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#using-where-with-select";
 target="_blank">Reference Documentation - Where with Select</a>
      */
     public default GraphTraversal<S, E> where(final Traversal<?, ?> 
whereTraversal) {
         this.asAdmin().getBytecode().addStep(Symbols.where, whereTraversal);
@@ -1210,7 +1210,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param propertyKey the key of the property to filter on
      * @param predicate the filter to apply to the key's value
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> has(final String propertyKey, final 
P<?> predicate) {
         this.asAdmin().getBytecode().addStep(Symbols.has, propertyKey, 
predicate);
@@ -1223,7 +1223,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param accessor the {@link T} accessor of the property to filter on
      * @param predicate the filter to apply to the key's value
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> has(final T accessor, final P<?> 
predicate) {
         this.asAdmin().getBytecode().addStep(Symbols.has, accessor, predicate);
@@ -1236,7 +1236,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param propertyKey the key of the property to filter on
      * @param value the value to compare the property value to for equality
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> has(final String propertyKey, final 
Object value) {
         if (value instanceof P)
@@ -1255,7 +1255,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param accessor the {@link T} accessor of the property to filter on
      * @param value the value to compare the accessor value to for equality
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> has(final T accessor, final Object 
value) {
         if (value instanceof P)
@@ -1275,7 +1275,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param propertyKey the key of the property to filter on
      * @param predicate the filter to apply to the key's value
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> has(final String label, final String 
propertyKey, final P<?> predicate) {
         this.asAdmin().getBytecode().addStep(Symbols.has, label, propertyKey, 
predicate);
@@ -1290,7 +1290,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param propertyKey the key of the property to filter on
      * @param value the value to compare the accessor value to for equality
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> has(final String label, final String 
propertyKey, final Object value) {
         this.asAdmin().getBytecode().addStep(Symbols.has, label, propertyKey, 
value);
@@ -1304,7 +1304,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param accessor the {@link T} accessor of the property to filter on
      * @param propertyTraversal the traversal to filter the accessor value by
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> has(final T accessor, final 
Traversal<?, ?> propertyTraversal) {
         this.asAdmin().getBytecode().addStep(Symbols.has, accessor, 
propertyTraversal);
@@ -1333,7 +1333,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param propertyKey the key of the property to filter on for existence
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> has(final String propertyKey) {
         this.asAdmin().getBytecode().addStep(Symbols.has, propertyKey);
@@ -1345,7 +1345,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param propertyKey the key of the property to filter on for existence
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> hasNot(final String propertyKey) {
         this.asAdmin().getBytecode().addStep(Symbols.hasNot, propertyKey);
@@ -1358,7 +1358,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param label the label of the {@link Element}
      * @param otherLabels additional labels of the {@link Element}
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> hasLabel(final String label, final 
String... otherLabels) {
         final String[] labels = new String[otherLabels.length + 1];
@@ -1373,7 +1373,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param predicate the filter to apply to the label of the {@link Element}
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> hasLabel(final P<String> predicate) {
         this.asAdmin().getBytecode().addStep(Symbols.hasLabel, predicate);
@@ -1386,7 +1386,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param id the identifier of the {@link Element}
      * @param otherIds additional identifiers of the {@link Element}
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> hasId(final Object id, final Object... 
otherIds) {
         if (id instanceof P)
@@ -1417,7 +1417,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param predicate the filter to apply to the identifier of the {@link 
Element}
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> hasId(final P<Object> predicate) {
         this.asAdmin().getBytecode().addStep(Symbols.hasId, predicate);
@@ -1430,7 +1430,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param label the key of the {@link Element}
      * @param otherLabels additional key of the {@link Element}
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> hasKey(final String label, final 
String... otherLabels) {
         final String[] labels = new String[otherLabels.length + 1];
@@ -1445,7 +1445,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param predicate the filter to apply to the key of the {@link Element}
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> hasKey(final P<String> predicate) {
         this.asAdmin().getBytecode().addStep(Symbols.hasKey, predicate);
@@ -1458,7 +1458,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param value the value of the {@link Element}
      * @param otherValues additional values of the {@link Element}
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> hasValue(final Object value, final 
Object... otherValues) {
         if (value instanceof P)
@@ -1489,7 +1489,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param predicate the filter to apply to the value of the {@link Element}
      * @return the traversal with an appended {@link HasStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step";>Reference
 Documentation - Has Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#has-step"; 
target="_blank">Reference Documentation - Has Step</a>
      */
     public default GraphTraversal<S, E> hasValue(final P<Object> predicate) {
         this.asAdmin().getBytecode().addStep(Symbols.hasValue, predicate);
@@ -1640,7 +1640,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * to actually take place. In most cases, iteration is best accomplished 
with {@code g.V().drop().iterate()}.
      *
      * @return the traversal with the {@link DropStep} added
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#drop-step";>Reference
 Documentation - Drop Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#drop-step"; 
target="_blank">Reference Documentation - Drop Step</a>
      */
     public default GraphTraversal<S, E> drop() {
         this.asAdmin().getBytecode().addStep(Symbols.drop);
@@ -1654,7 +1654,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param consumer the operation to perform at this step in relation to 
the {@link Traverser}
      * @return the traversal with an appended {@link LambdaSideEffectStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";>Reference
 Documentation - General Steps</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";
 target="_blank">Reference Documentation - General Steps</a>
      */
     public default GraphTraversal<S, E> sideEffect(final 
Consumer<Traverser<E>> consumer) {
         this.asAdmin().getBytecode().addStep(Symbols.sideEffect, consumer);
@@ -1666,7 +1666,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param sideEffectTraversal the operation to perform at this step in 
relation to the {@link Traverser}
      * @return the traversal with an appended {@link TraversalSideEffectStep}
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";>Reference
 Documentation - General Steps</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";
 target="_blank">Reference Documentation - General Steps</a>
      */
     public default GraphTraversal<S, E> sideEffect(final Traversal<?, ?> 
sideEffectTraversal) {
         this.asAdmin().getBytecode().addStep(Symbols.sideEffect, 
sideEffectTraversal);
@@ -1755,7 +1755,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param key         the key for the property
      * @param value       the value for the property
      * @param keyValues   any meta properties to be assigned to this property
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addproperty-step";>AddProperty
 Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addproperty-step";
 target="_blank">AddProperty Step</a>
      */
     public default GraphTraversal<S, E> property(final 
VertexProperty.Cardinality cardinality, final Object key, final Object value, 
final Object... keyValues) {
         if (null == cardinality)
@@ -1787,7 +1787,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      * @param key       the key for the property
      * @param value     the value for the property
      * @param keyValues any meta properties to be assigned to this property
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addproperty-step";>AddProperty
 Step</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#addproperty-step";
 target="_blank">AddProperty Step</a>
      */
     public default GraphTraversal<S, E> property(final Object key, final 
Object value, final Object... keyValues) {
         return key instanceof VertexProperty.Cardinality ?
@@ -1805,7 +1805,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param branchTraversal the traversal to branch the {@link Traverser} to
      * @return the {@link Traversal} with the {@link BranchStep} added
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";>Reference
 Documentation - General Steps</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";
 target="_blank">Reference Documentation - General Steps</a>
      */
     public default <M, E2> GraphTraversal<S, E2> branch(final Traversal<?, M> 
branchTraversal) {
         this.asAdmin().getBytecode().addStep(Symbols.branch, branchTraversal);
@@ -1819,7 +1819,7 @@ public interface GraphTraversal<S, E> extends 
Traversal<S, E> {
      *
      * @param function the traversal to branch the {@link Traverser} to
      * @return the {@link Traversal} with the {@link BranchStep} added
-     * @see <a target="_blank" 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";>Reference
 Documentation - General Steps</a>
+     * @see <a 
href="http://tinkerpop.apache.org/docs/${project.version}/reference/#general-steps";
 target="_blank">Reference Documentation - General Steps</a>
      */
     public default <M, E2> GraphTraversal<S, E2> branch(final 
Function<Traverser<E>, M> function) {
         this.asAdmin().getBytecode().addStep(Symbols.branch, function);

Reply via email to