CPD Results

The following document contains the results of PMD's CPD 6.28.0.

Duplications

File Line
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 380
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 411
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 442
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 473
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 504
    public static class Kochsnowflake {

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

        //@Validated
        @ToString
        public static class View {
            @Valid @Getter @Setter public Neighborhood neighborhood = new Neighborhood();
            @NotBlank @Getter @Setter private String title;
            @NotBlank @Getter @Setter private String subtitle;

            //@Validated
            @ToString
            public static class Neighborhood {
                @NotBlank @Getter @Setter private String title;
                @NotBlank @Getter @Setter private String typeVonNeumann;
                @NotBlank @Getter @Setter private String typeMoore;
                @NotBlank @Getter @Setter private String typeWoehlke;
            }
        }

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

    @ToString
    public static class Samegame {
File Line
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 305
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 380
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 411
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 442
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 473
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 504
    public static class Cca {

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

        //@Validated
        @ToString
        public static class View {

            @Valid @Getter @Setter public Neighborhood neighborhood = new Neighborhood();
            @NotBlank @Getter @Setter private String title;
            @NotBlank @Getter @Setter private String subtitle;

            //@Validated
            @ToString
            public static class Neighborhood {
                @NotBlank @Getter @Setter private String title;
                @NotBlank @Getter @Setter private String typeVonNeumann;
                @NotBlank @Getter @Setter private String typeMoore;
                @NotBlank @Getter @Setter private String typeWoehlke;
            }
        }

        ////@Validated
        @ToString
        public static class Control {
            @NotNull  @Getter @Setter private Integer threadSleepTime;
File Line
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 173
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 199
    public static class Mandelbrot {

        @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 MandelbrotZoom {