1 21 package oracle.toplink.essentials.internal.helper.linkedlist; 23 24 25 32 public class LinkedNode { 33 Object contents; 34 LinkedNode next; 35 LinkedNode previous; 36 37 LinkedNode(Object object, LinkedNode next, LinkedNode previous) { 38 this.contents = object; 39 this.next = next; 40 this.previous = previous; 41 } 42 43 public Object getContents() { 44 return contents; 45 } 46 47 public void setContents(Object contents) { 48 this.contents = contents; 49 } 50 } 51 | Popular Tags |