/* * List element */ public class Element { Element @prev; Element @next; Object @payload; }