All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.neoforged.camelot.script.ScriptInformation Maven / Gradle / Ivy

There is a newer version: 1.0.177
Show newest version
package net.neoforged.camelot.script;

import org.kohsuke.args4j.spi.OptionHandler;

import java.util.List;

/**
 * Tracks static information about the script.
 *
 * @param description the description of the script. This is the {@code description} constant value declared inside the script.
 * @param options     the non-positional cmd-line options
 * @param arguments   the position cmd-line arguments
 */
public record ScriptInformation(
        String description,
        List options,
        List arguments
) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy