CloneSet341


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

/**
 * Returns the fixed domain axis space.
 *
 * @return The fixed domain axis space (possibly <code>null</code>).
 *
 * @see #setFixedDomainAxisSpace(AxisSpace)
 */
public AxisSpace getFixedDomainAxisSpace() {
  return this.fixedDomainAxisSpace;
}

/**
 * Sets the fixed domain axis space and sends a {@link PlotChangeEvent} to
 * all registered listeners.
 *
 * @param space  the space (<code>null</code> permitted).
 *
 * @see #getFixedDomainAxisSpace()
 */
public void setFixedDomainAxisSpace(AxisSpace space) {
  setFixedDomainAxisSpace(space, true);
}

/**
 * Sets the fixed domain axis space and sends a {@link PlotChangeEvent} to
 * all registered listeners.
 *
 * @param space  the space (<code>null</code> permitted).
 * @param notify  notify listeners?
 *
 * @see #getFixedDomainAxisSpace()
 *
 * @since 1.0.7
 */
public void setFixedDomainAxisSpace(AxisSpace space, boolean notify) {
  this.fixedDomainAxisSpace = space;
  if (notify) {
    fireChangeEvent();
  }
}

/**
 * Returns the fixed range axis space.
 *
 * @return The fixed range axis space (possibly <code>null</code>).
 *
 * @see #setFixedRangeAxisSpace(AxisSpace)
 */
public AxisSpace getFixedRangeAxisSpace() {
  return this.fixedRangeAxisSpace;
}

/**
 * Sets the fixed range axis space and sends a {@link PlotChangeEvent} to
 * all registered listeners.
 *
 * @param space  the space (<code>null</code> permitted).
 *
 * @see #getFixedRangeAxisSpace()
 */
public void setFixedRangeAxisSpace(AxisSpace space) {
  setFixedRangeAxisSpace(space, true);
}

/**
 * Sets the fixed range axis space and sends a {@link PlotChangeEvent} to
 * all registered listeners.
 *
 * @param space  the space (<code>null</code> permitted).
 * @param notify  notify listeners?
 *
 * @see #getFixedRangeAxisSpace()
 *
 * @since 1.0.7
 */
public void setFixedRangeAxisSpace(AxisSpace space, boolean notify) {
  this.fixedRangeAxisSpace = space;
  if (notify) {
    fireChangeEvent();
  }
}


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

/**
 * Returns the fixed domain axis space.
 *
 * @return The fixed domain axis space (possibly <code>null</code>).
 *
 * @see #setFixedDomainAxisSpace(AxisSpace)
 */
public AxisSpace getFixedDomainAxisSpace() {
  return this.fixedDomainAxisSpace;
}

/**
 * Sets the fixed domain axis space and sends a {@link PlotChangeEvent} to
 * all registered listeners.
 *
 * @param space  the space (<code>null</code> permitted).
 *
 * @see #getFixedDomainAxisSpace()
 */
public void setFixedDomainAxisSpace(AxisSpace space) {
  setFixedDomainAxisSpace(space, true);
}

/**
 * Sets the fixed domain axis space and, if requested, sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param space  the space (<code>null</code> permitted).
 * @param notify  notify listeners?
 *
 * @see #getFixedDomainAxisSpace()
 *
 * @since 1.0.9
 */
public void setFixedDomainAxisSpace(AxisSpace space, boolean notify) {
  this.fixedDomainAxisSpace = space;
  if (notify) {
    fireChangeEvent();
  }
}

/**
 * Returns the fixed range axis space.
 *
 * @return The fixed range axis space (possibly <code>null</code>).
 *
 * @see #setFixedRangeAxisSpace(AxisSpace)
 */
public AxisSpace getFixedRangeAxisSpace() {
  return this.fixedRangeAxisSpace;
}

/**
 * Sets the fixed range axis space and sends a {@link PlotChangeEvent} to
 * all registered listeners.
 *
 * @param space  the space (<code>null</code> permitted).
 *
 * @see #getFixedRangeAxisSpace()
 */
public void setFixedRangeAxisSpace(AxisSpace space) {
  setFixedRangeAxisSpace(space, true);
}

/**
 * Sets the fixed range axis space and, if requested, sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param space  the space (<code>null</code> permitted).
 * @param notify  notify listeners?
 *
 * @see #getFixedRangeAxisSpace()
 *
 * @since 1.0.9
 */
public void setFixedRangeAxisSpace(AxisSpace space, boolean notify) {
  this.fixedRangeAxisSpace = space;
  if (notify) {
    fireChangeEvent();
  }
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Returns the fixed domain axis space.
     *
     * @return The fixed domain axis space (possibly <code>null</code>).
     *
     * @see #setFixedDomainAxisSpace(AxisSpace)
     */
public AxisSpace getFixedDomainAxisSpace() {
  return this.fixedDomainAxisSpace;
}

/**
     * Sets the fixed domain axis space and sends a {@link PlotChangeEvent} to
     * all registered listeners.
     *
     * @param space  the space (<code>null</code> permitted).
     *
     * @see #getFixedDomainAxisSpace()
     */
public void setFixedDomainAxisSpace(AxisSpace space) {
  setFixedDomainAxisSpace(space, true);
}

/**
     * Sets the fixed domain axis space and, if requested, sends a
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param space  the space (<code>null</code> permitted).
     * @param notify  notify listeners?
     *
     * @see #getFixedDomainAxisSpace()
     *
     * @since 1.0.9
     */
/**
     * Sets the fixed domain axis space and sends a {@link PlotChangeEvent} to
     * all registered listeners.
     *
     * @param space  the space (<code>null</code> permitted).
     * @param notify  notify listeners?
     *
     * @see #getFixedDomainAxisSpace()
     *
     * @since 1.0.7
     */
public void setFixedDomainAxisSpace(AxisSpace space, boolean notify) {
  this.fixedDomainAxisSpace = space;
  if (notify) {
    fireChangeEvent();
  }
}

/**
     * Returns the fixed range axis space.
     *
     * @return The fixed range axis space (possibly <code>null</code>).
     *
     * @see #setFixedRangeAxisSpace(AxisSpace)
     */
public AxisSpace getFixedRangeAxisSpace() {
  return this.fixedRangeAxisSpace;
}

/**
     * Sets the fixed range axis space and sends a {@link PlotChangeEvent} to
     * all registered listeners.
     *
     * @param space  the space (<code>null</code> permitted).
     *
     * @see #getFixedRangeAxisSpace()
     */
public void setFixedRangeAxisSpace(AxisSpace space) {
  setFixedRangeAxisSpace(space, true);
}

/**
     * Sets the fixed range axis space and, if requested, sends a
     * {@link PlotChangeEvent} to all registered listeners.
     *
     * @param space  the space (<code>null</code> permitted).
     * @param notify  notify listeners?
     *
     * @see #getFixedRangeAxisSpace()
     *
     * @since 1.0.9
     */
/**
     * Sets the fixed range axis space and sends a {@link PlotChangeEvent} to
     * all registered listeners.
     *
     * @param space  the space (<code>null</code> permitted).
     * @param notify  notify listeners?
     *
     * @see #getFixedRangeAxisSpace()
     *
     * @since 1.0.7
     */
public void setFixedRangeAxisSpace(AxisSpace space, boolean notify) {
  this.fixedRangeAxisSpace = space;
  if (notify) {
    fireChangeEvent();
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None