CloneSet223


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
24220.981statement_sequence[6]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1242991
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java
2243225
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
Next
Last
Clone Instance
1
Line Count
24
Source Line
2991
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java

AxisCollection axisCollection = new AxisCollection();
// add domain axes to lists...
for (int index = 0; index < this.domainAxes.size(); index++) {
  CategoryAxis xAxis = (CategoryAxis) this.domainAxes.get(index);
  if (xAxis != null) {
    axisCollection.add(xAxis, getDomainAxisEdge(index));
  }
}
// add range axes to lists...
for (int index = 0; index < this.rangeAxes.size(); index++) {
  ValueAxis yAxis = (ValueAxis) this.rangeAxes.get(index);
  if (yAxis != null) {
    axisCollection.add(yAxis, getRangeAxisEdge(index));
  }
}
Map axisStateMap = new HashMap();
// draw the top axes
double cursor = dataArea.getMinY() - this.axisOffset.calculateTopOutset(dataArea.getHeight());
Iterator iterator = axisCollection.getAxesAtTop().iterator();


First
Previous
Clone Instance
2
Line Count
24
Source Line
3225
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java

AxisCollection axisCollection = new AxisCollection();
// add domain axes to lists...
for (int index = 0; index < this.domainAxes.size(); index++) {
  ValueAxis axis = (ValueAxis) this.domainAxes.get(index);
  if (axis != null) {
    axisCollection.add(axis, getDomainAxisEdge(index));
  }
}
// add range axes to lists...
for (int index = 0; index < this.rangeAxes.size(); index++) {
  ValueAxis yAxis = (ValueAxis) this.rangeAxes.get(index);
  if (yAxis != null) {
    axisCollection.add(yAxis, getRangeAxisEdge(index));
  }
}
Map axisStateMap = new HashMap();
// draw the top axes
double cursor = dataArea.getMinY() - this.axisOffset.calculateTopOutset(dataArea.getHeight());
Iterator iterator = axisCollection.getAxesAtTop().iterator();


Clone AbstractionParameter Count: 2Parameter Bindings

AxisCollection axisCollection = new AxisCollection();
// add domain axes to lists...
for (int index = 0; index < this.domainAxes.size(); index++) {
   [[#variable1a842fa0]]  [[#variable1a849900]]= ( [[#variable1a842fa0]]) this.domainAxes.get(index);
  if ( [[#variable1a849900]]!= null) {
    axisCollection.add( [[#variable1a849900]], getDomainAxisEdge(index));
  }
}
// add range axes to lists...
for (int index = 0; index < this.rangeAxes.size(); index++) {
  ValueAxis yAxis = (ValueAxis) this.rangeAxes.get(index);
  if (yAxis != null) {
    axisCollection.add(yAxis, getRangeAxisEdge(index));
  }
}
Map axisStateMap = new HashMap();
// draw the top axes
double cursor = dataArea.getMinY() - this.axisOffset.calculateTopOutset(dataArea.getHeight());
Iterator iterator = axisCollection.getAxesAtTop().iterator();
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a842fa0]]
CategoryAxis 
12[[#1a842fa0]]
ValueAxis 
21[[#1a849900]]
xAxis 
22[[#1a849900]]
axis