VectorEnumeration.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
- package antlr.collections.impl;
- /* ANTLR Translator Generator
- * Project led by Terence Parr at http://www.jGuru.com
- * Software rights: http://www.antlr.org/RIGHTS.html
- *
- * $Id: //depot/code/org.antlr/release/antlr-2.7.0/antlr/collections/impl/VectorEnumeration.java#1 $
- */
- import java.util.Enumeration;
- import java.util.NoSuchElementException;
- import antlr.collections.Enumerator;
- // based on java.lang.Vector; returns any null indices between non-null ones.
- class VectorEnumeration implements Enumeration {
- Vector vector;
- int i;
- VectorEnumeration(Vector v) {
- vector = v;
- i = 0;
- }
- public boolean hasMoreElements() {
- synchronized (vector) {
- return i <= vector.lastElement;
- }
- }
- public Object nextElement() {
- synchronized (vector) {
- if (i <= vector.lastElement) {
- return vector.data[i++];
- }
- throw new NoSuchElementException("VectorEnumerator");
- }
- }
- }