absynt
Class ActionList

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

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

A list implementation of a set of actions. To iterate through the list, the steps adhere to the ``Enumaration''-interface

Version:
$Id: ActionList.java,v 1.3 2001/05/21 16:06:23 swprakt Exp $
Author:
Initially provided by Martin Steffen.
See Also:
Serialized Form

Field Summary
 Action head
           
 ActionList next
           
 
Fields inherited from class absynt.Absynt
pos
 
Constructor Summary
ActionList(Action s, ActionList 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 Action head

next

public ActionList next
Constructor Detail

ActionList

public ActionList(Action s,
                  ActionList 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