Java Code Examples for org.jfree.util.PaintUtilities#equal()

The following examples show how to use org.jfree.util.PaintUtilities#equal() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DialPointer.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Tests this pointer for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof DialPointer.Pointer)) {
        return false;
    }
    DialPointer.Pointer that = (DialPointer.Pointer) obj;

    if (this.widthRadius != that.widthRadius) {
        return false;
    }
    if (!PaintUtilities.equal(this.fillPaint, that.fillPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.outlinePaint, that.outlinePaint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example 2
Source File: LineRenderer3D.java    From SIMVA-SoS with Apache License 2.0 6 votes vote down vote up
/**
 * Checks this renderer for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof LineRenderer3D)) {
        return false;
    }
    LineRenderer3D that = (LineRenderer3D) obj;
    if (this.xOffset != that.xOffset) {
        return false;
    }
    if (this.yOffset != that.yOffset) {
        return false;
    }
    if (!PaintUtilities.equal(this.wallPaint, that.wallPaint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example 3
Source File: LookupPaintScale.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Tests this item for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof PaintItem)) {
        return false;
    }
    PaintItem that = (PaintItem) obj;
    if (this.value != that.value) {
        return false;
    }
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    return true;
}
 
Example 4
Source File: ExtendedCategoryAxis.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Tests this axis for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof ExtendedCategoryAxis)) {
        return false;
    }
    ExtendedCategoryAxis that = (ExtendedCategoryAxis) obj;
    if (!this.sublabelFont.equals(that.sublabelFont)) {
        return false;
    }
    if (!PaintUtilities.equal(this.sublabelPaint, that.sublabelPaint)) {
        return false;
    }
    if (!this.sublabels.equals(that.sublabels)) {
        return false;
    }
    return super.equals(obj);
}
 
Example 5
Source File: DialPointer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Tests this pointer for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof DialPointer.Pointer)) {
        return false;
    }
    DialPointer.Pointer that = (DialPointer.Pointer) obj;

    if (this.widthRadius != that.widthRadius) {
        return false;
    }
    if (!PaintUtilities.equal(this.fillPaint, that.fillPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.outlinePaint, that.outlinePaint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example 6
Source File: StandardDialFrame.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Tests this instance for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof StandardDialFrame)) {
        return false;
    }
    StandardDialFrame that = (StandardDialFrame) obj;
    if (!PaintUtilities.equal(this.backgroundPaint, that.backgroundPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.foregroundPaint, that.foregroundPaint)) {
        return false;
    }
    if (this.radius != that.radius) {
        return false;
    }
    if (!this.stroke.equals(that.stroke)) {
        return false;
    }
    return super.equals(obj);
}
 
Example 7
Source File: PaintMap.java    From ccu-historian with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Tests this map for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof PaintMap)) {
        return false;
    }
    PaintMap that = (PaintMap) obj;
    if (this.store.size() != that.store.size()) {
        return false;
    }
    Set keys = this.store.keySet();
    Iterator iterator = keys.iterator();
    while (iterator.hasNext()) {
        Comparable key = (Comparable) iterator.next();
        Paint p1 = getPaint(key);
        Paint p2 = that.getPaint(key);
        if (!PaintUtilities.equal(p1, p2)) {
            return false;
        }
    }
    return true;
}
 
Example 8
Source File: XYLine3DRenderer.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Tests this renderer for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof XYLine3DRenderer)) {
        return false;
    }
    XYLine3DRenderer that = (XYLine3DRenderer) obj;
    if (this.xOffset != that.xOffset) {
        return false;
    }
    if (this.yOffset != that.yOffset) {
        return false;
    }
    if (!PaintUtilities.equal(this.wallPaint, that.wallPaint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example 9
Source File: CategoryLineAnnotation.java    From ccu-historian with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Tests this object for equality with another.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return <code>true</code> or <code>false</code>.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof CategoryLineAnnotation)) {
        return false;
    }
    CategoryLineAnnotation that = (CategoryLineAnnotation) obj;
    if (!this.category1.equals(that.getCategory1())) {
        return false;
    }
    if (this.value1 != that.getValue1()) {
        return false;
    }
    if (!this.category2.equals(that.getCategory2())) {
        return false;
    }
    if (this.value2 != that.getValue2()) {
        return false;
    }
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.stroke, that.stroke)) {
        return false;
    }
    return true;
}
 
Example 10
Source File: MeterNeedle.java    From opensim-gui with Apache License 2.0 5 votes vote down vote up
/**
 * Tests another object for equality with this object.
 *
 * @param obj the object to test (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof MeterNeedle)) {
        return false;
    }
    MeterNeedle that = (MeterNeedle) obj;
    if (!PaintUtilities.equal(this.outlinePaint, that.outlinePaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.outlineStroke, that.outlineStroke)) {
        return false;
    }
    if (!PaintUtilities.equal(this.fillPaint, that.fillPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.highlightPaint, that.highlightPaint)) {
        return false;
    }
    if (this.size != that.size) {
        return false;
    }
    if (this.rotateX != that.rotateX) {
        return false;
    }
    if (this.rotateY != that.rotateY) {
        return false;
    }
    return true;
}
 
Example 11
Source File: ColorBlock.java    From SIMVA-SoS with Apache License 2.0 5 votes vote down vote up
/**
 * Tests this block for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof ColorBlock)) {
        return false;
    }
    ColorBlock that = (ColorBlock) obj;
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example 12
Source File: XYLineAnnotation.java    From ccu-historian with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Tests this object for equality with an arbitrary object.
 *
 * @param obj  the object to test against (<code>null</code> permitted).
 *
 * @return <code>true</code> or <code>false</code>.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!super.equals(obj)) {
        return false;
    }
    if (!(obj instanceof XYLineAnnotation)) {
        return false;
    }
    XYLineAnnotation that = (XYLineAnnotation) obj;
    if (this.x1 != that.x1) {
        return false;
    }
    if (this.y1 != that.y1) {
        return false;
    }
    if (this.x2 != that.x2) {
        return false;
    }
    if (this.y2 != that.y2) {
        return false;
    }
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.stroke, that.stroke)) {
        return false;
    }
    // seems to be the same...
    return true;
}
 
Example 13
Source File: BoxAndWhiskerRenderer.java    From ECG-Viewer with GNU General Public License v2.0 5 votes vote down vote up
/**
 * 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>.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof BoxAndWhiskerRenderer)) {
        return false;
    }
    BoxAndWhiskerRenderer that = (BoxAndWhiskerRenderer) obj;
    if (this.fillBox != that.fillBox) {
        return false;
    }
    if (this.itemMargin != that.itemMargin) {
        return false;
    }
    if (this.maximumBarWidth != that.maximumBarWidth) {
        return false;
    }
    if (this.meanVisible != that.meanVisible) {
        return false;
    }
    if (this.medianVisible != that.medianVisible) {
        return false;
    }
    if (this.useOutlinePaintForWhiskers
            != that.useOutlinePaintForWhiskers) {
        return false;
    }
    if (this.whiskerWidth != that.whiskerWidth) {
        return false;
    }
    if (!PaintUtilities.equal(this.artifactPaint, that.artifactPaint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example 14
Source File: Crosshair.java    From buffer_bci with GNU General Public License v3.0 4 votes vote down vote up
/**
 * Tests this crosshair for equality with an arbitrary object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof Crosshair)) {
        return false;
    }
    Crosshair that = (Crosshair) obj;
    if (this.visible != that.visible) {
        return false;
    }
    if (this.value != that.value) {
        return false;
    }
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    if (!this.stroke.equals(that.stroke)) {
        return false;
    }
    if (this.labelVisible != that.labelVisible) {
        return false;
    }
    if (!this.labelGenerator.equals(that.labelGenerator)) {
        return false;
    }
    if (!this.labelAnchor.equals(that.labelAnchor)) {
        return false;
    }
    if (this.labelXOffset != that.labelXOffset) {
        return false;
    }
    if (this.labelYOffset != that.labelYOffset) {
        return false;
    }
    if (!this.labelFont.equals(that.labelFont)) {
        return false;
    }
    if (!PaintUtilities.equal(this.labelPaint, that.labelPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.labelBackgroundPaint,
            that.labelBackgroundPaint)) {
        return false;
    }
    if (this.labelOutlineVisible != that.labelOutlineVisible) {
        return false;
    }
    if (!PaintUtilities.equal(this.labelOutlinePaint,
            that.labelOutlinePaint)) {
        return false;
    }
    if (!this.labelOutlineStroke.equals(that.labelOutlineStroke)) {
        return false;
    }
    return true;  // can't find any difference
}
 
Example 15
Source File: StandardDialScale.java    From buffer_bci with GNU General Public License v3.0 4 votes vote down vote up
/**
 * Tests this <code>StandardDialScale</code> for equality with an arbitrary
 * object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof StandardDialScale)) {
        return false;
    }
    StandardDialScale that = (StandardDialScale) obj;
    if (this.lowerBound != that.lowerBound) {
        return false;
    }
    if (this.upperBound != that.upperBound) {
        return false;
    }
    if (this.startAngle != that.startAngle) {
        return false;
    }
    if (this.extent != that.extent) {
        return false;
    }
    if (this.tickRadius != that.tickRadius) {
        return false;
    }
    if (this.majorTickIncrement != that.majorTickIncrement) {
        return false;
    }
    if (this.majorTickLength != that.majorTickLength) {
        return false;
    }
    if (!PaintUtilities.equal(this.majorTickPaint, that.majorTickPaint)) {
        return false;
    }
    if (!this.majorTickStroke.equals(that.majorTickStroke)) {
        return false;
    }
    if (this.minorTickCount != that.minorTickCount) {
        return false;
    }
    if (this.minorTickLength != that.minorTickLength) {
        return false;
    }
    if (!PaintUtilities.equal(this.minorTickPaint, that.minorTickPaint)) {
        return false;
    }
    if (!this.minorTickStroke.equals(that.minorTickStroke)) {
        return false;
    }
    if (this.tickLabelsVisible != that.tickLabelsVisible) {
        return false;
    }
    if (this.tickLabelOffset != that.tickLabelOffset) {
        return false;
    }
    if (!this.tickLabelFont.equals(that.tickLabelFont)) {
        return false;
    }
    if (!PaintUtilities.equal(this.tickLabelPaint, that.tickLabelPaint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example 16
Source File: FastScatterPlot.java    From opensim-gui with Apache License 2.0 4 votes vote down vote up
/**
 * Tests an object for equality with this instance.
 * 
 * @param obj  the object (<code>null</code> permitted).
 * 
 * @return A boolean.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!super.equals(obj)) {
        return false;
    }
    if (!(obj instanceof FastScatterPlot)) {
        return false;
    }
    FastScatterPlot that = (FastScatterPlot) obj;
    if (!ArrayUtilities.equal(this.data, that.data)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.domainAxis, that.domainAxis)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.rangeAxis, that.rangeAxis)) {
        return false;
    }
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    if (this.domainGridlinesVisible != that.domainGridlinesVisible) {
        return false;
    }
    if (!PaintUtilities.equal(this.domainGridlinePaint, 
            that.domainGridlinePaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.domainGridlineStroke, 
            that.domainGridlineStroke)) {
        return false;
    }  
    if (!this.rangeGridlinesVisible == that.rangeGridlinesVisible) {
        return false;
    }
    if (!PaintUtilities.equal(this.rangeGridlinePaint, 
            that.rangeGridlinePaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.rangeGridlineStroke, 
            that.rangeGridlineStroke)) {
        return false;
    }              
    return true;
}
 
Example 17
Source File: FastScatterPlot.java    From openstock with GNU General Public License v3.0 4 votes vote down vote up
/**
 * Tests an arbitrary object for equality with this plot.  Note that
 * <code>FastScatterPlot</code> carries its data around with it (rather
 * than referencing a dataset), and the data is included in the
 * equality test.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!super.equals(obj)) {
        return false;
    }
    if (!(obj instanceof FastScatterPlot)) {
        return false;
    }
    FastScatterPlot that = (FastScatterPlot) obj;
    if (this.domainPannable != that.domainPannable) {
        return false;
    }
    if (this.rangePannable != that.rangePannable) {
        return false;
    }
    if (!ArrayUtilities.equal(this.data, that.data)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.domainAxis, that.domainAxis)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.rangeAxis, that.rangeAxis)) {
        return false;
    }
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    if (this.domainGridlinesVisible != that.domainGridlinesVisible) {
        return false;
    }
    if (!PaintUtilities.equal(this.domainGridlinePaint,
            that.domainGridlinePaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.domainGridlineStroke,
            that.domainGridlineStroke)) {
        return false;
    }
    if (!this.rangeGridlinesVisible == that.rangeGridlinesVisible) {
        return false;
    }
    if (!PaintUtilities.equal(this.rangeGridlinePaint,
            that.rangeGridlinePaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.rangeGridlineStroke,
            that.rangeGridlineStroke)) {
        return false;
    }
    return true;
}
 
Example 18
Source File: RingPlot.java    From buffer_bci with GNU General Public License v3.0 4 votes vote down vote up
/**
 * Tests this plot for equality with an arbitrary object.
 *
 * @param obj  the object to test against (<code>null</code> permitted).
 *
 * @return A boolean.
 */
@Override
public boolean equals(Object obj) {
    if (this == obj) {
        return true;
    }
    if (!(obj instanceof RingPlot)) {
        return false;
    }
    RingPlot that = (RingPlot) obj;
    if (!this.centerTextMode.equals(that.centerTextMode)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.centerText, that.centerText)) {
        return false;
    }
    if (!this.centerTextFormatter.equals(that.centerTextFormatter)) {
        return false;
    }
    if (!this.centerTextFont.equals(that.centerTextFont)) {
        return false;
    }
    if (!this.centerTextColor.equals(that.centerTextColor)) {
        return false;
    }
    if (this.separatorsVisible != that.separatorsVisible) {
        return false;
    }
    if (!ObjectUtilities.equal(this.separatorStroke,
            that.separatorStroke)) {
        return false;
    }
    if (!PaintUtilities.equal(this.separatorPaint, that.separatorPaint)) {
        return false;
    }
    if (this.innerSeparatorExtension != that.innerSeparatorExtension) {
        return false;
    }
    if (this.outerSeparatorExtension != that.outerSeparatorExtension) {
        return false;
    }
    if (this.sectionDepth != that.sectionDepth) {
        return false;
    }
    return super.equals(obj);
}
 
Example 19
Source File: Axis.java    From SIMVA-SoS with Apache License 2.0 4 votes vote down vote up
/**
 * Tests this axis for equality with another object.
 *
 * @param obj  the object ({@code null} permitted).
 *
 * @return <code>true</code> or <code>false</code>.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof Axis)) {
        return false;
    }
    Axis that = (Axis) obj;
    if (this.visible != that.visible) {
        return false;
    }
    if (!ObjectUtilities.equal(this.label, that.label)) {
        return false;
    }
    if (!AttributedStringUtilities.equal(this.attributedLabel, 
            that.attributedLabel)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.labelFont, that.labelFont)) {
        return false;
    }
    if (!PaintUtilities.equal(this.labelPaint, that.labelPaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.labelInsets, that.labelInsets)) {
        return false;
    }
    if (this.labelAngle != that.labelAngle) {
        return false;
    }
    if (!this.labelLocation.equals(that.labelLocation)) {
        return false;
    }
    if (this.axisLineVisible != that.axisLineVisible) {
        return false;
    }
    if (!ObjectUtilities.equal(this.axisLineStroke, that.axisLineStroke)) {
        return false;
    }
    if (!PaintUtilities.equal(this.axisLinePaint, that.axisLinePaint)) {
        return false;
    }
    if (this.tickLabelsVisible != that.tickLabelsVisible) {
        return false;
    }
    if (!ObjectUtilities.equal(this.tickLabelFont, that.tickLabelFont)) {
        return false;
    }
    if (!PaintUtilities.equal(this.tickLabelPaint, that.tickLabelPaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(
        this.tickLabelInsets, that.tickLabelInsets
    )) {
        return false;
    }
    if (this.tickMarksVisible != that.tickMarksVisible) {
        return false;
    }
    if (this.tickMarkInsideLength != that.tickMarkInsideLength) {
        return false;
    }
    if (this.tickMarkOutsideLength != that.tickMarkOutsideLength) {
        return false;
    }
    if (!PaintUtilities.equal(this.tickMarkPaint, that.tickMarkPaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.tickMarkStroke, that.tickMarkStroke)) {
        return false;
    }
    if (this.minorTickMarksVisible != that.minorTickMarksVisible) {
        return false;
    }
    if (this.minorTickMarkInsideLength != that.minorTickMarkInsideLength) {
        return false;
    }
    if (this.minorTickMarkOutsideLength
            != that.minorTickMarkOutsideLength) {
        return false;
    }
    if (this.fixedDimension != that.fixedDimension) {
        return false;
    }
    return true;
}
 
Example 20
Source File: PolarPlot.java    From SIMVA-SoS with Apache License 2.0 4 votes vote down vote up
/**
 * Tests this plot for equality with another object.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return <code>true</code> or <code>false</code>.
 */
@Override
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof PolarPlot)) {
        return false;
    }
    PolarPlot that = (PolarPlot) obj;
    if (!this.axes.equals(that.axes)) {
        return false;
    }
    if (!this.axisLocations.equals(that.axisLocations)) {
        return false;
    }
    if (!this.renderers.equals(that.renderers)) {
        return false;
    }
    if (!this.angleTickUnit.equals(that.angleTickUnit)) {
        return false;
    }
    if (this.angleGridlinesVisible != that.angleGridlinesVisible) {
        return false;
    }
    if (this.angleOffset != that.angleOffset)
    {
        return false;
    }
    if (this.counterClockwise != that.counterClockwise)
    {
        return false;
    }
    if (this.angleLabelsVisible != that.angleLabelsVisible) {
        return false;
    }
    if (!this.angleLabelFont.equals(that.angleLabelFont)) {
        return false;
    }
    if (!PaintUtilities.equal(this.angleLabelPaint, that.angleLabelPaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.angleGridlineStroke,
            that.angleGridlineStroke)) {
        return false;
    }
    if (!PaintUtilities.equal(
        this.angleGridlinePaint, that.angleGridlinePaint
    )) {
        return false;
    }
    if (this.radiusGridlinesVisible != that.radiusGridlinesVisible) {
        return false;
    }
    if (!ObjectUtilities.equal(this.radiusGridlineStroke,
            that.radiusGridlineStroke)) {
        return false;
    }
    if (!PaintUtilities.equal(this.radiusGridlinePaint,
            that.radiusGridlinePaint)) {
        return false;
    }
    if (this.radiusMinorGridlinesVisible !=
        that.radiusMinorGridlinesVisible) {
        return false;
    }
    if (!this.cornerTextItems.equals(that.cornerTextItems)) {
        return false;
    }
    if (this.margin != that.margin) {
        return false;
    }
    if (!ObjectUtilities.equal(this.fixedLegendItems,
            that.fixedLegendItems)) {
        return false;
    }
    return super.equals(obj);
}