Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
public class Basket<E> {
2
private E element;
3
4
public void setElement(E x) {
5
element = x;
6
}
7
8
public E getElement() {
9
return element;
10
}
11
}
12
13