Returns current state object. @return the current state object
()
| 353 | * @return the current state object |
| 354 | */ |
| 355 | public Object getCurrentState() { |
| 356 | if (index_ >= 0 && index_ < entries_.size()) { |
| 357 | return entries_.get(index_).getState(); |
| 358 | } |
| 359 | return null; |
| 360 | } |
| 361 | |
| 362 | /** |
| 363 | * Re-initializes transient fields when an object of this type is deserialized. |