Package gnu.bytecode
Class VarEnumerator
- java.lang.Object
-
- gnu.bytecode.VarEnumerator
-
- All Implemented Interfaces:
java.util.Enumeration
public class VarEnumerator extends java.lang.Object implements java.util.EnumerationUse this Enuemration class to iterate over the Variables in a Scope. Descends into child scopes.
-
-
Constructor Summary
Constructors Constructor Description VarEnumerator(Scope scope)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasMoreElements()java.lang.ObjectnextElement()VariablenextVar()Return the next Variable in the Scope tree, or null if done.voidreset()
-
-
-
Constructor Detail
-
VarEnumerator
public VarEnumerator(Scope scope)
-
-
Method Detail
-
reset
public final void reset()
-
nextVar
public final Variable nextVar()
Return the next Variable in the Scope tree, or null if done.
-
hasMoreElements
public final boolean hasMoreElements()
- Specified by:
hasMoreElementsin interfacejava.util.Enumeration
-
nextElement
public java.lang.Object nextElement()
- Specified by:
nextElementin interfacejava.util.Enumeration
-
-