KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > picocontainer > doc > advanced > CollectionDemoClasses


1 /*
2  * Copyright (C) 2004 Jörg Schaible
3  * Created on 24.10.2004 by Jörg Schaible
4  */

5 package org.picocontainer.doc.advanced;
6
7
8 /**
9  * Marker interface with the demo classes for the Collection documentation.
10  *
11  * @author Aslak Hellesøy
12  * @author Jörg Schaible
13  */

14 public interface CollectionDemoClasses {
15
16     // START SNIPPET: classes
17

18     public static interface Fish {
19     }
20
21     public static class Cod
22             implements Fish {
23     }
24
25     public static class Shark
26             implements Fish {
27     }
28
29     // END SNIPPET: classes
30

31 }
32
Popular Tags