fabric: javadoc cleanup

This commit is contained in:
jmp 2021-03-12 13:28:51 -08:00 committed by Jason
parent 488ea8f9d8
commit 65bb4d7a5d
45 changed files with 649 additions and 211 deletions

View file

@ -39,6 +39,7 @@ import static java.util.Objects.requireNonNull;
*
* @param <K> the Cloud argument parser type
* @param <S> the brigadier-native sender type
* @since 1.5.0
*/
public interface BrigadierMappingBuilder<K extends ArgumentParser<?, ?>, S> {

View file

@ -39,6 +39,8 @@ import java.util.Queue;
*
* <p>This can be implemented either by wrapping an existing {@link StringReader} instance, or extending {@link StringReader}
* at its creation time to implement this interface.</p>
*
* @since 1.5.0
*/
public interface StringReaderAsQueue extends Queue<String> {

View file

@ -49,6 +49,7 @@ import static java.util.Objects.requireNonNull;
*
* @param <C> the sender type
* @param <T> the value type of the argument
* @since 1.5.0
*/
public final class WrappedBrigadierParser<C, T> implements ArgumentParser<C, T> {
public static final String COMMAND_CONTEXT_BRIGADIER_NATIVE_SENDER = "_cloud_brigadier_native_sender";