mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +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;
|
|
}
|
|
}
|