mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-28 23:37:57 +02:00
11 lines
171 B
Java
11 lines
171 B
Java
public class Basket<E> {
|
|
private E element;
|
|
|
|
public void setElement(E x) {
|
|
element = x;
|
|
}
|
|
|
|
public E getElement() {
|
|
return element;
|
|
}
|
|
}
|