1 23 24 29 42 43 48 49 package com.sun.enterprise.util.collection; 50 51 public class TimeStampedDListNode 52 extends DListNode 53 { 54 public long timestamp; 55 56 public TimeStampedDListNode() { 57 super(); 58 } 59 60 public TimeStampedDListNode(Object object) { 61 super(object); 62 } 63 64 public TimeStampedDListNode(Object object, long time) { 65 super(object); 66 this.timestamp = time; 67 } 68 69 } 70 | Popular Tags |