(no commit message)
[utils] / support / spring / src / test / java / org / wamblee / test / spring / TestSpringBeanFactory.java
index d604e166d598e330d3bf95af93f7d27f5ef0d391..0b2043eaf728659ef2424af06d26ac384ac2d202 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2005 the original author or authors.
+ * Copyright 2005-2010 the original author or authors.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -17,47 +17,57 @@ package org.wamblee.test.spring;
 
 import org.springframework.beans.BeansException;
 import org.springframework.context.ApplicationContext;
-import org.wamblee.general.BeanFactory;
-import org.wamblee.general.BeanFactoryException;
+import org.wamblee.ioc.BeanFactory;
+import org.wamblee.ioc.BeanFactoryException;
 
 /**
- * Bean factory which uses Spring. 
- *
+ * Bean factory which uses Spring.
+ * 
  * @author Erik Brakkee
  */
 public class TestSpringBeanFactory implements BeanFactory {
-    
-    private ApplicationContext context; 
-    
+    private ApplicationContext context;
+
+    /**
+     * Creates a new TestSpringBeanFactory object.
+     * 
+     */
     public TestSpringBeanFactory(ApplicationContext aContext) {
-        context = aContext; 
+        context = aContext;
     }
 
-    /* (non-Javadoc)
+    /*
+     * (non-Javadoc)
+     * 
      * @see org.wamblee.general.BeanFactory#find(java.lang.String)
      */
     public Object find(String aId) {
-       return find(aId, Object.class);
+        return find(aId, Object.class);
     }
 
-    /* (non-Javadoc)
+    /*
+     * (non-Javadoc)
+     * 
      * @see org.wamblee.general.BeanFactory#find(java.lang.Class)
      */
     public <T> T find(Class<T> aClass) {
         return find(aClass.getName(), aClass);
     }
 
-    /* (non-Javadoc)
-     * @see org.wamblee.general.BeanFactory#find(java.lang.String, java.lang.Class)
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.wamblee.general.BeanFactory#find(java.lang.String,
+     * java.lang.Class)
      */
     public <T> T find(String aId, Class<T> aClass) {
         try {
             Object obj = context.getBean(aId, aClass);
-            assert obj != null; 
-            return aClass.cast(obj); 
-        } catch (BeansException e) { 
+            assert obj != null;
+
+            return aClass.cast(obj);
+        } catch (BeansException e) {
             throw new BeanFactoryException(e.getMessage(), e);
         }
     }
-
 }