org.jfree.chart.util.PaintUtilities Java Examples

The following examples show how to use org.jfree.chart.util.PaintUtilities. 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: CategoryAxis.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Tests two maps containing (<code>Comparable</code>, <code>Paint</code>)
 * elements for equality.
 * 
 * @param map1  the first map (<code>null</code> not permitted).
 * @param map2  the second map (<code>null</code> not permitted).
 * 
 * @return A boolean.
 */
private boolean equalPaintMaps(Map map1, Map map2) {
    if (map1.size() != map2.size()) {
        return false;
    }
    Set entries = map1.entrySet();
    Iterator iterator = entries.iterator();
    while (iterator.hasNext()) {
        Map.Entry entry = (Map.Entry) iterator.next();
        Paint p1 = (Paint) entry.getValue();
        Paint p2 = (Paint) map2.get(entry.getKey());
        if (!PaintUtilities.equal(p1, p2)) {
            return false;  
        }
    }
    return true;
}
 
Example #2
Source File: Chart_25_StatisticalBarRenderer_s.java    From coming with MIT License 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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;   
    }
    if (!(obj instanceof StatisticalBarRenderer)) {
        return false;   
    }
    if (!super.equals(obj)) {
        return false;   
    }
    StatisticalBarRenderer that = (StatisticalBarRenderer) obj;
    if (!PaintUtilities.equal(this.errorIndicatorPaint, 
            that.errorIndicatorPaint)) {
        return false;
    }
    return true;
}
 
Example #3
Source File: GanttRenderer.java    From astor 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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof GanttRenderer)) {
        return false;
    }
    GanttRenderer that = (GanttRenderer) obj;
    if (!PaintUtilities.equal(this.completePaint, that.completePaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.incompletePaint, that.incompletePaint)) {
        return false;
    }
    if (this.startPercent != that.startPercent) {
        return false;
    }
    if (this.endPercent != that.endPercent) {
        return false;
    }
    return super.equals(obj);
}
 
Example #4
Source File: GanttRenderer.java    From astor 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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof GanttRenderer)) {
        return false;
    }
    GanttRenderer that = (GanttRenderer) obj;
    if (!PaintUtilities.equal(this.completePaint, that.completePaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.incompletePaint, that.incompletePaint)) {
        return false;
    }
    if (this.startPercent != that.startPercent) {
        return false;
    }
    if (this.endPercent != that.endPercent) {
        return false;
    }
    return super.equals(obj);
}
 
Example #5
Source File: MinMaxCategoryRenderer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Tests this instance for equality with an arbitrary object.  The icon
 * fields are NOT included in the test, so this implementation is a little
 * weak.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 *
 * @since 1.0.7
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof MinMaxCategoryRenderer)) {
        return false;
    }
    MinMaxCategoryRenderer that = (MinMaxCategoryRenderer) obj;
    if (this.plotLines != that.plotLines) {
        return false;
    }
    if (!PaintUtilities.equal(this.groupPaint, that.groupPaint)) {
        return false;
    }
    if (!this.groupStroke.equals(that.groupStroke)) {
        return false;
    }
    return super.equals(obj);
}
 
Example #6
Source File: DialBackground.java    From astor with GNU General Public License v2.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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof DialBackground)) {
        return false;
    }
    DialBackground that = (DialBackground) obj;
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    if (!this.gradientPaintTransformer.equals(
            that.gradientPaintTransformer)) {
        return false;
    }
    return super.equals(obj);
}
 
Example #7
Source File: LineBorder.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Tests this border for equality with an arbitrary instance.
 * 
 * @param obj  the object (<code>null</code> permitted).
 * 
 * @return A boolean.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;   
    }
    if (!(obj instanceof LineBorder)) {
        return false;   
    }
    LineBorder that = (LineBorder) obj;
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.stroke, that.stroke)){
        return false;
    }
    if (!this.insets.equals(that.insets)) {
        return false;
    }
    return true;
}
 
Example #8
Source File: SymbolAxis.java    From astor 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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof SymbolAxis)) {
        return false;
    }
    SymbolAxis that = (SymbolAxis) obj;
    if (!this.symbols.equals(that.symbols)) {
        return false;
    }
    if (this.gridBandsVisible != that.gridBandsVisible) {
        return false;
    }
    if (!PaintUtilities.equal(this.gridBandPaint, that.gridBandPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.gridBandAlternatePaint, 
            that.gridBandAlternatePaint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example #9
Source File: DialPointer.java    From astor 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.
 */
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 #10
Source File: StatisticalLineAndShapeRenderer.java    From astor 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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof StatisticalLineAndShapeRenderer)) {
        return false;
    }
    StatisticalLineAndShapeRenderer that
            = (StatisticalLineAndShapeRenderer) obj;
    if (!PaintUtilities.equal(this.errorIndicatorPaint,
            that.errorIndicatorPaint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example #11
Source File: LineRenderer3D.java    From astor with GNU General Public License v2.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.
 */
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 #12
Source File: SymbolAxis.java    From astor 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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof SymbolAxis)) {
        return false;
    }
    SymbolAxis that = (SymbolAxis) obj;
    if (!this.symbols.equals(that.symbols)) {
        return false;
    }
    if (this.gridBandsVisible != that.gridBandsVisible) {
        return false;
    }
    if (!PaintUtilities.equal(this.gridBandPaint, that.gridBandPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.gridBandAlternatePaint,
            that.gridBandAlternatePaint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example #13
Source File: LineBorder.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Tests this border for equality with an arbitrary instance.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof LineBorder)) {
        return false;
    }
    LineBorder that = (LineBorder) obj;
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.stroke, that.stroke)) {
        return false;
    }
    if (!this.insets.equals(that.insets)) {
        return false;
    }
    return true;
}
 
Example #14
Source File: StandardDialFrame.java    From astor with GNU General Public License v2.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.
 */
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 #15
Source File: LookupPaintScale.java    From astor with GNU General Public License v2.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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof LookupPaintScale)) {
        return false;
    }
    LookupPaintScale that = (LookupPaintScale) obj;
    if (this.lowerBound != that.lowerBound) {
        return false;
    }
    if (this.upperBound != that.upperBound) {
        return false;
    }
    if (!PaintUtilities.equal(this.defaultPaint, that.defaultPaint)) {
        return false;
    }
    if (!this.lookupTable.equals(that.lookupTable)) {
        return false;
    }
    return true;
}
 
Example #16
Source File: LookupPaintScale.java    From astor with GNU General Public License v2.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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof LookupPaintScale)) {
        return false;
    }
    LookupPaintScale that = (LookupPaintScale) obj;
    if (this.lowerBound != that.lowerBound) {
        return false;
    }
    if (this.upperBound != that.upperBound) {
        return false;
    }
    if (!PaintUtilities.equal(this.defaultPaint, that.defaultPaint)) {
        return false;
    }
    if (!this.lookupTable.equals(that.lookupTable)) {
        return false;
    }
    return true;
}
 
Example #17
Source File: ExtendedCategoryAxis.java    From astor 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.
 */
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 #18
Source File: StatisticalLineAndShapeRenderer.java    From astor 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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof StatisticalLineAndShapeRenderer)) {
        return false;
    }
    StatisticalLineAndShapeRenderer that
            = (StatisticalLineAndShapeRenderer) obj;
    if (!PaintUtilities.equal(this.errorIndicatorPaint,
            that.errorIndicatorPaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.errorIndicatorStroke,
            that.errorIndicatorStroke)) {
        return false;
    }
    return super.equals(obj);
}
 
Example #19
Source File: Nopol2017_004_s.java    From coming with MIT License 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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;   
    }
    if (!(obj instanceof StatisticalBarRenderer)) {
        return false;   
    }
    if (!super.equals(obj)) {
        return false;   
    }
    StatisticalBarRenderer that = (StatisticalBarRenderer) obj;
    if (!PaintUtilities.equal(this.errorIndicatorPaint, 
            that.errorIndicatorPaint)) {
        return false;
    }
    return true;
}
 
Example #20
Source File: Nopol2017_004_t.java    From coming with MIT License 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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;   
    }
    if (!(obj instanceof StatisticalBarRenderer)) {
        return false;   
    }
    if (!super.equals(obj)) {
        return false;   
    }
    StatisticalBarRenderer that = (StatisticalBarRenderer) obj;
    if (!PaintUtilities.equal(this.errorIndicatorPaint, 
            that.errorIndicatorPaint)) {
        return false;
    }
    return true;
}
 
Example #21
Source File: DialTextAnnotation.java    From astor with GNU General Public License v2.0 5 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.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof DialTextAnnotation)) {
        return false;
    }
    DialTextAnnotation that = (DialTextAnnotation) obj;
    if (!this.label.equals(that.label)) {
        return false;
    }
    if (!this.font.equals(that.font)) {
        return false;
    }
    if (!PaintUtilities.equal(this.paint, that.paint)) {
        return false;
    }
    if (this.radius != that.radius) {
        return false;
    }
    if (this.angle != that.angle) {
        return false;
    }
    if (!this.anchor.equals(that.anchor)) {
        return false;
    }
    return super.equals(obj);
}
 
Example #22
Source File: RingPlot.java    From astor with GNU General Public License v2.0 5 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.
 */
public boolean equals(Object obj) {
    if (this == obj) {
        return true;
    }
    if (!(obj instanceof RingPlot)) {
        return false;
    }
    RingPlot that = (RingPlot) obj;
    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 #23
Source File: XYShapeAnnotation.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Tests this annotation 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;
    }
    // now try to reject equality
    if (!super.equals(obj)) {
        return false;
    }
    if (!(obj instanceof XYShapeAnnotation)) {
        return false;
    }
    XYShapeAnnotation that = (XYShapeAnnotation) obj;
    if (!this.shape.equals(that.shape)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.stroke, that.stroke)) {
        return false;
    }
    if (!PaintUtilities.equal(this.outlinePaint, that.outlinePaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.fillPaint, that.fillPaint)) {
        return false;
    }
    // seem to be the same
    return true;
}
 
Example #24
Source File: CyclicNumberAxis.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Tests the axis for equality with another object.
 *
 * @param obj  the object to test against.
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof CyclicNumberAxis)) {
        return false;
    }
    if (!super.equals(obj)) {
        return false;
    }
    CyclicNumberAxis that = (CyclicNumberAxis) obj;
    if (this.period != that.period) {
        return false;
    }
    if (this.offset != that.offset) {
        return false;
    }
    if (!PaintUtilities.equal(this.advanceLinePaint,
            that.advanceLinePaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.advanceLineStroke,
            that.advanceLineStroke)) {
        return false;
    }
    if (this.advanceLineVisible != that.advanceLineVisible) {
        return false;
    }
    if (this.boundMappedToLastCycle != that.boundMappedToLastCycle) {
        return false;
    }
    return true;
}
 
Example #25
Source File: PaintScaleLegend.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Tests this legend for equality with an arbitrary object.
 * 
 * @param obj  the object (<code>null</code> permitted).
 * 
 * @return A boolean.
 */
public boolean equals(Object obj) {
    if (!(obj instanceof PaintScaleLegend)) {
        return false;
    }
    PaintScaleLegend that = (PaintScaleLegend) obj;
    if (!this.scale.equals(that.scale)) {
        return false;
    }
    if (!this.axis.equals(that.axis)) {
        return false;
    }
    if (!this.axisLocation.equals(that.axisLocation)) {
        return false;
    }
    if (this.axisOffset != that.axisOffset) {
        return false;
    }
    if (this.stripWidth != that.stripWidth) {
        return false;
    }
    if (this.stripOutlineVisible != that.stripOutlineVisible) {
        return false;
    }
    if (!PaintUtilities.equal(this.stripOutlinePaint, 
            that.stripOutlinePaint)) {
        return false;
    }
    if (!this.stripOutlineStroke.equals(that.stripOutlineStroke)) {
        return false;
    }
    if (!PaintUtilities.equal(this.backgroundPaint, that.backgroundPaint)) {
        return false;
    }
    return super.equals(obj);
}
 
Example #26
Source File: WaterfallBarRenderer.java    From astor with GNU General Public License v2.0 5 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 WaterfallBarRenderer)) {
        return false;
    }
    WaterfallBarRenderer that = (WaterfallBarRenderer) obj;
    if (!PaintUtilities.equal(this.firstBarPaint, that.firstBarPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.lastBarPaint, that.lastBarPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.positiveBarPaint,
            that.positiveBarPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.negativeBarPaint,
            that.negativeBarPaint)) {
        return false;
    }
    return true;

}
 
Example #27
Source File: ColorBlock.java    From astor with GNU General Public License v2.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.
 */
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 #28
Source File: MultiplePiePlot.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Tests this plot for equality with an arbitrary object.  Note that the
 * plot's dataset is not considered in the equality test.
 *
 * @param obj  the object (<code>null</code> permitted).
 *
 * @return <code>true</code> if this plot is equal to <code>obj</code>, and
 *     <code>false</code> otherwise.
 */
public boolean equals(Object obj) {
    if (obj == this) {
        return true;
    }
    if (!(obj instanceof MultiplePiePlot)) {
        return false;
    }
    MultiplePiePlot that = (MultiplePiePlot) obj;
    if (this.dataExtractOrder != that.dataExtractOrder) {
        return false;
    }
    if (this.limit != that.limit) {
        return false;
    }
    if (!this.aggregatedItemsKey.equals(that.aggregatedItemsKey)) {
        return false;
    }
    if (!PaintUtilities.equal(this.aggregatedItemsPaint,
            that.aggregatedItemsPaint)) {
        return false;
    }
    if (!ObjectUtilities.equal(this.pieChart, that.pieChart)) {
        return false;
    }
    if (!super.equals(obj)) {
        return false;
    }
    return true;
}
 
Example #29
Source File: CategoryLineAnnotation.java    From astor with GNU General Public License v2.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>.
 */
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 #30
Source File: XYBoxAndWhiskerRenderer.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Tests this renderer for equality with another 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 XYBoxAndWhiskerRenderer)) {
        return false;
    }
    if (!super.equals(obj)) {
        return false;
    }
    XYBoxAndWhiskerRenderer that = (XYBoxAndWhiskerRenderer) obj;
    if (this.boxWidth != that.getBoxWidth()) {
        return false;
    }
    if (!PaintUtilities.equal(this.boxPaint, that.boxPaint)) {
        return false;
    }
    if (!PaintUtilities.equal(this.artifactPaint, that.artifactPaint)) {
        return false;
    }
    if (this.fillBox != that.fillBox) {
        return false;
    }
    return true;

}