TimeSeries s1 = new TimeSeries("S1"); TimeSeries s2 = new TimeSeries("S2"); TimeSeriesCollection dataset = new TimeSeriesCollection(); assertEquals(-1, dataset.indexOf(s1)); assertEquals(-1, dataset.indexOf(s2)); dataset.addSeries(s1); assertEquals(0, dataset.indexOf(s1)); assertEquals(-1, dataset.indexOf(s2)); dataset.addSeries(s2); assertEquals(0, dataset.indexOf(s1)); assertEquals(1, dataset.indexOf(s2)); dataset.removeSeries(s1); assertEquals(-1, dataset.indexOf(s1)); assertEquals(0, dataset.indexOf(s2)); TimeSeries s2b = new TimeSeries("S2"); assertEquals(0, dataset.indexOf(s2b));
XYSeries s1 = new XYSeries("S1"); XYSeries s2 = new XYSeries("S2"); XYSeriesCollection dataset = new XYSeriesCollection(); assertEquals(-1, dataset.indexOf(s1)); assertEquals(-1, dataset.indexOf(s2)); dataset.addSeries(s1); assertEquals(0, dataset.indexOf(s1)); assertEquals(-1, dataset.indexOf(s2)); dataset.addSeries(s2); assertEquals(0, dataset.indexOf(s1)); assertEquals(1, dataset.indexOf(s2)); dataset.removeSeries(s1); assertEquals(-1, dataset.indexOf(s1)); assertEquals(0, dataset.indexOf(s2)); XYSeries s2b = new XYSeries("S2"); assertEquals(0, dataset.indexOf(s2b));
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/tests/org/jfree/data/time/junit/TimeSeriesCollectionTests.java File path: /jfreechart-1.0.10/tests/org/jfree/data/xy/junit/XYSeriesCollectionTests.java
Method name: void testIndexOf() Method name: void testIndexOf()
Number of AST nodes: 16 Number of AST nodes: 16
1
TimeSeries s1 = new TimeSeries("S1");
1
XYSeries s1 = new XYSeries("S1");
2
        TimeSeries s2 = new TimeSeries("S2");
2
        XYSeries s2 = new XYSeries("S2");
3
        TimeSeriesCollection dataset = new TimeSeriesCollection();
3
        XYSeriesCollection dataset = new XYSeriesCollection();
4
        assertEquals(-1, dataset.indexOf(s1));
4
        assertEquals(-1, dataset.indexOf(s1));
5
        assertEquals(-1, dataset.indexOf(s2));
5
        assertEquals(-1, dataset.indexOf(s2));
6
        
7
        dataset.addSeries(s1);
6
        dataset.addSeries(s1);
8
        assertEquals(0, dataset.indexOf(s1));
7
        assertEquals(0, dataset.indexOf(s1));
9
        assertEquals(-1, dataset.indexOf(s2));
8
        assertEquals(-1, dataset.indexOf(s2));
10
        
11
        dataset.addSeries(s2);
9
        dataset.addSeries(s2);
12
        assertEquals(0, dataset.indexOf(s1));
10
        assertEquals(0, dataset.indexOf(s1));
13
        assertEquals(1, dataset.indexOf(s2));
11
        assertEquals(1, dataset.indexOf(s2));
14
        
15
        dataset.removeSeries(s1);
12
        dataset.removeSeries(s1);
16
        assertEquals(-1, dataset.indexOf(s1));
13
        assertEquals(-1, dataset.indexOf(s1));
17
        assertEquals(0, dataset.indexOf(s2));
14
        assertEquals(0, dataset.indexOf(s2));
18
        
19
        TimeSeries s2b = new TimeSeries("S2");
15
        XYSeries s2b = new XYSeries("S2");
20
        assertEquals(0, dataset.indexOf(s2b));
16
        assertEquals(0, dataset.indexOf(s2b));
Summary
Number of common nesting structure subtrees1
Number of refactorable cases0
Number of non-refactorable cases1
Time elapsed for finding largest common nesting structure subtrees (ms)0.0
Clones locationClones are in different classes having the same super class
Number of node comparisons48
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements16
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)0.0
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    1
    TimeSeries s1 = new TimeSeries("S1");
    1
    TimeSeries s1 = new TimeSeries("S1");
    1
    XYSeries s1 = new XYSeries("S1");
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression new TimeSeries("S1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression new XYSeries("S1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    1
    XYSeries s1 = new XYSeries("S1");
    2
    TimeSeries s2 = new TimeSeries("S2");
    2
    TimeSeries s2 = new TimeSeries("S2");
    2
    XYSeries s2 = new XYSeries("S2");
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression new TimeSeries("S2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression new XYSeries("S2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2
    XYSeries s2 = new XYSeries("S2");
    3
    TimeSeriesCollection dataset = new TimeSeriesCollection();
    3
    TimeSeriesCollection dataset = new TimeSeriesCollection();
    3
    XYSeriesCollection dataset = new XYSeriesCollection();
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression new TimeSeriesCollection() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression new XYSeriesCollection() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    3
    XYSeriesCollection dataset = new XYSeriesCollection();
    4
    assertEquals(-1, dataset.indexOf(s1));
    4
    assertEquals(-1, dataset.indexOf(s1));
    4
    assertEquals(-1, dataset.indexOf(s1));
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    4
    assertEquals(-1, dataset.indexOf(s1));
    5
    assertEquals(-1, dataset.indexOf(s2));
    5
    assertEquals(-1, dataset.indexOf(s2));
    5
    assertEquals(-1, dataset.indexOf(s2));
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s2 cannot be unified with expression s2 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    5
    assertEquals(-1, dataset.indexOf(s2));
    6
    dataset.addSeries(s1);
    6
    dataset.addSeries(s1);
    6
    dataset.addSeries(s1);
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public void addSeries(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public void addSeries(org.jfree.data.time.TimeSeries) , public void addSeries(org.jfree.data.xy.XYSeries)
    6
    dataset.addSeries(s1);
    7
    assertEquals(0, dataset.indexOf(s1));
    7
    assertEquals(0, dataset.indexOf(s1));
    7
    assertEquals(0, dataset.indexOf(s1));
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    7
    assertEquals(0, dataset.indexOf(s1));
    8
    assertEquals(-1, dataset.indexOf(s2));
    8
    assertEquals(-1, dataset.indexOf(s2));
    8
    assertEquals(-1, dataset.indexOf(s2));
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s2 cannot be unified with expression s2 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    8
    assertEquals(-1, dataset.indexOf(s2));
    9
    dataset.addSeries(s2);
    9
    dataset.addSeries(s2);
    9
    dataset.addSeries(s2);
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s2 cannot be unified with expression s2 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public void addSeries(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public void addSeries(org.jfree.data.time.TimeSeries) , public void addSeries(org.jfree.data.xy.XYSeries)
    9
    dataset.addSeries(s2);
    10
    assertEquals(0, dataset.indexOf(s1));
    10
    assertEquals(0, dataset.indexOf(s1));
    10
    assertEquals(0, dataset.indexOf(s1));
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    10
    assertEquals(0, dataset.indexOf(s1));
    11
    assertEquals(1, dataset.indexOf(s2));
    11
    assertEquals(1, dataset.indexOf(s2));
    11
    assertEquals(1, dataset.indexOf(s2));
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s2 cannot be unified with expression s2 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    11
    assertEquals(1, dataset.indexOf(s2));
    12
    dataset.removeSeries(s1);
    12
    dataset.removeSeries(s1);
    12
    dataset.removeSeries(s1);
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public void removeSeries(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public void removeSeries(org.jfree.data.time.TimeSeries) , public void removeSeries(org.jfree.data.xy.XYSeries)
    12
    dataset.removeSeries(s1);
    13
    assertEquals(-1, dataset.indexOf(s1));
    13
    assertEquals(-1, dataset.indexOf(s1));
    13
    assertEquals(-1, dataset.indexOf(s1));
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    13
    assertEquals(-1, dataset.indexOf(s1));
    14
    assertEquals(0, dataset.indexOf(s2));
    14
    assertEquals(0, dataset.indexOf(s2));
    14
    assertEquals(0, dataset.indexOf(s2));
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s2 cannot be unified with expression s2 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    14
    assertEquals(0, dataset.indexOf(s2));
    15
    TimeSeries s2b = new TimeSeries("S2");
    15
    TimeSeries s2b = new TimeSeries("S2");
    15
    XYSeries s2b = new XYSeries("S2");
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression new TimeSeries("S2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression new XYSeries("S2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    15
    XYSeries s2b = new XYSeries("S2");
    16
    assertEquals(0, dataset.indexOf(s2b));
    16
    assertEquals(0, dataset.indexOf(s2b));
    16
    assertEquals(0, dataset.indexOf(s2b));
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.TimeSeriesorg.jfree.data.xy.XYSeriesSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.TimeSeriesCollectionorg.jfree.data.xy.XYSeriesCollectionSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression s2b cannot be unified with expression s2b , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    16
    assertEquals(0, dataset.indexOf(s2b));
    Precondition Violations (32)
    Row Violation
    1Expression new TimeSeries("S1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression new XYSeries("S1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    3Expression new TimeSeries("S2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    4Expression new XYSeries("S2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    5Expression new TimeSeriesCollection() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    6Expression new XYSeriesCollection() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    7Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    8Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    9Expression s2 cannot be unified with expression s2 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    10Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    11Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public void addSeries(org.jfree.data.time.TimeSeries)
    12Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public void addSeries(org.jfree.data.time.TimeSeries) , public void addSeries(org.jfree.data.xy.XYSeries)
    13Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    14Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    15Expression s2 cannot be unified with expression s2 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    16Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    17Expression s2 cannot be unified with expression s2 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public void addSeries(org.jfree.data.time.TimeSeries)
    18Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public void addSeries(org.jfree.data.time.TimeSeries) , public void addSeries(org.jfree.data.xy.XYSeries)
    19Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    20Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    21Expression s2 cannot be unified with expression s2 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    22Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    23Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public void removeSeries(org.jfree.data.time.TimeSeries)
    24Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public void removeSeries(org.jfree.data.time.TimeSeries) , public void removeSeries(org.jfree.data.xy.XYSeries)
    25Expression s1 cannot be unified with expression s1 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    26Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    27Expression s2 cannot be unified with expression s2 , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    28Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)
    29Expression new TimeSeries("S2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    30Expression new XYSeries("S2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    31Expression s2b cannot be unified with expression s2b , because common superclass type org.jfree.data.general.Series cannot be passed as an argument to public int indexOf(org.jfree.data.time.TimeSeries)
    32Expression dataset cannot be unified with expression dataset , because common superclass org.jfree.data.xy.AbstractIntervalXYDataset does not declare member(s) public int indexOf(org.jfree.data.time.TimeSeries) , public int indexOf(org.jfree.data.xy.XYSeries)