CommandGroup

public abstract class CommandGroup extends Command

A type of command that uses multiple commands, joining all their requirements.

Parameters

requireJoined

whether the requirements of the commands should not intersect.

See also

Inheritors

Constructors

Link copied to clipboard
public CommandGroup CommandGroup(Boolean requireJoined, Array<? extends Command> commands, Boolean isInterruptable)
public CommandGroup CommandGroup(Boolean requireJoined, Array<? extends Command> commands)
public CommandGroup CommandGroup(Array<? extends Command> commands)

Properties

Link copied to clipboard

Whether this command can be interrupted by another command.

Link copied to clipboard
private final Set<Component> requirements

The set of components that this command uses.

Functions

Link copied to clipboard
public abstract Unit add(Command command)

Adds a command to this group.

public final Unit add(Runnable runnable)

Adds a runnable to this group.

Link copied to clipboard
public final Set<Component> getRequirements()

The set of components that this command uses.

Link copied to clipboard

Whether this command can be interrupted by another command.

Link copied to clipboard
public Unit setInterruptable(Boolean isInterruptable)

Whether this command can be interrupted by another command.