1 2 3 4 5 6 7 8 9
/* * List element */ public class Element { Element @prev; Element @next; Object @payload; }