VectorEnumeration.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

Others

  1. package antlr.collections.impl;
  2. /* ANTLR Translator Generator
  3.  * Project led by Terence Parr at http://www.jGuru.com
  4.  * Software rights: http://www.antlr.org/RIGHTS.html
  5.  *
  6.  * $Id: //depot/code/org.antlr/release/antlr-2.7.0/antlr/collections/impl/VectorEnumeration.java#1 $
  7.  */
  8. import java.util.Enumeration;
  9. import java.util.NoSuchElementException;
  10. import antlr.collections.Enumerator;
  11. // based on java.lang.Vector; returns any null indices between non-null ones.
  12. class VectorEnumeration implements Enumeration {
  13. Vector vector;
  14. int i;
  15. VectorEnumeration(Vector v) {
  16. vector = v;
  17. i = 0;
  18. }
  19. public boolean hasMoreElements() {
  20. synchronized (vector) {
  21. return i <= vector.lastElement;
  22. }
  23. }
  24. public Object nextElement() {
  25. synchronized (vector) {
  26. if (i <= vector.lastElement) {
  27. return vector.data[i++];
  28. }
  29. throw new NoSuchElementException("VectorEnumerator");
  30. }
  31. }
  32. }