Uses of Interface
org.refcodes.command.Command
-
Uses of Command in org.refcodes.command
Subinterfaces of Command in org.refcodes.command Modifier and Type Interface Description interfaceUndoable<CTX,RET,E extends Exception>Classes in org.refcodes.command that implement Command Modifier and Type Class Description classAbstractCommand<CTX,RET,E extends Exception>TheAbstractCommandimplements theUndoableinterface.classAbstractUndoable<CTX,RET,E extends Exception>TheAbstractUndoableimplements theUndoableinterface.Methods in org.refcodes.command that return Command Modifier and Type Method Description Command<CTX,R,E>CommandAccessor. getCommand()Retrieves the command from the command property.default Command<CTX,R,E>CommandAccessor.CommandProperty. letCommand(Command<CTX,R,E> aCommand)This method stores and passes through the given argument, which is very useful for builder APIs: Sets the givenCommand(setter) as ofCommandAccessor.CommandMutator.setCommand(Command)and returns the very same value (getter).Methods in org.refcodes.command with parameters of type Command Modifier and Type Method Description default Command<CTX,R,E>CommandAccessor.CommandProperty. letCommand(Command<CTX,R,E> aCommand)This method stores and passes through the given argument, which is very useful for builder APIs: Sets the givenCommand(setter) as ofCommandAccessor.CommandMutator.setCommand(Command)and returns the very same value (getter).voidCommandAccessor.CommandMutator. setCommand(Command<CTX,R,E> aCommand)Sets the command for the command property.BCommandAccessor.CommandBuilder. withCommand(Command<CTX,R,E> aCommand)Sets the command for the command property.