KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > util > QueueElement


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.util;
11
12 /**
13  * Element in a {@link Queue}.
14  *
15  * @author vpro
16  * @version $Id: QueueElement.java,v 1.5 2004/09/30 14:07:12 pierre Exp $
17  */

18 public class QueueElement {
19
20     /**
21      * The actual object stored in the queue
22      */

23     public Object JavaDoc obj;
24     /**
25      * The next element in the queue (null indicates no next element).
26      */

27     public QueueElement next;
28 }
29
Popular Tags