TP2: Implement Image class as a Comparable<Image> interface.
[TP_POO.git] / TP2 / Compactable.java
1
2 public interface Compactable {
3
4 public void compacter(int nElements);
5
6 }