ArgHandlingCommand Class — spring-boot Architecture
Architecture documentation for the ArgHandlingCommand class in CommandRunnerIntegrationTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
cli/spring-boot-cli/src/test/java/org/springframework/boot/cli/command/CommandRunnerIntegrationTests.java lines 60–74
static class ArgHandlingCommand extends AbstractCommand {
private String @Nullable [] args;
ArgHandlingCommand() {
super("args", "");
}
@Override
public ExitStatus run(String... args) throws Exception {
this.args = args;
return ExitStatus.OK;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free