DefaultCategoryDataset d = new DefaultCategoryDataset(); d.addValue(1.0, "R1", "C1"); d.addValue(2.0, "R1", "C2"); d.addValue(3.0, "R2", "C1"); d.addValue(4.0, "R2", "C2"); CategoryItemEntity e1 = new CategoryItemEntity(new Rectangle2D.Double( 1.0, 2.0, 3.0, 4.0), "ToolTip", "URL", d, 1, "C2", 1); CategoryItemEntity e2 = null; try { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); ObjectOutput out = new ObjectOutputStream(buffer); out.writeObject(e1); out.close(); ObjectInput in = new ObjectInputStream( new ByteArrayInputStream(buffer.toByteArray())); e2 = (CategoryItemEntity) in.readObject(); in.close(); } catch (Exception e) { e.printStackTrace(); } assertEquals(e1, e2);
DefaultStatisticalCategoryDataset d1 = new DefaultStatisticalCategoryDataset(); d1.add(1.1, 2.2, "R1", "C1"); d1.add(3.3, 4.4, "R1", "C2"); d1.add(null, new Double(5.5), "R1", "C3"); d1.add(new Double(6.6), null, "R2", "C3"); DefaultStatisticalCategoryDataset d2 = null; try { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); ObjectOutput out = new ObjectOutputStream(buffer); out.writeObject(d1); out.close(); ObjectInput in = new ObjectInputStream( new ByteArrayInputStream(buffer.toByteArray())); d2 = (DefaultStatisticalCategoryDataset) in.readObject(); in.close(); } catch (Exception e) { fail(e.toString()); } assertEquals(d1, d2);
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/tests/org/jfree/chart/entity/junit/CategoryItemEntityTests.java File path: /jfreechart-1.0.10/tests/org/jfree/data/statistics/junit/DefaultStatisticalCategoryDatasetTests.java
Method name: void testSerialization() Method name: void testSerialization1()
Number of AST nodes: 16 Number of AST nodes: 15
1
DefaultCategoryDataset d
1
DefaultStatisticalCategoryDataset d1 
2
 = new DefaultCategoryDataset();
2
            = new DefaultStatisticalCategoryDataset();
3
        d.addValue(1.0, "R1", "C1");
3
        d1.add
4
        d.addValue(2.0, "R1", "C2");
4
(1.1, 2.2, "R1", "C1");
5
        d.addValue(3.0, "R2", "C1");
5
        d1.add(3.3, 4.4, "R1", "C2");
6
        d.addValue(4.0, "R2", "C2");
6
        d1.add(null, new Double(5.5), "R1", "C3");
7
        CategoryItemEntity e1 = new CategoryItemEntity(new Rectangle2D.Double(
7
        
8
                1.0, 2.0, 3.0, 4.0), "ToolTip", "URL", d, 1, "C2", 1); 
8
d1.add(new Double(6.6), null, "R2", "C3");
9
        CategoryItemEntity e2 = null;
9
        DefaultStatisticalCategoryDataset d2 = null;
10
        try {
10
        try {
11
            ByteArrayOutputStream buffer = new ByteArrayOutputStream();
11
            ByteArrayOutputStream buffer = new ByteArrayOutputStream();
12
            ObjectOutput out = new ObjectOutputStream(buffer);
12
            ObjectOutput out = new ObjectOutputStream(buffer);
13
            out.writeObject(e1);
13
            out.writeObject(d1);
14
            out.close();
14
            out.close();
15
            ObjectInput in = new ObjectInputStream(
15
            ObjectInput in = new ObjectInputStream(
16
                    new ByteArrayInputStream(buffer.toByteArray()));
16
                    new ByteArrayInputStream(buffer.toByteArray()));
17
            e2 = (CategoryItemEntity) in.readObject();
17
            d2 = (DefaultStatisticalCategoryDataset) in.readObject();
18
            in.close();
18
            in.close();
19
        }
19
        }
20
        catch (Exception e) {
20
        catch (Exception e) {
21
            e.printStackTrace();
21
            fail(e.toString());
22
        }
22
        }
23
        assertEquals(e1, e2);
23
        assertEquals(d1, d2);
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.2
Clones locationClones are in different classes having the same super class
Number of node comparisons100
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements15
    Number of unmapped statements in the first code fragment1
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)347.1
    Clone typeType 3
    Mapped Statements
    ID Statement ID Statement
    1
    DefaultCategoryDataset d = new DefaultCategoryDataset();
    1
    DefaultCategoryDataset d = new DefaultCategoryDataset();
    1
    DefaultStatisticalCategoryDataset d1 = new DefaultStatisticalCategoryDataset();
    Differences
    Expression1Expression2Difference
    org.jfree.data.category.DefaultCategoryDatasetorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    dd1VARIABLE_NAME_MISMATCH
    org.jfree.data.category.DefaultCategoryDatasetorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    org.jfree.data.category.DefaultCategoryDatasetorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression new DefaultCategoryDataset() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression new DefaultStatisticalCategoryDataset() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    1
    DefaultStatisticalCategoryDataset d1 = new DefaultStatisticalCategoryDataset();
    2
    d.addValue(1.0, "R1", "C1");
    2
    d.addValue(1.0, "R1", "C1");
    2
    d1.add(1.1, 2.2, "R1", "C1");
    Differences
    Expression1Expression2Difference
    addValueaddMETHOD_INVOCATION_NAME_MISMATCH
    dd1VARIABLE_NAME_MISMATCH
    org.jfree.data.category.DefaultCategoryDatasetorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    d.addValue(1.0,"R1","C1")d1.add(1.1,2.2,"R1","C1")ARGUMENT_NUMBER_MISMATCH
    Preondition Violations
    Expression d.addValue(1.0,"R1","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1.add(1.1,2.2,"R1","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d.addValue(1.0,"R1","C1") is a void method call, and thus it cannot be parameterized
    Expression d1.add(1.1,2.2,"R1","C1") is a void method call, and thus it cannot be parameterized
    Expression d cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d cannot be unified with expression d1 , because common superclass org.jfree.data.general.AbstractDataset does not declare member(s) public void addValue(double, Comparable#RAW, Comparable#RAW) , public void add(double, double, Comparable#RAW, Comparable#RAW)
    Expression d.addValue(1.0,"R1","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1.add(1.1,2.2,"R1","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d.addValue(1.0,"R1","C1") is a void method call, and thus it cannot be parameterized
    Expression d1.add(1.1,2.2,"R1","C1") is a void method call, and thus it cannot be parameterized
    2
    d1.add(1.1, 2.2, "R1", "C1");
    3
    d.addValue(2.0, "R1", "C2");
    3
    d.addValue(2.0, "R1", "C2");
    3
    d1.add(3.3, 4.4, "R1", "C2");
    Differences
    Expression1Expression2Difference
    addValueaddMETHOD_INVOCATION_NAME_MISMATCH
    dd1VARIABLE_NAME_MISMATCH
    org.jfree.data.category.DefaultCategoryDatasetorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    d.addValue(2.0,"R1","C2")d1.add(3.3,4.4,"R1","C2")ARGUMENT_NUMBER_MISMATCH
    Preondition Violations
    Expression d.addValue(2.0,"R1","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1.add(3.3,4.4,"R1","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d.addValue(2.0,"R1","C2") is a void method call, and thus it cannot be parameterized
    Expression d1.add(3.3,4.4,"R1","C2") is a void method call, and thus it cannot be parameterized
    Expression d cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d cannot be unified with expression d1 , because common superclass org.jfree.data.general.AbstractDataset does not declare member(s) public void addValue(double, Comparable#RAW, Comparable#RAW) , public void add(double, double, Comparable#RAW, Comparable#RAW)
    Expression d.addValue(2.0,"R1","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1.add(3.3,4.4,"R1","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d.addValue(2.0,"R1","C2") is a void method call, and thus it cannot be parameterized
    Expression d1.add(3.3,4.4,"R1","C2") is a void method call, and thus it cannot be parameterized
    3
    d1.add(3.3, 4.4, "R1", "C2");
    4
    d.addValue(3.0, "R2", "C1");
    4
    d.addValue(3.0, "R2", "C1");
    4
    d1.add(null, new Double(5.5), "R1", "C3");
    Differences
    Expression1Expression2Difference
    addValueaddMETHOD_INVOCATION_NAME_MISMATCH
    dd1VARIABLE_NAME_MISMATCH
    org.jfree.data.category.DefaultCategoryDatasetorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    d.addValue(3.0,"R2","C1")d1.add(null,new Double(5.5),"R1","C3")ARGUMENT_NUMBER_MISMATCH
    Preondition Violations
    Expression d.addValue(3.0,"R2","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1.add(null,new Double(5.5),"R1","C3") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d.addValue(3.0,"R2","C1") is a void method call, and thus it cannot be parameterized
    Expression d1.add(null,new Double(5.5),"R1","C3") is a void method call, and thus it cannot be parameterized
    Expression d cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d cannot be unified with expression d1 , because common superclass org.jfree.data.general.AbstractDataset does not declare member(s) public void addValue(double, Comparable#RAW, Comparable#RAW) , public void add(java.lang.Number, java.lang.Number, Comparable#RAW, Comparable#RAW)
    Expression d.addValue(3.0,"R2","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1.add(null,new Double(5.5),"R1","C3") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d.addValue(3.0,"R2","C1") is a void method call, and thus it cannot be parameterized
    Expression d1.add(null,new Double(5.5),"R1","C3") is a void method call, and thus it cannot be parameterized
    4
    d1.add(null, new Double(5.5), "R1", "C3");
    5
    d.addValue(4.0, "R2", "C2");
    5
    d.addValue(4.0, "R2", "C2");
    5
    d1.add(new Double(6.6), null, "R2", "C3");
    Differences
    Expression1Expression2Difference
    addValueaddMETHOD_INVOCATION_NAME_MISMATCH
    dd1VARIABLE_NAME_MISMATCH
    org.jfree.data.category.DefaultCategoryDatasetorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    d.addValue(4.0,"R2","C2")d1.add(new Double(6.6),null,"R2","C3")ARGUMENT_NUMBER_MISMATCH
    Preondition Violations
    Expression d.addValue(4.0,"R2","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1.add(new Double(6.6),null,"R2","C3") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d.addValue(4.0,"R2","C2") is a void method call, and thus it cannot be parameterized
    Expression d1.add(new Double(6.6),null,"R2","C3") is a void method call, and thus it cannot be parameterized
    Expression d cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d cannot be unified with expression d1 , because common superclass org.jfree.data.general.AbstractDataset does not declare member(s) public void addValue(double, Comparable#RAW, Comparable#RAW) , public void add(java.lang.Number, java.lang.Number, Comparable#RAW, Comparable#RAW)
    Expression d.addValue(4.0,"R2","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1.add(new Double(6.6),null,"R2","C3") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d.addValue(4.0,"R2","C2") is a void method call, and thus it cannot be parameterized
    Expression d1.add(new Double(6.6),null,"R2","C3") is a void method call, and thus it cannot be parameterized
    5
    d1.add(new Double(6.6), null, "R2", "C3");
    6
    CategoryItemEntity e1 = new CategoryItemEntity(new Rectangle2D.Double(1.0, 2.0, 3.0, 4.0), "ToolTip", "URL", d, 1, "C2", 1);
    6
    CategoryItemEntity e1 = new CategoryItemEntity(new Rectangle2D.Double(1.0, 2.0, 3.0, 4.0), "ToolTip", "URL", d, 1, "C2", 1);
    Preondition Violations
    Unmatched statement CategoryItemEntity e1=new CategoryItemEntity(new Rectangle2D.Double(1.0,2.0,3.0,4.0),"ToolTip","URL",d,1,"C2",1); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
                                                                                                                                                                                                                                            
    7
    CategoryItemEntity e2 = null;
    7
    CategoryItemEntity e2 = null;
    6
    DefaultStatisticalCategoryDataset d2 = null;
    Differences
    Expression1Expression2Difference
    org.jfree.chart.entity.CategoryItemEntityorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    e2d2VARIABLE_NAME_MISMATCH
    org.jfree.chart.entity.CategoryItemEntityorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    6
    DefaultStatisticalCategoryDataset d2 = null;
    8
    try
    8
    try
    7
    try
    Differences
    Expression1Expression2Difference
    printStackTracefailMETHOD_INVOCATION_NAME_MISMATCH
    e.printStackTrace()fail(e.toString())TYPE_COMPATIBLE_REPLACEMENT
    e.printStackTrace()fail(e.toString())ARGUMENT_NUMBER_MISMATCH
    eMISSING_METHOD_INVOCATION_EXPRESSION
    Preondition Violations
    Expression e.printStackTrace() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression fail(e.toString()) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression e.printStackTrace() is a void method call, and thus it cannot be parameterized
    Expression fail(e.toString()) is a void method call, and thus it cannot be parameterized
    Expression e.printStackTrace() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression fail(e.toString()) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression e.printStackTrace() is a void method call, and thus it cannot be parameterized
    Expression fail(e.toString()) is a void method call, and thus it cannot be parameterized
    7
    try
    9
    ByteArrayOutputStream buffer = new ByteArrayOutputStream();
    8
    ByteArrayOutputStream buffer = new ByteArrayOutputStream();
    10
    ObjectOutput out = new ObjectOutputStream(buffer);
    9
    ObjectOutput out = new ObjectOutputStream(buffer);
    11
    out.writeObject(e1);
    11
    out.writeObject(e1);
    10
    out.writeObject(d1);
    Differences
    Expression1Expression2Difference
    e1d1VARIABLE_NAME_MISMATCH
    org.jfree.chart.entity.CategoryItemEntityorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression e1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression e1 cannot be unified with expression d1 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public abstract void writeObject(java.lang.Object) throws java.io.IOException
    10
    out.writeObject(d1);
    12
    out.close();
    11
    out.close();
    13
    ObjectInput in = new ObjectInputStream(new ByteArrayInputStream(buffer.toByteArray()));
    12
    ObjectInput in = new ObjectInputStream(new ByteArrayInputStream(buffer.toByteArray()));
    14
    e2 = (CategoryItemEntity)in.readObject();
    14
    e2 = (CategoryItemEntity)in.readObject();
    13
    d2 = (DefaultStatisticalCategoryDataset)in.readObject();
    Differences
    Expression1Expression2Difference
    e2d2VARIABLE_NAME_MISMATCH
    org.jfree.chart.entity.CategoryItemEntityorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    org.jfree.chart.entity.CategoryItemEntityorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression (CategoryItemEntity)in.readObject() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression (DefaultStatisticalCategoryDataset)in.readObject() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    13
    d2 = (DefaultStatisticalCategoryDataset)in.readObject();
    15
    in.close();
    14
    in.close();
    16
    assertEquals(e1, e2);
    16
    assertEquals(e1, e2);
    15
    assertEquals(d1, d2);
    Differences
    Expression1Expression2Difference
    e1d1VARIABLE_NAME_MISMATCH
    org.jfree.chart.entity.CategoryItemEntityorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    e2d2VARIABLE_NAME_MISMATCH
    org.jfree.chart.entity.CategoryItemEntityorg.jfree.data.statistics.DefaultStatisticalCategoryDatasetSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression e1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression e1 cannot be unified with expression d1 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public static void assertEquals(java.lang.Object, java.lang.Object)
    Expression e2 cannot be unified with expression d2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public static void assertEquals(java.lang.Object, java.lang.Object)
    15
    assertEquals(d1, d2);
    Precondition Violations (64)
    Row Violation
    1Expression new DefaultCategoryDataset() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression new DefaultStatisticalCategoryDataset() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    3Expression d.addValue(1.0,"R1","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    4Expression d1.add(1.1,2.2,"R1","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    5Expression d.addValue(1.0,"R1","C1") is a void method call, and thus it cannot be parameterized
    6Expression d1.add(1.1,2.2,"R1","C1") is a void method call, and thus it cannot be parameterized
    7Expression d cannot be parameterized, because it has dependencies to/from statements that will be extracted
    8Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    9Expression d cannot be unified with expression d1 , because common superclass org.jfree.data.general.AbstractDataset does not declare member(s) public void addValue(double, Comparable#RAW, Comparable#RAW) , public void add(double, double, Comparable#RAW, Comparable#RAW)
    10Expression d.addValue(1.0,"R1","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    11Expression d1.add(1.1,2.2,"R1","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    12Expression d.addValue(1.0,"R1","C1") is a void method call, and thus it cannot be parameterized
    13Expression d1.add(1.1,2.2,"R1","C1") is a void method call, and thus it cannot be parameterized
    14Expression d.addValue(2.0,"R1","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    15Expression d1.add(3.3,4.4,"R1","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    16Expression d.addValue(2.0,"R1","C2") is a void method call, and thus it cannot be parameterized
    17Expression d1.add(3.3,4.4,"R1","C2") is a void method call, and thus it cannot be parameterized
    18Expression d cannot be parameterized, because it has dependencies to/from statements that will be extracted
    19Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    20Expression d cannot be unified with expression d1 , because common superclass org.jfree.data.general.AbstractDataset does not declare member(s) public void addValue(double, Comparable#RAW, Comparable#RAW) , public void add(double, double, Comparable#RAW, Comparable#RAW)
    21Expression d.addValue(2.0,"R1","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    22Expression d1.add(3.3,4.4,"R1","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    23Expression d.addValue(2.0,"R1","C2") is a void method call, and thus it cannot be parameterized
    24Expression d1.add(3.3,4.4,"R1","C2") is a void method call, and thus it cannot be parameterized
    25Expression d.addValue(3.0,"R2","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    26Expression d1.add(null,new Double(5.5),"R1","C3") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    27Expression d.addValue(3.0,"R2","C1") is a void method call, and thus it cannot be parameterized
    28Expression d1.add(null,new Double(5.5),"R1","C3") is a void method call, and thus it cannot be parameterized
    29Expression d cannot be parameterized, because it has dependencies to/from statements that will be extracted
    30Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    31Expression d cannot be unified with expression d1 , because common superclass org.jfree.data.general.AbstractDataset does not declare member(s) public void addValue(double, Comparable#RAW, Comparable#RAW) , public void add(java.lang.Number, java.lang.Number, Comparable#RAW, Comparable#RAW)
    32Expression d.addValue(3.0,"R2","C1") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    33Expression d1.add(null,new Double(5.5),"R1","C3") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    34Expression d.addValue(3.0,"R2","C1") is a void method call, and thus it cannot be parameterized
    35Expression d1.add(null,new Double(5.5),"R1","C3") is a void method call, and thus it cannot be parameterized
    36Expression d.addValue(4.0,"R2","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    37Expression d1.add(new Double(6.6),null,"R2","C3") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    38Expression d.addValue(4.0,"R2","C2") is a void method call, and thus it cannot be parameterized
    39Expression d1.add(new Double(6.6),null,"R2","C3") is a void method call, and thus it cannot be parameterized
    40Expression d cannot be parameterized, because it has dependencies to/from statements that will be extracted
    41Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    42Expression d cannot be unified with expression d1 , because common superclass org.jfree.data.general.AbstractDataset does not declare member(s) public void addValue(double, Comparable#RAW, Comparable#RAW) , public void add(java.lang.Number, java.lang.Number, Comparable#RAW, Comparable#RAW)
    43Expression d.addValue(4.0,"R2","C2") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    44Expression d1.add(new Double(6.6),null,"R2","C3") cannot be parameterized, because it has dependencies to/from statements that will be extracted
    45Expression d.addValue(4.0,"R2","C2") is a void method call, and thus it cannot be parameterized
    46Expression d1.add(new Double(6.6),null,"R2","C3") is a void method call, and thus it cannot be parameterized
    47Unmatched statement CategoryItemEntity e1=new CategoryItemEntity(new Rectangle2D.Double(1.0,2.0,3.0,4.0),"ToolTip","URL",d,1,"C2",1); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted
    48Expression e.printStackTrace() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    49Expression fail(e.toString()) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    50Expression e.printStackTrace() is a void method call, and thus it cannot be parameterized
    51Expression fail(e.toString()) is a void method call, and thus it cannot be parameterized
    52Expression e.printStackTrace() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    53Expression fail(e.toString()) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    54Expression e.printStackTrace() is a void method call, and thus it cannot be parameterized
    55Expression fail(e.toString()) is a void method call, and thus it cannot be parameterized
    56Expression e1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    57Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    58Expression e1 cannot be unified with expression d1 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public abstract void writeObject(java.lang.Object) throws java.io.IOException
    59Expression (CategoryItemEntity)in.readObject() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    60Expression (DefaultStatisticalCategoryDataset)in.readObject() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    61Expression e1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    62Expression d1 cannot be parameterized, because it has dependencies to/from statements that will be extracted
    63Expression e1 cannot be unified with expression d1 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public static void assertEquals(java.lang.Object, java.lang.Object)
    64Expression e2 cannot be unified with expression d2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public static void assertEquals(java.lang.Object, java.lang.Object)