package ab5_einfuehrung; public class Node { public Schüler s; public Node next; public Node(Schüler s, Node next) { this.s = s; this.next = next; } }