CloneSet616


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
31330.964class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1311550
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java
230342
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/FastScatterPlot.java
3321599
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
Next
Last
Clone Instance
1
Line Count
31
Source Line
1550
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java

/**
 * Returns the flag that controls whether the domain grid-lines are visible.
 *
 * @return The <code>true</code> or <code>false</code>.
 *
 * @see #setDomainGridlinesVisible(boolean)
 */
public boolean isDomainGridlinesVisible() {
  return this.domainGridlinesVisible;
}

/**
 * Sets the flag that controls whether or not grid-lines are drawn against
 * the domain axis.
 * <p>
 * If the flag value changes, a {@link PlotChangeEvent} is sent to all
 * registered listeners.
 *
 * @param visible  the new value of the flag.
 *
 * @see #isDomainGridlinesVisible()
 */
public void setDomainGridlinesVisible(boolean visible) {
  if (this.domainGridlinesVisible != visible) {
    this.domainGridlinesVisible = visible;
    fireChangeEvent();
  }
}

/**
 * Returns the position used for the domain gridlines.
 *
 * @return The gridline position (never <code>null</code>).
 *
 * @see #setDomainGridlinePosition(CategoryAnchor)
 */
public CategoryAnchor getDomainGridlinePosition() {
  return this.domainGridlinePosition;
}


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

/**
 * Returns <code>true</code> if the domain gridlines are visible, and 
 * <code>false<code> otherwise.
 *
 * @return <code>true</code> or <code>false</code>.
 * 
 * @see #setDomainGridlinesVisible(boolean)
 * @see #setDomainGridlinePaint(Paint)
 */
public boolean isDomainGridlinesVisible() {
  return this.domainGridlinesVisible;
}

/**
 * Sets the flag that controls whether or not the domain grid-lines are 
 * visible.  If the flag value is changed, a {@link PlotChangeEvent} is 
 * sent to all registered listeners.
 *
 * @param visible  the new value of the flag.
 * 
 * @see #getDomainGridlinePaint()
 */
public void setDomainGridlinesVisible(boolean visible) {
  if (this.domainGridlinesVisible != visible) {
    this.domainGridlinesVisible = visible;
    fireChangeEvent();
  }
}

/**
 * Returns the stroke for the grid-lines (if any) plotted against the 
 * domain axis.
 *
 * @return The stroke (never <code>null</code>).
 * 
 * @see #setDomainGridlineStroke(Stroke)
 */
public Stroke getDomainGridlineStroke() {
  return this.domainGridlineStroke;
}


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

/**
 * Returns <code>true</code> if the domain gridlines are visible, and
 * <code>false<code> otherwise.
 *
 * @return <code>true</code> or <code>false</code>.
 *
 * @see #setDomainGridlinesVisible(boolean)
 */
public boolean isDomainGridlinesVisible() {
  return this.domainGridlinesVisible;
}

/**
 * Sets the flag that controls whether or not the domain grid-lines are
 * visible.
 * <p>
 * If the flag value is changed, a {@link PlotChangeEvent} is sent to all
 * registered listeners.
 *
 * @param visible  the new value of the flag.
 *
 * @see #isDomainGridlinesVisible()
 */
public void setDomainGridlinesVisible(boolean visible) {
  if (this.domainGridlinesVisible != visible) {
    this.domainGridlinesVisible = visible;
    fireChangeEvent();
  }
}

/**
 * Returns the stroke for the grid-lines (if any) plotted against the
 * domain axis.
 *
 * @return The stroke (never <code>null</code>).
 *
 * @see #setDomainGridlineStroke(Stroke)
 */
public Stroke getDomainGridlineStroke() {
  return this.domainGridlineStroke;
}


Clone AbstractionParameter Count: 3Parameter Bindings

/**
     * Returns the flag that controls whether the domain grid-lines are visible.
     *
     * @return The <code>true</code> or <code>false</code>.
     *
     * @see #setDomainGridlinesVisible(boolean)
     */
/**
     * Returns <code>true</code> if the domain gridlines are visible, and 
     * <code>false<code> otherwise.
     *
     * @return <code>true</code> or <code>false</code>.
     * 
     * @see #setDomainGridlinesVisible(boolean)
     * @see #setDomainGridlinePaint(Paint)
     */
/**
     * Returns <code>true</code> if the domain gridlines are visible, and
     * <code>false<code> otherwise.
     *
     * @return <code>true</code> or <code>false</code>.
     *
     * @see #setDomainGridlinesVisible(boolean)
     */
public boolean isDomainGridlinesVisible() {
  return this.domainGridlinesVisible;
}

/**
     * Sets the flag that controls whether or not grid-lines are drawn against
     * the domain axis.
     * <p>
     * If the flag value changes, a {@link PlotChangeEvent} is sent to all
     * registered listeners.
     *
     * @param visible  the new value of the flag.
     *
     * @see #isDomainGridlinesVisible()
     */
/**
     * Sets the flag that controls whether or not the domain grid-lines are 
     * visible.  If the flag value is changed, a {@link PlotChangeEvent} is 
     * sent to all registered listeners.
     *
     * @param visible  the new value of the flag.
     * 
     * @see #getDomainGridlinePaint()
     */
/**
     * Sets the flag that controls whether or not the domain grid-lines are
     * visible.
     * <p>
     * If the flag value is changed, a {@link PlotChangeEvent} is sent to all
     * registered listeners.
     *
     * @param visible  the new value of the flag.
     *
     * @see #isDomainGridlinesVisible()
     */
public void setDomainGridlinesVisible(boolean visible) {
  if (this.domainGridlinesVisible != visible) {
    this.domainGridlinesVisible = visible;
    fireChangeEvent();
  }
}

/**
     * Returns the position used for the domain gridlines.
     *
     * @return The gridline position (never <code>null</code>).
     *
     * @see #setDomainGridlinePosition(CategoryAnchor)
     */
/**
     * Returns the stroke for the grid-lines (if any) plotted against the 
     * domain axis.
     *
     * @return The stroke (never <code>null</code>).
     * 
     * @see #setDomainGridlineStroke(Stroke)
     */
/**
     * Returns the stroke for the grid-lines (if any) plotted against the
     * domain axis.
     *
     * @return The stroke (never <code>null</code>).
     *
     * @see #setDomainGridlineStroke(Stroke)
     */
public [[#variable18cc5b00]]  [[#variable18cc5c60]]() {
  return this. [[#variable18cc5c00]];
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18cc5b00]]
CategoryAnchor 
12[[#18cc5b00]]
Stroke 
13[[#18cc5b00]]
Stroke 
21[[#18cc5c60]]
getDomainGridlinePosition 
22[[#18cc5c60]]
getDomainGridlineStroke 
23[[#18cc5c60]]
getDomainGridlineStroke 
31[[#18cc5c00]]
domainGridlinePosition 
32[[#18cc5c00]]
domainGridlineStroke 
33[[#18cc5c00]]
domainGridlineStroke