KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ojb > broker > InterfaceAnimal


1 package org.apache.ojb.broker;
2
3 import java.io.Serializable JavaDoc;
4
5 /**
6  * This interface is used to test polymorph collections
7  * @author <a HREF="mailto:schneider@mendel.imp.univie.ac.at">Georg Schneider</a>
8  *
9  */

10 public interface InterfaceAnimal extends Serializable JavaDoc
11 {
12     int getAge();
13     String JavaDoc getName();
14 }
15
Popular Tags