repositories
/
Project_POO.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Code cleanup : fix C style array declaration.
[Project_POO.git]
/
exo4
/
Structure.java
1
2
@ClassPreamble
(
3
author
=
"Jérôme Benoit"
,
4
date
=
"05/02/2009"
5
)
6
public abstract class
Structure
implements
Affichable
,
Compactable
{
7
8
public abstract boolean
inserer
(
int
value
);
9
public abstract boolean
supprimer
(
int
value
);
10
11
}