1 17 18 package org.apache.avalon.fortress.impl.test; 19 20 import org.apache.avalon.fortress.impl.handler.ComponentHandler; 21 import org.apache.avalon.fortress.test.data.Component1; 22 23 29 public class TestComponentHandler implements ComponentHandler 30 { 31 Object m_component = new Component1(); 32 33 public Class getComponentClass() 34 { 35 return m_component.getClass(); 36 } 37 38 public void prepareHandler() throws Exception  39 { 40 } 41 42 public Object get() throws Exception  43 { 44 return m_component; 45 } 46 47 public void put( Object component ) 48 { 49 } 51 52 } 53 | Popular Tags |