mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-12 08:08:34 +00:00
Address javadoc violations
This commit is contained in:
@ -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 & and , are used. Exists to prevent stack overflows.
|
||||
*
|
||||
* @param input input string
|
||||
* @param context input context
|
||||
|
@ -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 &
|
||||
* (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 '&' rather than ','
|
||||
*/
|
||||
public boolean isAnd() {
|
||||
return and;
|
||||
|
@ -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 & and ,. Also allows for nested masks
|
||||
*/
|
||||
public class RichMaskParser extends FaweParser<Mask> {
|
||||
|
||||
|
@ -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 & and ,. Also allows for nested transforms
|
||||
*/
|
||||
public class RichTransformParser extends FaweParser<ResettableExtent> {
|
||||
|
||||
|
Reference in New Issue
Block a user