CloneSet1146


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

/**
 * Adds a marker for display (in the foreground) against the domain axis and
 * sends a {@link PlotChangeEvent} to all registered listeners. Typically a
 * marker will be drawn by the renderer as a line perpendicular to the
 * domain axis, however this is entirely up to the renderer.
 *
 * @param marker  the marker (<code>null</code> not permitted).
 *
 * @see #removeDomainMarker(Marker)
 */
public void addDomainMarker(CategoryMarker marker) {
  addDomainMarker(marker, Layer.FOREGROUND);
}

/**
 * Adds a marker for display against the domain axis and sends a
 * {@link PlotChangeEvent} to all registered listeners.  Typically a marker
 * will be drawn by the renderer as a line perpendicular to the domain
 * axis, however this is entirely up to the renderer.
 *
 * @param marker  the marker (<code>null</code> not permitted).
 * @param layer  the layer (foreground or background) (<code>null</code>
 *               not permitted).
 *
 * @see #removeDomainMarker(Marker, Layer)
 */
public void addDomainMarker(CategoryMarker marker, Layer layer) {
  addDomainMarker(0, marker, layer);
}


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

/**
 * Adds a marker for the domain axis and sends a {@link PlotChangeEvent}
 * to all registered listeners.
 * <P>
 * Typically a marker will be drawn by the renderer as a line perpendicular
 * to the range axis, however this is entirely up to the renderer.
 *
 * @param marker  the marker (<code>null</code> not permitted).
 *
 * @see #addDomainMarker(Marker, Layer)
 * @see #clearDomainMarkers()
 */
public void addDomainMarker(Marker marker) {
  // defer argument checking...
  addDomainMarker(marker, Layer.FOREGROUND);
}

/**
 * Adds a marker for the domain axis in the specified layer and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 * <P>
 * Typically a marker will be drawn by the renderer as a line perpendicular
 * to the range axis, however this is entirely up to the renderer.
 *
 * @param marker  the marker (<code>null</code> not permitted).
 * @param layer  the layer (foreground or background).
 *
 * @see #addDomainMarker(int, Marker, Layer)
 */
public void addDomainMarker(Marker marker, Layer layer) {
  addDomainMarker(0, marker, layer);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Adds a marker for the domain axis and sends a {@link PlotChangeEvent}
     * to all registered listeners.
     * <P>
     * Typically a marker will be drawn by the renderer as a line perpendicular
     * to the range axis, however this is entirely up to the renderer.
     *
     * @param marker  the marker (<code>null</code> not permitted).
     *
     * @see #addDomainMarker(Marker, Layer)
     * @see #clearDomainMarkers()
     */
/**
     * Adds a marker for display (in the foreground) against the domain axis and
     * sends a {@link PlotChangeEvent} to all registered listeners. Typically a
     * marker will be drawn by the renderer as a line perpendicular to the
     * domain axis, however this is entirely up to the renderer.
     *
     * @param marker  the marker (<code>null</code> not permitted).
     *
     * @see #removeDomainMarker(Marker)
     */
public void addDomainMarker( [[#variable18eb0e40]] marker) {
  // defer argument checking...
  addDomainMarker(marker, Layer.FOREGROUND);
}

/**
     * Adds a marker for the domain axis in the specified layer and sends a
     * {@link PlotChangeEvent} to all registered listeners.
     * <P>
     * Typically a marker will be drawn by the renderer as a line perpendicular
     * to the range axis, however this is entirely up to the renderer.
     *
     * @param marker  the marker (<code>null</code> not permitted).
     * @param layer  the layer (foreground or background).
     *
     * @see #addDomainMarker(int, Marker, Layer)
     */
/**
     * Adds a marker for display against the domain axis and sends a
     * {@link PlotChangeEvent} to all registered listeners.  Typically a marker
     * will be drawn by the renderer as a line perpendicular to the domain
     * axis, however this is entirely up to the renderer.
     *
     * @param marker  the marker (<code>null</code> not permitted).
     * @param layer  the layer (foreground or background) (<code>null</code>
     *               not permitted).
     *
     * @see #removeDomainMarker(Marker, Layer)
     */
public void addDomainMarker( [[#variable18eb0e40]] marker, Layer layer) {
  addDomainMarker(0, marker, layer);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18eb0e40]]
CategoryMarker 
12[[#18eb0e40]]
Marker