Axis domainAxis = null; if (plot instanceof CategoryPlot) { CategoryPlot p = (CategoryPlot) plot; domainAxis = p.getDomainAxis(); } else if (plot instanceof XYPlot) { XYPlot p = (XYPlot) plot; domainAxis = p.getDomainAxis(); } if (domainAxis != null) { this.domainAxisPropertyPanel.setAxisProperties(domainAxis); }
Axis rangeAxis = null; if (plot instanceof CategoryPlot) { CategoryPlot p = (CategoryPlot) plot; rangeAxis = p.getRangeAxis(); } else if (plot instanceof XYPlot) { XYPlot p = (XYPlot) plot; rangeAxis = p.getRangeAxis(); } if (rangeAxis != null) { this.rangeAxisPropertyPanel.setAxisProperties(rangeAxis); }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/editor/DefaultPlotEditor.java File path: /jfreechart-1.0.10/src/org/jfree/chart/editor/DefaultPlotEditor.java
Method name: void updatePlotProperties(Plot) Method name: void updatePlotProperties(Plot)
Number of AST nodes: 9 Number of AST nodes: 9
1
Axis domainAxis = null;
1
Axis rangeAxis = null;
2
            if (plot instanceof CategoryPlot) {
2
            if (plot instanceof CategoryPlot) {
3
                CategoryPlot p = (CategoryPlot) plot;
3
                CategoryPlot p = (CategoryPlot) plot;
4
                domainAxis = p.getDomainAxis();
4
                rangeAxis = p.getRangeAxis();
5
            }
5
            }
6
            else if (plot instanceof XYPlot) {
6
            else if (plot instanceof XYPlot) {
7
                XYPlot p = (XYPlot) plot;
7
                XYPlot p = (XYPlot) plot;
8
                domainAxis = p.getDomainAxis();
8
                rangeAxis = p.getRangeAxis();
9
            }
9
            }
10
            if (domainAxis != null) {
10
            if (rangeAxis != null) {
11
                this.domainAxisPropertyPanel.setAxisProperties(domainAxis);
11
                this.rangeAxisPropertyPanel.setAxisProperties(rangeAxis);
12
            }
12
            }
Summary
Number of common nesting structure subtrees1
Number of refactorable cases1
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)1.0
Clones locationClones are in the same method
Number of node comparisons38
  1. {Refactorable}
    Mapping Summary
    Number of mapped statements9
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)109.3
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    6
    Axis domainAxis = null;
    6
    Axis domainAxis = null;
    16
    Axis rangeAxis = null;
    Differences
    Expression1Expression2Difference
    domainAxisrangeAxisVARIABLE_NAME_MISMATCH
    16
    Axis rangeAxis = null;
    7
    if (plot instanceof CategoryPlot)
    17
    if (plot instanceof CategoryPlot)
    8
    CategoryPlot p = (CategoryPlot)plot;
    18
    CategoryPlot p = (CategoryPlot)plot;
    9
    domainAxis = p.getDomainAxis();
    9
    domainAxis = p.getDomainAxis();
    19
    rangeAxis = p.getRangeAxis();
    Differences
    Expression1Expression2Difference
    domainAxisrangeAxisVARIABLE_NAME_MISMATCH
    getDomainAxisgetRangeAxisMETHOD_INVOCATION_NAME_MISMATCH
    Preondition Violations
    Expression p.getDomainAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression p.getRangeAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    19
    rangeAxis = p.getRangeAxis();
    10
    else if (plot instanceof XYPlot)
    20
    else if (plot instanceof XYPlot)
    11
    XYPlot p = (XYPlot)plot;
    21
    XYPlot p = (XYPlot)plot;
    12
    domainAxis = p.getDomainAxis();
    12
    domainAxis = p.getDomainAxis();
    22
    rangeAxis = p.getRangeAxis();
    Differences
    Expression1Expression2Difference
    domainAxisrangeAxisVARIABLE_NAME_MISMATCH
    getDomainAxisgetRangeAxisMETHOD_INVOCATION_NAME_MISMATCH
    Preondition Violations
    Expression p.getDomainAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression p.getRangeAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    22
    rangeAxis = p.getRangeAxis();
    13
    if (domainAxis != null)
    13
    if (domainAxis != null)
    23
    if (rangeAxis != null)
    Differences
    Expression1Expression2Difference
    domainAxisrangeAxisVARIABLE_NAME_MISMATCH
    23
    if (rangeAxis != null)
    14
    this.domainAxisPropertyPanel.setAxisProperties(domainAxis);
    14
    this.domainAxisPropertyPanel.setAxisProperties(domainAxis);
    24
    this.rangeAxisPropertyPanel.setAxisProperties(rangeAxis);
    Differences
    Expression1Expression2Difference
    domainAxisrangeAxisVARIABLE_NAME_MISMATCH
    domainAxisPropertyPanelrangeAxisPropertyPanelVARIABLE_NAME_MISMATCH
    24
    this.rangeAxisPropertyPanel.setAxisProperties(rangeAxis);
    Precondition Violations (4)
    Row Violation
    1Expression p.getDomainAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression p.getRangeAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    3Expression p.getDomainAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    4Expression p.getRangeAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted