01: package org.objectweb.speedo.pobjects.inheritance.ejboo2;
02:
03: /**
04: */
05: public interface EchangePersistant {
06:
07: Long getId();
08:
09: String getNom();
10:
11: void setNom(String nom);
12:
13: String getDescription();
14:
15: void setDescription(String description);
16:
17: void supprimer() throws Exception;
18:
19: }
|