01: package org.objectweb.speedo.pobjects.inheritance.ejboo2;
02:
03: import java.util.Collection;
04: import java.util.Date;
05:
06: /**
07: */
08: public interface ArticlePersistant extends EchangePersistant {
09:
10: String getType();
11:
12: Date getDateCom();
13:
14: void setDateCom(Date date);
15:
16: /**
17: * @return the CataloguePersistant instance
18: */
19: CataloguePersistant getCatalogue();
20:
21: /**
22: * set the CataloguePersistant instance
23: */
24: void setCatalogue(CataloguePersistant catalogue);
25:
26: /**
27: * @return MarchePersistant instances
28: */
29: Collection getMarches();
30:
31: }
|