repositories
/
TP_POO.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
TP2: Add code skeleton for the Compactable interface.
[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
}