CPD Results

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

Duplications

File Line
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 383
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 414
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 445
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 476
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 507
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 308
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 383
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 414
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 445
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 476
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 507
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 176
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 202
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 {