TotalProgressEvent Class — spring-boot Architecture
Architecture documentation for the TotalProgressEvent class in TotalProgressEvent.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/TotalProgressEvent.java lines 28–49
public class TotalProgressEvent {
private final int percent;
/**
* Create a new {@link TotalProgressEvent} with a specific percent value.
* @param percent the progress as a percentage
*/
public TotalProgressEvent(int percent) {
Assert.isTrue(percent >= 0 && percent <= 100, "'percent' must be in the range 0 to 100");
this.percent = percent;
}
/**
* Return the total progress.
* @return the total progress
*/
public int getPercent() {
return this.percent;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free