CloneSet670


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
26310.987class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
126131
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainCategoryPlot.java
227223
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainXYPlot.java
327127
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedRangeCategoryPlot.java
Next
Last
Clone Instance
1
Line Count
26
Source Line
131
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainCategoryPlot.java

/**
 * Returns the space between subplots.
 *
 * @return The gap (in Java2D units).
 */
public double getGap() {
  return this.gap;
}

/**
 * Sets the amount of space between subplots and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param gap  the gap between subplots (in Java2D units).
 */
public void setGap(double gap) {
  this.gap = gap;
  fireChangeEvent();
}

/**
 * Adds a subplot to the combined chart and sends a {@link PlotChangeEvent}
 * to all registered listeners.
 * <br><br>
 * The domain axis for the subplot will be set to <code>null</code>.  You
 * must ensure that the subplot has a non-null range axis.
 *
 * @param subplot  the subplot (<code>null</code> not permitted).
 */
public void add(CategoryPlot subplot) {
  add(subplot, 1);
}


Next
Previous
Clone Instance
2
Line Count
27
Source Line
223
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainXYPlot.java

/**
 * Returns the gap between subplots, measured in Java2D units.
 *
 * @return The gap (in Java2D units).
 */
public double getGap() {
  return this.gap;
}

/**
 * Sets the amount of space between subplots and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param gap  the gap between subplots (in Java2D units).
 */
public void setGap(double gap) {
  this.gap = gap;
  fireChangeEvent();
}

/**
 * Adds a subplot (with a default 'weight' of 1) and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 * <P>
 * The domain axis for the subplot will be set to <code>null</code>.  You
 * must ensure that the subplot has a non-null range axis.
 *
 * @param subplot  the subplot (<code>null</code> not permitted).
 */
public void add(XYPlot subplot) {
  // defer argument checking
  add(subplot, 1);
}


First
Previous
Clone Instance
3
Line Count
27
Source Line
127
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedRangeCategoryPlot.java

/**
 * Returns the space between subplots.
 *
 * @return The gap (in Java2D units).
 */
public double getGap() {
  return this.gap;
}

/**
 * Sets the amount of space between subplots and sends a 
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param gap  the gap between subplots (in Java2D units).
 */
public void setGap(double gap) {
  this.gap = gap;
  fireChangeEvent();
}

/**
 * Adds a subplot (with a default 'weight' of 1) and sends a 
 * {@link PlotChangeEvent} to all registered listeners.
 * <br><br>
 * You must ensure that the subplot has a non-null domain axis.  The range
 * axis for the subplot will be set to <code>null</code>.  
 *
 * @param subplot  the subplot (<code>null</code> not permitted).
 */
public void add(CategoryPlot subplot) {
  // defer argument checking
  add(subplot, 1);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns the space between subplots.
     *
     * @return The gap (in Java2D units).
     */
/**
     * Returns the gap between subplots, measured in Java2D units.
     *
     * @return The gap (in Java2D units).
     */
public double getGap() {
  return this.gap;
}

/**
     * Sets the amount of space between subplots and sends a
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param gap  the gap between subplots (in Java2D units).
     */
/**
     * Sets the amount of space between subplots and sends a 
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param gap  the gap between subplots (in Java2D units).
     */
public void setGap(double gap) {
  this.gap = gap;
  fireChangeEvent();
}

/**
     * Adds a subplot to the combined chart and sends a {@link PlotChangeEvent}
     * to all registered listeners.
     * <br><br>
     * The domain axis for the subplot will be set to <code>null</code>.  You
     * must ensure that the subplot has a non-null range axis.
     *
     * @param subplot  the subplot (<code>null</code> not permitted).
     */
/**
     * Adds a subplot (with a default 'weight' of 1) and sends a
     * {@link PlotChangeEvent} to all registered listeners.
     * <P>
     * The domain axis for the subplot will be set to <code>null</code>.  You
     * must ensure that the subplot has a non-null range axis.
     *
     * @param subplot  the subplot (<code>null</code> not permitted).
     */
/**
     * Adds a subplot (with a default 'weight' of 1) and sends a 
     * {@link PlotChangeEvent} to all registered listeners.
     * <br><br>
     * You must ensure that the subplot has a non-null domain axis.  The range
     * axis for the subplot will be set to <code>null</code>.  
     *
     * @param subplot  the subplot (<code>null</code> not permitted).
     */
public void add( [[#variable18cea2c0]] subplot) {
  // defer argument checking
  add(subplot, 1);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18cea2c0]]
CategoryPlot 
12[[#18cea2c0]]
XYPlot 
13[[#18cea2c0]]
CategoryPlot