1 8 package org.picocontainer; 9 10 24 public interface ComponentAdapter { 25 31 Object getComponentKey(); 32 33 39 Class getComponentImplementation(); 40 41 53 Object getComponentInstance(PicoContainer container) throws PicoInitializationException, PicoIntrospectionException; 54 55 62 void verify(PicoContainer container) throws PicoIntrospectionException; 63 64 71 void accept(PicoVisitor visitor); 72 } 73 | Popular Tags |