absynt
Class StmtList

java.lang.Object
  |
  +--absynt.Absynt
        |
        +--absynt.StmtList
All Implemented Interfaces:
java.util.Enumeration, java.io.Serializable

public class StmtList
extends Absynt
implements java.util.Enumeration, java.io.Serializable

A list implementation of a set of statements. To iterate through the list, the statements adhere to the ``Enumeration''-interface

Version:
$Id: StmtList.java,v 1.3 2001/05/22 05:59:09 swprakt Exp $
Author:
Initially provided by Martin Steffen.
See Also:
Serialized Form

Field Summary
 Stmt head
           
 StmtList next
           
 
Fields inherited from class absynt.Absynt
pos
 
Constructor Summary
StmtList(Stmt s, StmtList sl)
           
 
Method Summary
 boolean hasMoreElements()
           
 java.lang.Object nextElement()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

head

public Stmt head

next

public StmtList next
Constructor Detail

StmtList

public StmtList(Stmt s,
                StmtList sl)
Method Detail

hasMoreElements

public boolean hasMoreElements()
Specified by:
hasMoreElements in interface java.util.Enumeration

nextElement

public java.lang.Object nextElement()
Specified by:
nextElement in interface java.util.Enumeration