CPD Results

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

Duplications

File Line
info/magnolia/ui/vaadin/gwt/client/connector/PageEditorState.java 58
info/magnolia/ui/vaadin/gwt/client/shared/PageEditorParameters.java 66
    public void setContextPath(String contextPath) {
        this.contextPath = contextPath;
    }

    public void setNodePath(String nodePath) {
        this.nodePath = nodePath;
    }

    public void setPreview(boolean preview) {
        this.preview = preview;
    }

    public String getContextPath() {
        return contextPath;
    }

    public String getNodePath() {
        return nodePath;
    }

    public boolean isPreview() {
        return preview;
    }

    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;
    }
}