001 /* 002 * Copyright (C) 2004 J?rg Schaible 003 * Created on 24.10.2004 by J?rg Schaible 004 */ 005 package org.picocontainer.doc.advanced; 006 007 008 /** 009 * Marker interface with the demo classes for the Collection documentation. 010 * 011 * @author Aslak Hellesøy 012 * @author Jörg Schaible 013 */ 014 public interface CollectionDemoClasses { 015 016 // START SNIPPET: classes 017 018 public static interface Fish { 019 } 020 021 public static class Cod 022 implements Fish { 023 } 024 025 public static class Shark 026 implements Fish { 027 } 028 029 // END SNIPPET: classes 030 031 }