View Javadoc

1   // Decompiled by DJ v3.10.10.93 Copyright 2007 Atanas Neshkov  Date: 8/25/2008 3:00:43 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:   DateInstanceFactory.java
5   
6   package net.sf.beanrunner.factory.impl;
7   
8   
9   import java.util.Collection;
10  import java.util.Date;
11  
12  import net.sf.beanrunner.factory.AbstractInstanceFactory;
13  
14  public class DateInstanceFactory extends AbstractInstanceFactory
15  {
16  
17      public DateInstanceFactory()
18      {
19      }
20  
21      protected void initCollection(Collection collection)
22      {
23          collection.add(new Date());
24          collection.add(new Date(1L));
25          collection.add(new Date(0x7ffffffeL));
26          collection.add(new Date(0xffffffff80000000L));
27      }
28  }