APL/DEV 3.2/TP04/Chaine/Chaine.java

26 lines
369 B
Java
Raw Permalink Normal View History

2022-10-26 11:13:11 +02:00
public class Chaine<E> {
public Chaine() {
}
private E value;
private Chaine<E> next;
public E getValue() {
return value;
}
public void setValue(E value) {
this.value = value;
}
public Chaine<E> getNext() {
return next;
}
public void setNext(Chaine<E> next) {
this.next = next;
}
}