| 48 | } |
| 49 | |
| 50 | bool Iterator::equals (Object *other) |
| 51 | { |
| 52 | Iterator *otherIt = (Iterator*)other; |
| 53 | return |
| 54 | this == otherIt || |
| 55 | (getWidget() == otherIt->getWidget() && compareTo(otherIt) == 0); |
| 56 | } |
| 57 | |
| 58 | void Iterator::intoStringBuffer(misc::StringBuffer *sb) |
| 59 | { |