01: package org.objectweb.speedo.pobjects.inheritance.ejboo2; 02: 03: import java.util.Collection; 04: 05: /** 06: */ 07: public interface MarchePersistant extends EchangePersistant { 08: 09: /** 10: * @return ArticlePersistant instances 11: */ 12: Collection getArticles(); 13: 14: }