Skip to content

Commit

Permalink
Merge pull request #2797 from ger-benjamin/improve-processor-doc
Browse files Browse the repository at this point in the history
Improve/fix processors doc
  • Loading branch information
sbrunner authored Feb 24, 2023
2 parents dcffab9 + f239d5a commit 78350f2
Showing 1 changed file with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public final BiMap<String, String> getInputMapperBiMap() {
}

/**
* The prefix to apply to each value. This provides a simple way to make all output values have unique
* values.
* The prefix to apply to each value. This provides a simple way to make all input and output values
* have unique values.
*
* @param prefix the new prefix
*/
Expand All @@ -72,7 +72,7 @@ public final String getInputPrefix() {
}

/**
* The prefix to apply to each input value. This provides a simple way to make all output values have
* The prefix to apply to each input value. This provides a simple way to make all input values have
* unique values.
*
* @param inputPrefix the new prefix
Expand Down Expand Up @@ -110,7 +110,10 @@ public void toString(final StringBuilder builder, final int indent, final String
}

/**
* The input mapper.
* <p>The input mapper. See "Processors" to know more. Example:</p>
* <pre><code>
* inputMapper: {attributeName: defaultInputParamName}
* </code></pre>
*
* @param inputMapper the values.
*/
Expand All @@ -125,7 +128,10 @@ public final BiMap<String, String> getOutputMapperBiMap() {
}

/**
* The output mapper.
* <p>The output mapper. See "Processors" to know more. Example:</p>
* <pre><code>
* outputMapper: {defaultOutputName: templateParamName}
* </code></pre>
*
* @param outputMapper the values.
*/
Expand Down

0 comments on commit 78350f2

Please sign in to comment.