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 258
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 290
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 322
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 354
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 386
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 418
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 {
            @NotBlank @Getter @Setter private String title;
            @NotBlank @Getter @Setter private String subtitle;

            @Valid @Getter @Setter public Neighborhood neighborhood = new Neighborhood();

            //@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 182
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 258
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 290
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 322
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 354
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 386
org/woehlke/computer/kurzweil/application/ComputerKurzweilProperties.java 418
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 {

            @NotBlank @Getter @Setter private String title;
            @NotBlank @Getter @Setter private String subtitle;

            @Valid @Getter @Setter public Neighborhood neighborhood = new Neighborhood();

            //@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;