harpoon.Temp
Class LabelList

java.lang.Object
  extended by harpoon.Temp.LabelList

Deprecated. Scott says so. Use a real java.util.List instead.

public final class LabelList
extends Object

A LabelList is a simple singly-linked list of Labels.

Version:
$Id: LabelList.java,v 1.5 2004/02/08 01:59:46 cananian Exp $
Author:
C. Scott Ananian <cananian@alumni.princeton.edu>

Field Summary
 Label head
          Deprecated.  
 LabelList tail
          Deprecated.  
 
Constructor Summary
LabelList(Label head, LabelList tail)
          Deprecated.  
 
Method Summary
static List<Label> toList(LabelList l)
          Deprecated. Converts a LabelList to a java.util.List.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

head

public final Label head
Deprecated. 

tail

public final LabelList tail
Deprecated. 
Constructor Detail

LabelList

public LabelList(Label head,
                 LabelList tail)
Deprecated. 
Method Detail

toList

public static List<Label> toList(LabelList l)
Deprecated. 
Converts a LabelList to a java.util.List. Accepts null as an argument (which will return an empty list).