Skip to content

Commit f670f2f

Browse files
committed
OpBuilder: update @see links for static methods
1 parent f3fd089 commit f670f2f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

  • scijava/scijava-ops-api/templates/main/java/org/scijava/ops/api

scijava/scijava-ops-api/templates/main/java/org/scijava/ops/api/OpBuilder.vm

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -959,8 +959,8 @@ public class OpBuilder {
959959
*
960960
* @throws org.scijava.ops.api.features.OpMatchingException if the Op request cannot be satisfied.
961961
*
962-
* @see OpBuilder#matchComputer - For a reusable Op to process pre-allocated outputs without re-matching.
963-
#if ( $arity > 0 ) * @see OpBuilder#$matchName.call($arity, 1) - For a reusable Op that modifies a provided input parameter "in place."
962+
* @see <a href="#[[#matchComputer]]#(org.scijava.ops.api.OpEnvironment, java.lang.String#foreach( $i in [1..$arity] ), org.scijava.types.Nil#end, org.scijava.types.Nil)" title="For a reusable Op to process pre-allocated outputs without re-matching.">OpBuilder.matchComputer(OpEnvironment, String#foreach( $i in [1..$arity] ), Nil#end, Nil)</a>
963+
#if ( $arity > 0 ) * @see <a href="#[[#]]#$matchName.call($arity, 1)(org.scijava.ops.api.OpEnvironment, java.lang.String#foreach( $i in [1..$arity] ), org.scijava.types.Nil#end)" title="For a reusable Op that modifies a provided input parameter in-place.">OpBuilder.$matchName.call($arity, 1)(OpEnvironment, String#foreach( $i in [1..$arity] ), Nil#end)</a>
964964
#end
965965
*/
966966
@SuppressWarnings({ "unchecked" })
@@ -1013,8 +1013,8 @@ public class OpBuilder {
10131013
*
10141014
* @throws org.scijava.ops.api.features.OpMatchingException if the Op request cannot be satisfied.
10151015
*
1016-
* @see OpBuilder#matchFunction - For a reusable Op that generates output instances based on its inputs.
1017-
#if ( $arity > 0 ) * @see OpBuilder#$matchName.call($arity, 1) - For a reusable Op that modifies a provided input parameter "in place."
1016+
* @see <a href="#[[#matchFunction]]#(org.scijava.ops.api.OpEnvironment, java.lang.String#foreach( $i in [1..$arity] ), org.scijava.types.Nil#end, org.scijava.types.Nil)" title="For a reusable Op that generates output instances based on its inputs.">OpBuilder.matchFunction(OpEnvironment, String#foreach( $i in [1..$arity] ), Nil#end, Nil)</a>
1017+
#if ( $arity > 0 ) * @see <a href="#[[#]]#$matchName.call($arity, 1)(org.scijava.ops.api.OpEnvironment, java.lang.String#foreach( $i in [1..$arity] ), org.scijava.types.Nil#end)" title="For a reusable Op that modifies a provided input parameter in-place.">OpBuilder.$matchName.call($arity, 1)(OpEnvironment, String#foreach( $i in [1..$arity] ), Nil#end)</a>
10181018
#end
10191019
*/
10201020
@SuppressWarnings("unchecked")
@@ -1066,14 +1066,14 @@ public class OpBuilder {
10661066
#foreach($arity in $arities)
10671067
#foreach($a in [1..$arity])
10681068
/**
1069-
* Static utility method to match an {@link org.scijava.function.Inplaces} op with $arity input#if ( $arity != 1 )s#end, modifying the $a#if ( $a == 1 )st#elseif ( $a == 2 )nd#elseif ( $a == 3 )rd#{else}th#end input in place.
1069+
* Static utility method to match an {@link org.scijava.function.Inplaces} op with $arity input#if ( $arity != 1 )s#end, modifying the $a#if ( $a == 1 )st#elseif ( $a == 2 )nd#elseif ( $a == 3 )rd#{else}th#end input in-place.
10701070
*
10711071
* @return An instance of the matched op, e.g. for reuse.
10721072
*
10731073
* @throws org.scijava.ops.api.features.OpMatchingException if the Op request cannot be satisfied.
10741074
*
1075-
* @see OpBuilder#matchComputer - For a reusable Op to process pre-allocated outputs without re-matching.
1076-
* @see OpBuilder#matchFunction - For a reusable Op that generates output instances based on its inputs.
1075+
* @see <a href="#[[#matchComputer]]#(org.scijava.ops.api.OpEnvironment, java.lang.String#foreach( $i in [1..$arity] ), org.scijava.types.Nil#end, org.scijava.types.Nil)" title="For a reusable Op to process pre-allocated outputs without re-matching.">OpBuilder.matchComputer(OpEnvironment, String#foreach( $i in [1..$arity] ), Nil#end, Nil)</a>
1076+
* @see <a href="#[[#matchFunction]]#(org.scijava.ops.api.OpEnvironment, java.lang.String#foreach( $i in [1..$arity] ), org.scijava.types.Nil#end, org.scijava.types.Nil)" title="For a reusable Op that generates output instances based on its inputs.">OpBuilder.matchFunction(OpEnvironment, String#foreach( $i in [1..$arity] ), Nil#end, Nil)</a>
10771077
*/
10781078
@SuppressWarnings({ "unchecked" })
10791079
public static $inplaceGenerics.call($arity, $a) $inplaceType.call($arity, $a)$inplaceGenerics.call($arity, $a) $matchName.call($arity, $a)(final OpEnvironment env, final String opName, $matchParams.call($arity, $a))

0 commit comments

Comments
 (0)