CloneSet1183


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5220.972method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
151354
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
251370
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
1354
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java

/**
 * Maps a dataset to a particular domain axis.  All data will be plotted
 * against axis zero by default, no mapping is required for this case.
 *
 * @param index  the dataset index (zero-based).
 * @param axisIndex  the axis index.
 *
 * @see #mapDatasetToRangeAxis(int, int)
 */
public void mapDatasetToDomainAxis(int index, int axisIndex) {
  this.datasetToDomainAxisMap.put(new Integer(index), new Integer(axisIndex));
  // fake a dataset change event to update axes...
  datasetChanged(new DatasetChangeEvent(this, getDataset(index)));
}


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

/**
 * Maps a dataset to a particular range axis.  All data will be plotted
 * against axis zero by default, no mapping is required for this case.
 *
 * @param index  the dataset index (zero-based).
 * @param axisIndex  the axis index.
 *
 * @see #mapDatasetToDomainAxis(int, int)
 */
public void mapDatasetToRangeAxis(int index, int axisIndex) {
  this.datasetToRangeAxisMap.put(new Integer(index), new Integer(axisIndex));
  // fake a dataset change event to update axes...
  datasetChanged(new DatasetChangeEvent(this, getDataset(index)));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Maps a dataset to a particular range axis.  All data will be plotted
     * against axis zero by default, no mapping is required for this case.
     *
     * @param index  the dataset index (zero-based).
     * @param axisIndex  the axis index.
     *
     * @see #mapDatasetToDomainAxis(int, int)
     */
/**
     * Maps a dataset to a particular domain axis.  All data will be plotted
     * against axis zero by default, no mapping is required for this case.
     *
     * @param index  the dataset index (zero-based).
     * @param axisIndex  the axis index.
     *
     * @see #mapDatasetToRangeAxis(int, int)
     */
public void [[#variable18ed0e20]](int index, int axisIndex) {
  this. [[#variable18ed0d20]].put(new Integer(index), new Integer(axisIndex));
  // fake a dataset change event to update axes...
  datasetChanged(new DatasetChangeEvent(this, getDataset(index)));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18ed0e20]]
mapDatasetToDomainAxis 
12[[#18ed0e20]]
mapDatasetToRangeAxis 
21[[#18ed0d20]]
datasetToDomainAxisMap 
22[[#18ed0d20]]
datasetToRangeAxisMap