ru.cwcode.commands.preconditions.CommandPreconditionResult Maven / Gradle / Ivy
package ru.cwcode.commands.preconditions;
import ru.cwcode.commands.Command;
import ru.cwcode.commands.preconditions.processor.PreconditionResult;
public class CommandPreconditionResult {
Command command;
PreconditionResult result;
public CommandPreconditionResult(Command command, PreconditionResult result) {
this.command = command;
this.result = result;
}
public Command getCommand() {
return command;
}
public PreconditionResult getResult() {
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy