All Packages Class Hierarchy This Package Previous Next Index
Class gnu.bytecode.VarEnumerator
java.lang.Object
|
+----gnu.bytecode.VarEnumerator
- public class VarEnumerator
- extends Object
- implements Enumeration
Use this Enuemration class to iterate over the Variables in a Scope.
Descends into child scopes.
- Author:
- Per Bothner
-
VarEnumerator(Scope)
-
-
hasMoreElements()
-
-
nextElement()
-
-
nextVar()
- Return the next Variable in the Scope tree, or null if done.
-
reset()
-
VarEnumerator
public VarEnumerator(Scope scope)
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()
nextElement
public Object nextElement()
All Packages Class Hierarchy This Package Previous Next Index