Skip to content

Commit

Permalink
Issue #48 Split Mandelbrot-Tab into Mandelbrot-Julia and Mandelbrot-Zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswoehlke committed Oct 11, 2020
1 parent c47cce5 commit ec6edfa
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,32 @@ public static class Control {
}
}

////@Validated
@ToString
public static class MandelbrotZoom {

@Valid @Getter @Setter public View view = new View();
@Valid @Getter @Setter public Control control = new Control();

////@Validated
@ToString
public static class View {
@NotBlank @Getter @Setter private String title;
@NotBlank @Getter @Setter private String subtitle;
@NotBlank @Getter @Setter private String buttonsZoom;
@NotBlank @Getter @Setter private String buttonsZoomOut;
@NotBlank @Getter @Setter private String buttonsSwitch;
@NotBlank @Getter @Setter private String buttonsZoomLabel;
@NotBlank @Getter @Setter private String buttonsLabel;
}

////@Validated
@ToString
public static class Control {
@NotNull @Getter @Setter private Integer threadSleepTime;
}
}

////@Validated
@ToString
public static class SimulatedEvolution {
Expand Down

0 comments on commit ec6edfa

Please sign in to comment.