View Javadoc

1   // Decompiled by DJ v3.10.10.93 Copyright 2007 Atanas Neshkov  Date: 8/25/2008 3:00:28 PM
2   // Home Page: http://members.fortunecity.com/neshkov/dj.html  http://www.neshkov.com/dj.html - Check often for new version!
3   // Decompiler options: packimports(3) 
4   // Source File Name:   CharInstanceFactory.java
5   
6   package net.sf.beanrunner.factory.impl;
7   
8   
9   import java.util.Collection;
10  
11  import net.sf.beanrunner.factory.AbstractInstanceFactory;
12  
13  public class CharInstanceFactory extends AbstractInstanceFactory
14  {
15  
16      public CharInstanceFactory()
17      {
18      }
19  
20      protected void initCollection(Collection collection)
21      {
22          collection.add(new Character(' '));
23      }
24  }