congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
AbstractXYItemRenderer.equals
Code IndexAdd Tabnine to your IDE (free)

How to use
equals
method
in
org.jfree.chart.renderer.xy.AbstractXYItemRenderer

Best Java code snippets using org.jfree.chart.renderer.xy.AbstractXYItemRenderer.equals (Showing top 20 results out of 315)

origin: org.codehaus.jtstand/jtstand-chart

/**
 * Tests this renderer for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (obj == this) {
    return true;
  }
  if (!(obj instanceof XYBubbleRenderer)) {
    return false;
  }
  XYBubbleRenderer that = (XYBubbleRenderer) obj;
  if (this.scaleType != that.scaleType) {
    return false;
  }
  return super.equals(obj);
}
origin: jfree/jfreechart

/**
 * Tests this renderer for equality with an arbitrary object.
 *
 * @param obj  the object ({@code null} permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
  if (obj == this) {
    return true;
  }
  if (!(obj instanceof XYBubbleRenderer)) {
    return false;
  }
  XYBubbleRenderer that = (XYBubbleRenderer) obj;
  if (this.scaleType != that.scaleType) {
    return false;
  }
  return super.equals(obj);
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Tests this <code>VectorRenderer</code> for equality with an arbitrary
 * object.  This method returns <code>true</code> if and only if:
 * <ul>
 * <li><code>obj</code> is an instance of <code>VectorRenderer</code> (not
 *     <code>null</code>);</li>
 * <li><code>obj</code> has the same field values as this
 *     <code>VectorRenderer</code>;</li>
 * </ul>
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (obj == this) {
    return true;
  }
  if (!(obj instanceof VectorRenderer)) {
    return false;
  }
  VectorRenderer that = (VectorRenderer) obj;
  if (this.baseLength != that.baseLength) {
    return false;
  }
  if (this.headLength != that.headLength) {
    return false;
  }
  return super.equals(obj);
}
origin: jfree/jfreechart

  return false;
return super.equals(obj);
origin: org.codehaus.jtstand/jtstand-chart

  return false;
return super.equals(obj);
origin: jfree/jfreechart

  return false;
return super.equals(obj);
origin: jfree/jfreechart

/**
 * Tests this renderer for equality with an arbitrary object.
 *
 * @param obj  the object ({@code null} permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
  if (obj == this) {
    return true;
  }
  if (!(obj instanceof YIntervalRenderer)) {
    return false;
  }
  YIntervalRenderer that = (YIntervalRenderer) obj;
  if (!ObjectUtils.equal(this.additionalItemLabelGenerator,
      that.additionalItemLabelGenerator)) {
    return false;
  }
  return super.equals(obj);
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Tests this renderer for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (obj == this) {
    return true;
  }
  if (!(obj instanceof YIntervalRenderer)) {
    return false;
  }
  YIntervalRenderer that = (YIntervalRenderer) obj;
  if (!ObjectUtilities.equal(this.additionalItemLabelGenerator,
      that.additionalItemLabelGenerator)) {
    return false;
  }
  return super.equals(obj);
}
origin: jfree/jfreechart

/**
 * Tests this renderer for equality with an arbitrary object.
 *
 * @param obj  the object ({@code null} not permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
  if (obj == this) {
    return true;
  }
  if (!(obj instanceof XYAreaRenderer2)) {
    return false;
  }
  XYAreaRenderer2 that = (XYAreaRenderer2) obj;
  if (this.showOutline != that.showOutline) {
    return false;
  }
  if (!ShapeUtils.equal(this.legendArea, that.legendArea)) {
    return false;
  }
  return super.equals(obj);
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Tests this renderer for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> not permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (obj == this) {
    return true;
  }
  if (!(obj instanceof XYAreaRenderer2)) {
    return false;
  }
  XYAreaRenderer2 that = (XYAreaRenderer2) obj;
  if (this.showOutline != that.showOutline) {
    return false;
  }
  if (!ShapeUtilities.equal(this.legendArea, that.legendArea)) {
    return false;
  }
  return super.equals(obj);
}
origin: jfree/jfreechart

/**
 * Tests this renderer for equality with an arbitrary object.
 *
 * @param obj  the object ({@code null} permitted).
 *
 * @return {@code true} or {@code false}.
 */
@Override
public boolean equals(Object obj) {
  if (obj == this) {
    return true;
  }
  if (!(obj instanceof SamplingXYLineRenderer)) {
    return false;
  }
  if (!super.equals(obj)) {
    return false;
  }
  SamplingXYLineRenderer that = (SamplingXYLineRenderer) obj;
  if (!ShapeUtils.equal(this.legendLine, that.legendLine)) {
    return false;
  }
  return true;
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Tests this renderer for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return <code>true</code> or <code>false</code>.
 */
public boolean equals(Object obj) {
  if (obj == this) {
    return true;
  }
  if (!(obj instanceof SamplingXYLineRenderer)) {
    return false;
  }
  if (!super.equals(obj)) {
    return false;
  }
  SamplingXYLineRenderer that = (SamplingXYLineRenderer) obj;
  if (!ShapeUtilities.equal(this.legendLine, that.legendLine)) {
    return false;
  }
  return true;
}
origin: jfree/jfreechart

  return false;
return super.equals(obj);
origin: org.codehaus.jtstand/jtstand-chart

  return false;
return super.equals(obj);
origin: jfree/jfreechart

  return false;
if (!super.equals(obj)) {
  return false;
origin: org.codehaus.jtstand/jtstand-chart

  return false;
if (!super.equals(obj)) {
  return false;
origin: org.codehaus.jtstand/jtstand-chart

  return false;
if (!super.equals(obj)) {
  return false;
origin: jfree/jfreechart

  return false;
if (!super.equals(obj)) {
  return false;
origin: org.codehaus.jtstand/jtstand-chart

  return false;
if (!super.equals(obj)) {
  return false;
origin: jfree/jfreechart

  return false;
if (!super.equals(obj)) {
  return false;
org.jfree.chart.renderer.xyAbstractXYItemRendererequals

Javadoc

Tests this renderer for equality with another object.

Popular methods of AbstractXYItemRenderer

  • getLegendItem
    Returns a default legend item for the specified series. Subclasses should override this method to ge
  • initialise
    Initialises the renderer and returns a state object that should be passed to all subsequent calls to
  • addAnnotation
    Adds an annotation to the specified layer and sends a RendererChangeEvent to all registered listener
  • calculateDomainMarkerTextAnchorPoint
    Calculates the (x, y) coordinates for drawing a marker label.
  • calculateLabelAnchorPoint
  • calculateRangeMarkerTextAnchorPoint
    Calculates the (x, y) coordinates for drawing a marker label.
  • clone
    Returns a clone of the renderer.
  • drawDomainLine
    Draws a line perpendicular to the domain axis.
  • findDomainBounds
    Returns the lower and upper bounds (range) of the x-values in the specified dataset.
  • findRangeBounds
    Returns the range of values the renderer requires to display all the items from the specified datase
  • fireChangeEvent
  • getAnnotations
    Returns a collection of the annotations that are assigned to the renderer.
  • fireChangeEvent,
  • getAnnotations,
  • getDataBoundsIncludesVisibleSeriesOnly,
  • getDefaultEntityRadius,
  • getItemCreateEntity,
  • getItemLabelFont,
  • getItemLabelGenerator,
  • getItemLabelPaint,
  • getLegendItemToolTipGenerator

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSupportFragmentManager (FragmentActivity)
  • setRequestProperty (URLConnection)
  • getSystemService (Context)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Notification (javax.management)
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • JLabel (javax.swing)
  • Table (org.hibernate.mapping)
    A relational table
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now