mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
13 lines
240 B
Java
13 lines
240 B
Java
public class Node {
|
|
public Bike element;
|
|
public Node next;
|
|
|
|
public Node(Bike element) {
|
|
this.element = element;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "Node[element=" + element + "]";
|
|
}
|
|
}
|