Address javadoc violations

This commit is contained in:
NotMyFault
2021-09-21 17:40:53 +02:00
parent 1de3a6b54a
commit 3617a29ba8
17 changed files with 22 additions and 25 deletions

View File

@ -91,7 +91,7 @@ public class TransformFactory extends AbstractFactory<ResettableExtent> {
/**
* Parses a transform without considering parsing through the {@link RichTransformParser}, therefore not accepting
* "richer" parsing where & and , are used. Exists to prevent stack overflows.
* "richer" parsing where &amp; and , are used. Exists to prevent stack overflows.
*
* @param input input string
* @param context input context

View File

@ -21,7 +21,7 @@ public abstract class FaweParser<T> extends InputParser<T> implements AliasedPar
/**
* Parse an input into a list of {@link java.util.Map.Entry} of {@link ParseEntry} and a list of the given arguments, where
* arguments are given in square brackets, e.g. {@code #offset[2][10][2]}. Different entries may be separated by , or &
* arguments are given in square brackets, e.g. {@code #offset[2][10][2]}. Different entries may be separated by , or &amp;
* (OR and AND respectively)
*
* @param toParse the string to parse
@ -100,7 +100,7 @@ public abstract class FaweParser<T> extends InputParser<T> implements AliasedPar
/**
* Gives if the parsed entry was appended to the original input as an AND.
*
* @return if appended to input with '&' rather than ','
* @return if appended to input with '&amp;' rather than ','
*/
public boolean isAnd() {
return and;

View File

@ -34,7 +34,7 @@ import java.util.stream.Collectors;
import java.util.stream.Stream;
/**
* Attempts to parse masks given rich inputs, allowing for & and ,. Also allows for nested masks
* Attempts to parse masks given rich inputs, allowing for &amp; and ,. Also allows for nested masks
*/
public class RichMaskParser extends FaweParser<Mask> {

View File

@ -24,7 +24,7 @@ import java.util.List;
import java.util.Map;
/**
* Attempts to parse transforms given rich inputs, allowing for & and ,. Also allows for nested transforms
* Attempts to parse transforms given rich inputs, allowing for &amp; and ,. Also allows for nested transforms
*/
public class RichTransformParser extends FaweParser<ResettableExtent> {