CPD Results

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

Duplications

File Line
info/magnolia/ui/vaadin/gwt/client/connector/PageEditorState.java 84
info/magnolia/ui/vaadin/gwt/client/shared/PageEditorParameters.java 101
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public PlatformType getPlatformType() {
        return platformType;
    }

    public void setPlatformType(PlatformType platformType) {
        this.platformType = platformType;
    }

    public AbstractElement getSelectedElement() {
        return selectedElement;
    }

    public void setSelectedElement(AbstractElement selectedElement) {
        this.selectedElement = selectedElement;
    }

    public void setI18nKeys(Map<String, String> i18nKeys) {
        this.i18nKeys = i18nKeys;
    }

    public Map<String, String> getI18nKeys() {
        return i18nKeys;
    }
}