gshute.util
Class ListPriorityQueue.Entry

java.lang.Object
  |
  +--gshute.util.ListPriorityQueue.Entry

public class ListPriorityQueue.Entry
extends java.lang.Object


Field Summary
 java.lang.Object data
          e.data is the data for e.
 java.lang.Object priority
          e.priority is the priority for e.
 
Constructor Summary
ListPriorityQueue.Entry(java.lang.Object dat, java.lang.Object pri)
          new Entry(dat, pri) returns a new entry with data dat and priority pri.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

data

public java.lang.Object data
e.data is the data for e.

priority

public java.lang.Object priority
e.priority is the priority for e.
Constructor Detail

ListPriorityQueue.Entry

public ListPriorityQueue.Entry(java.lang.Object dat,
                               java.lang.Object pri)
new Entry(dat, pri) returns a new entry with data dat and priority pri.