01: package org.apache.ojb.broker;
02:
03: import java.io.Serializable;
04:
05: /**
06: * This interface is used to test polymorph collections
07: * @author <a href="mailto:schneider@mendel.imp.univie.ac.at">Georg Schneider</a>
08: *
09: */
10: public interface InterfaceAnimal extends Serializable {
11: int getAge();
12:
13: String getName();
14: }
|