📄 statisticalbarrenderer.html
字号:
<FONT color="green">421</FONT> rectX + rectWidth / 2.0d, highVal);<a name="line.421"></a><FONT color="green">422</FONT> g2.draw(line);<a name="line.422"></a><FONT color="green">423</FONT> line = new Line2D.Double(rectX + rectWidth / 2.0d - 5.0d, highVal,<a name="line.423"></a><FONT color="green">424</FONT> rectX + rectWidth / 2.0d + 5.0d, highVal);<a name="line.424"></a><FONT color="green">425</FONT> g2.draw(line);<a name="line.425"></a><FONT color="green">426</FONT> line = new Line2D.Double(rectX + rectWidth / 2.0d - 5.0d, lowVal,<a name="line.426"></a><FONT color="green">427</FONT> rectX + rectWidth / 2.0d + 5.0d, lowVal);<a name="line.427"></a><FONT color="green">428</FONT> g2.draw(line);<a name="line.428"></a><FONT color="green">429</FONT> <a name="line.429"></a><FONT color="green">430</FONT> CategoryItemLabelGenerator generator = getItemLabelGenerator(row, <a name="line.430"></a><FONT color="green">431</FONT> column);<a name="line.431"></a><FONT color="green">432</FONT> if (generator != null && isItemLabelVisible(row, column)) {<a name="line.432"></a><FONT color="green">433</FONT> drawItemLabel(g2, dataset, row, column, plot, generator, bar, <a name="line.433"></a><FONT color="green">434</FONT> (value < 0.0));<a name="line.434"></a><FONT color="green">435</FONT> } <a name="line.435"></a><FONT color="green">436</FONT> <a name="line.436"></a><FONT color="green">437</FONT> // add an item entity, if this information is being collected<a name="line.437"></a><FONT color="green">438</FONT> EntityCollection entities = state.getEntityCollection();<a name="line.438"></a><FONT color="green">439</FONT> if (entities != null) {<a name="line.439"></a><FONT color="green">440</FONT> addItemEntity(entities, dataset, row, column, bar);<a name="line.440"></a><FONT color="green">441</FONT> }<a name="line.441"></a><FONT color="green">442</FONT> }<a name="line.442"></a><FONT color="green">443</FONT> <a name="line.443"></a><FONT color="green">444</FONT> /**<a name="line.444"></a><FONT color="green">445</FONT> * Tests this renderer for equality with an arbitrary object.<a name="line.445"></a><FONT color="green">446</FONT> * <a name="line.446"></a><FONT color="green">447</FONT> * @param obj the object (<code>null</code> permitted).<a name="line.447"></a><FONT color="green">448</FONT> * <a name="line.448"></a><FONT color="green">449</FONT> * @return A boolean.<a name="line.449"></a><FONT color="green">450</FONT> */<a name="line.450"></a><FONT color="green">451</FONT> public boolean equals(Object obj) {<a name="line.451"></a><FONT color="green">452</FONT> if (obj == this) {<a name="line.452"></a><FONT color="green">453</FONT> return true; <a name="line.453"></a><FONT color="green">454</FONT> }<a name="line.454"></a><FONT color="green">455</FONT> if (!(obj instanceof StatisticalBarRenderer)) {<a name="line.455"></a><FONT color="green">456</FONT> return false; <a name="line.456"></a><FONT color="green">457</FONT> }<a name="line.457"></a><FONT color="green">458</FONT> if (!super.equals(obj)) {<a name="line.458"></a><FONT color="green">459</FONT> return false; <a name="line.459"></a><FONT color="green">460</FONT> }<a name="line.460"></a><FONT color="green">461</FONT> StatisticalBarRenderer that = (StatisticalBarRenderer) obj;<a name="line.461"></a><FONT color="green">462</FONT> if (!PaintUtilities.equal(this.errorIndicatorPaint, <a name="line.462"></a><FONT color="green">463</FONT> that.errorIndicatorPaint)) {<a name="line.463"></a><FONT color="green">464</FONT> return false;<a name="line.464"></a><FONT color="green">465</FONT> }<a name="line.465"></a><FONT color="green">466</FONT> return true;<a name="line.466"></a><FONT color="green">467</FONT> }<a name="line.467"></a><FONT color="green">468</FONT> <a name="line.468"></a><FONT color="green">469</FONT> /**<a name="line.469"></a><FONT color="green">470</FONT> * Provides serialization support.<a name="line.470"></a><FONT color="green">471</FONT> *<a name="line.471"></a><FONT color="green">472</FONT> * @param stream the output stream.<a name="line.472"></a><FONT color="green">473</FONT> *<a name="line.473"></a><FONT color="green">474</FONT> * @throws IOException if there is an I/O error.<a name="line.474"></a><FONT color="green">475</FONT> */<a name="line.475"></a><FONT color="green">476</FONT> private void writeObject(ObjectOutputStream stream) throws IOException {<a name="line.476"></a><FONT color="green">477</FONT> stream.defaultWriteObject();<a name="line.477"></a><FONT color="green">478</FONT> SerialUtilities.writePaint(this.errorIndicatorPaint, stream);<a name="line.478"></a><FONT color="green">479</FONT> }<a name="line.479"></a><FONT color="green">480</FONT> <a name="line.480"></a><FONT color="green">481</FONT> /**<a name="line.481"></a><FONT color="green">482</FONT> * Provides serialization support.<a name="line.482"></a><FONT color="green">483</FONT> *<a name="line.483"></a><FONT color="green">484</FONT> * @param stream the input stream.<a name="line.484"></a><FONT color="green">485</FONT> *<a name="line.485"></a><FONT color="green">486</FONT> * @throws IOException if there is an I/O error.<a name="line.486"></a><FONT color="green">487</FONT> * @throws ClassNotFoundException if there is a classpath problem.<a name="line.487"></a><FONT color="green">488</FONT> */<a name="line.488"></a><FONT color="green">489</FONT> private void readObject(ObjectInputStream stream) <a name="line.489"></a><FONT color="green">490</FONT> throws IOException, ClassNotFoundException {<a name="line.490"></a><FONT color="green">491</FONT> stream.defaultReadObject();<a name="line.491"></a><FONT color="green">492</FONT> this.errorIndicatorPaint = SerialUtilities.readPaint(stream);<a name="line.492"></a><FONT color="green">493</FONT> }<a name="line.493"></a><FONT color="green">494</FONT> <a name="line.494"></a><FONT color="green">495</FONT> }<a name="line.495"></a></PRE></BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -