📄 waterfallbarrenderer.html
字号:
<FONT color="green">436</FONT> );<a name="line.436"></a><FONT color="green">437</FONT> } <a name="line.437"></a><FONT color="green">438</FONT> <a name="line.438"></a><FONT color="green">439</FONT> // add an item entity, if this information is being collected<a name="line.439"></a><FONT color="green">440</FONT> EntityCollection entities = state.getEntityCollection();<a name="line.440"></a><FONT color="green">441</FONT> if (entities != null) {<a name="line.441"></a><FONT color="green">442</FONT> addItemEntity(entities, dataset, row, column, bar);<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> }<a name="line.445"></a><FONT color="green">446</FONT> <a name="line.446"></a><FONT color="green">447</FONT> /**<a name="line.447"></a><FONT color="green">448</FONT> * Tests an object for equality with this instance.<a name="line.448"></a><FONT color="green">449</FONT> * <a name="line.449"></a><FONT color="green">450</FONT> * @param obj the object (<code>null</code> permitted).<a name="line.450"></a><FONT color="green">451</FONT> * <a name="line.451"></a><FONT color="green">452</FONT> * @return A boolean.<a name="line.452"></a><FONT color="green">453</FONT> */<a name="line.453"></a><FONT color="green">454</FONT> public boolean equals(Object obj) {<a name="line.454"></a><FONT color="green">455</FONT> <a name="line.455"></a><FONT color="green">456</FONT> if (obj == this) {<a name="line.456"></a><FONT color="green">457</FONT> return true;<a name="line.457"></a><FONT color="green">458</FONT> }<a name="line.458"></a><FONT color="green">459</FONT> if (!super.equals(obj)) {<a name="line.459"></a><FONT color="green">460</FONT> return false;<a name="line.460"></a><FONT color="green">461</FONT> }<a name="line.461"></a><FONT color="green">462</FONT> if (!(obj instanceof WaterfallBarRenderer)) {<a name="line.462"></a><FONT color="green">463</FONT> return false;<a name="line.463"></a><FONT color="green">464</FONT> }<a name="line.464"></a><FONT color="green">465</FONT> WaterfallBarRenderer that = (WaterfallBarRenderer) obj;<a name="line.465"></a><FONT color="green">466</FONT> if (!PaintUtilities.equal(this.firstBarPaint, that.firstBarPaint)) {<a name="line.466"></a><FONT color="green">467</FONT> return false;<a name="line.467"></a><FONT color="green">468</FONT> }<a name="line.468"></a><FONT color="green">469</FONT> if (!PaintUtilities.equal(this.lastBarPaint, that.lastBarPaint)) {<a name="line.469"></a><FONT color="green">470</FONT> return false;<a name="line.470"></a><FONT color="green">471</FONT> } <a name="line.471"></a><FONT color="green">472</FONT> if (!PaintUtilities.equal(this.positiveBarPaint, <a name="line.472"></a><FONT color="green">473</FONT> that.positiveBarPaint)) {<a name="line.473"></a><FONT color="green">474</FONT> return false;<a name="line.474"></a><FONT color="green">475</FONT> } <a name="line.475"></a><FONT color="green">476</FONT> if (!PaintUtilities.equal(this.negativeBarPaint, <a name="line.476"></a><FONT color="green">477</FONT> that.negativeBarPaint)) {<a name="line.477"></a><FONT color="green">478</FONT> return false;<a name="line.478"></a><FONT color="green">479</FONT> } <a name="line.479"></a><FONT color="green">480</FONT> return true;<a name="line.480"></a><FONT color="green">481</FONT> <a name="line.481"></a><FONT color="green">482</FONT> }<a name="line.482"></a><FONT color="green">483</FONT> <a name="line.483"></a><FONT color="green">484</FONT> /**<a name="line.484"></a><FONT color="green">485</FONT> * Provides serialization support.<a name="line.485"></a><FONT color="green">486</FONT> *<a name="line.486"></a><FONT color="green">487</FONT> * @param stream the output stream.<a name="line.487"></a><FONT color="green">488</FONT> *<a name="line.488"></a><FONT color="green">489</FONT> * @throws IOException if there is an I/O error.<a name="line.489"></a><FONT color="green">490</FONT> */<a name="line.490"></a><FONT color="green">491</FONT> private void writeObject(ObjectOutputStream stream) throws IOException {<a name="line.491"></a><FONT color="green">492</FONT> stream.defaultWriteObject();<a name="line.492"></a><FONT color="green">493</FONT> SerialUtilities.writePaint(this.firstBarPaint, stream);<a name="line.493"></a><FONT color="green">494</FONT> SerialUtilities.writePaint(this.lastBarPaint, stream);<a name="line.494"></a><FONT color="green">495</FONT> SerialUtilities.writePaint(this.positiveBarPaint, stream);<a name="line.495"></a><FONT color="green">496</FONT> SerialUtilities.writePaint(this.negativeBarPaint, stream);<a name="line.496"></a><FONT color="green">497</FONT> }<a name="line.497"></a><FONT color="green">498</FONT> <a name="line.498"></a><FONT color="green">499</FONT> /**<a name="line.499"></a><FONT color="green">500</FONT> * Provides serialization support.<a name="line.500"></a><FONT color="green">501</FONT> *<a name="line.501"></a><FONT color="green">502</FONT> * @param stream the input stream.<a name="line.502"></a><FONT color="green">503</FONT> *<a name="line.503"></a><FONT color="green">504</FONT> * @throws IOException if there is an I/O error.<a name="line.504"></a><FONT color="green">505</FONT> * @throws ClassNotFoundException if there is a classpath problem.<a name="line.505"></a><FONT color="green">506</FONT> */<a name="line.506"></a><FONT color="green">507</FONT> private void readObject(ObjectInputStream stream) <a name="line.507"></a><FONT color="green">508</FONT> throws IOException, ClassNotFoundException {<a name="line.508"></a><FONT color="green">509</FONT> stream.defaultReadObject();<a name="line.509"></a><FONT color="green">510</FONT> this.firstBarPaint = SerialUtilities.readPaint(stream);<a name="line.510"></a><FONT color="green">511</FONT> this.lastBarPaint = SerialUtilities.readPaint(stream);<a name="line.511"></a><FONT color="green">512</FONT> this.positiveBarPaint = SerialUtilities.readPaint(stream);<a name="line.512"></a><FONT color="green">513</FONT> this.negativeBarPaint = SerialUtilities.readPaint(stream);<a name="line.513"></a><FONT color="green">514</FONT> }<a name="line.514"></a><FONT color="green">515</FONT> <a name="line.515"></a><FONT color="green">516</FONT> }<a name="line.516"></a></PRE></BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -