Example usage for org.jfree.util ShapeUtilities equal

List of usage examples for org.jfree.util ShapeUtilities equal

Introduction

In this page you can find the example usage for org.jfree.util ShapeUtilities equal.

Prototype

public static boolean equal(final GeneralPath p1, final GeneralPath p2) 

Source Link

Document

Tests two polygons for equality.

Usage

From source file:spinworld.gui.RadarPlot.java

/**
 * Tests this plot for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.//from   w w  w . j  a  va 2 s . c o  m
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof RadarPlot)) {
        return false;
    }
    if (!super.equals(obj)) {
        return false;
    }
    RadarPlot that = (RadarPlot) obj;
    if (!this.dataExtractOrder.equals(that.dataExtractOrder)) {
        return false;
    }
    if (this.headPercent != that.headPercent) {
        return false;
    }
    if (this.interiorGap != that.interiorGap) {
        return false;
    }
    if (this.startAngle != that.startAngle) {
        return false;
    }
    if (!this.direction.equals(that.direction)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.maxValue, that.maxValue)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.maxValues, that.maxValues)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.origins, that.origins)) {
        return false;
    }
    if (this.webFilled != that.webFilled) {
        return false;
    }
    if (this.axisLabelGap != that.axisLabelGap) {
        return false;
    }
    if (!PaintUtilities.equal(this.axisLinePaint, that.axisLinePaint)) {
        return false;
    }
    if (!this.axisLineStroke.equals(that.axisLineStroke)) {
        return false;
    }
    if (!ShapeUtilities.equal(this.legendItemShape, that.legendItemShape)) {
        return false;
    }
    if (!PaintUtilities.equal(this.seriesPaint, that.seriesPaint)) {
        return false;
    }
    if (!this.seriesPaintList.equals(that.seriesPaintList)) {
        return false;
    }
    if (!PaintUtilities.equal(this.baseSeriesPaint, that.baseSeriesPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.seriesOutlinePaint, that.seriesOutlinePaint)) {
        return false;
    }
    if (!this.seriesOutlinePaintList.equals(that.seriesOutlinePaintList)) {
        return false;
    }
    if (!PaintUtilities.equal(this.baseSeriesOutlinePaint, that.baseSeriesOutlinePaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.seriesOutlineStroke, that.seriesOutlineStroke)) {
        return false;
    }
    if (!this.seriesOutlineStrokeList.equals(that.seriesOutlineStrokeList)) {
        return false;
    }
    if (!this.baseSeriesOutlineStroke.equals(that.baseSeriesOutlineStroke)) {
        return false;
    }
    if (!this.labelFont.equals(that.labelFont)) {
        return false;
    }
    if (!PaintUtilities.equal(this.labelPaint, that.labelPaint)) {
        return false;
    }
    if (!this.labelGenerator.equals(that.labelGenerator)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.toolTipGenerator, that.toolTipGenerator)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.urlGenerator, that.urlGenerator)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.headOutlineStroke, that.headOutlineStroke)) {
        return false;
    }
    return true;
}

From source file:KIDLYAbstractRenderer.java

/**
 * Tests this renderer for equality with another object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return <code>true</code> or <code>false</code>.
 *///www .  j av a  2s  . c o  m
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof KIDLYAbstractRenderer)) {
        return false;
    }
    KIDLYAbstractRenderer that = (KIDLYAbstractRenderer) obj;
    if (this.dataBoundsIncludesVisibleSeriesOnly != that.dataBoundsIncludesVisibleSeriesOnly) {
        return false;
    }
    if (this.treatLegendShapeAsLine != that.treatLegendShapeAsLine) {
        return false;
    }
    if (this.defaultEntityRadius != that.defaultEntityRadius) {
        return false;
    }
    if (!ObjectUtilities.equal(this.seriesVisible, that.seriesVisible)) {
        return false;
    }
    if (!this.seriesVisibleList.equals(that.seriesVisibleList)) {
        return false;
    }
    if (this.baseSeriesVisible != that.baseSeriesVisible) {
        return false;
    }
    if (!ObjectUtilities.equal(this.seriesVisibleInLegend, that.seriesVisibleInLegend)) {
        return false;
    }
    if (!this.seriesVisibleInLegendList.equals(that.seriesVisibleInLegendList)) {
        return false;
    }
    if (this.baseSeriesVisibleInLegend != that.baseSeriesVisibleInLegend) {
        return false;
    }
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.paintList, that.paintList)) {
        return false;
    }
    if (!PaintUtilities.equal(this.basePaint, that.basePaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.fillPaint, that.fillPaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.fillPaintList, that.fillPaintList)) {
        return false;
    }
    if (!PaintUtilities.equal(this.baseFillPaint, that.baseFillPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.outlinePaint, that.outlinePaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.outlinePaintList, that.outlinePaintList)) {
        return false;
    }
    if (!PaintUtilities.equal(this.baseOutlinePaint, that.baseOutlinePaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.stroke, that.stroke)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.strokeList, that.strokeList)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.baseStroke, that.baseStroke)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.outlineStroke, that.outlineStroke)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.outlineStrokeList, that.outlineStrokeList)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.baseOutlineStroke, that.baseOutlineStroke)) {
        return false;
    }
    if (!ShapeUtilities.equal(this.shape, that.shape)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.shapeList, that.shapeList)) {
        return false;
    }
    if (!ShapeUtilities.equal(this.baseShape, that.baseShape)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.itemLabelsVisible, that.itemLabelsVisible)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.itemLabelsVisibleList, that.itemLabelsVisibleList)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.baseItemLabelsVisible, that.baseItemLabelsVisible)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.itemLabelFont, that.itemLabelFont)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.itemLabelFontList, that.itemLabelFontList)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.baseItemLabelFont, that.baseItemLabelFont)) {
        return false;
    }

    if (!PaintUtilities.equal(this.itemLabelPaint, that.itemLabelPaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.itemLabelPaintList, that.itemLabelPaintList)) {
        return false;
    }
    if (!PaintUtilities.equal(this.baseItemLabelPaint, that.baseItemLabelPaint)) {
        return false;
    }

    if (!ObjectUtilities.equal(this.positiveItemLabelPosition, that.positiveItemLabelPosition)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.positiveItemLabelPositionList, that.positiveItemLabelPositionList)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.basePositiveItemLabelPosition, that.basePositiveItemLabelPosition)) {
        return false;
    }

    if (!ObjectUtilities.equal(this.negativeItemLabelPosition, that.negativeItemLabelPosition)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.negativeItemLabelPositionList, that.negativeItemLabelPositionList)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.baseNegativeItemLabelPosition, that.baseNegativeItemLabelPosition)) {
        return false;
    }
    if (this.itemLabelAnchorOffset != that.itemLabelAnchorOffset) {
        return false;
    }
    if (!ObjectUtilities.equal(this.createEntities, that.createEntities)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.createEntitiesList, that.createEntitiesList)) {
        return false;
    }
    if (this.baseCreateEntities != that.baseCreateEntities) {
        return false;
    }
    if (!ObjectUtilities.equal(this.legendShapeList, that.legendShapeList)) {
        return false;
    }
    if (!ShapeUtilities.equal(this.baseLegendShape, that.baseLegendShape)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.legendTextFont, that.legendTextFont)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.baseLegendTextFont, that.baseLegendTextFont)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.legendTextPaint, that.legendTextPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.baseLegendTextPaint, that.baseLegendTextPaint)) {
        return false;
    }
    return true;
}