01: package org.objectweb.speedo.pobjects.inheritance.ejboo2; 02: 03: /** 04: */ 05: public interface ServicePersistant extends ArticlePersistant { 06: 07: float getFrais(); 08: 09: void setFrais(float frais); 10: 11: String getOption(); 12: 13: void setOption(String option); 14: 15: }