TP2: cast double to int the compare method returned value.
[TP_POO.git] / TP2 / Structure.java
1
2 public abstract class Structure implements Affichable, Compactable {
3
4 public abstract boolean inserer(int value);
5 public abstract boolean supprimer(int value);
6
7 }