home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / intface / pca / special4 / software / eclipse.project / WEB-INF / classes / nl / pcactive / TestGedcomBean.java < prev   
Encoding:
Java Source  |  2003-05-20  |  403 b   |  21 lines

  1. package nl.pcactive;
  2.  
  3. import nl.pcactive.bean.GedcomBean;
  4.  
  5. /**
  6.  * <p>Description: GEDCOM 2 DATABASE</p>
  7.  * <p>Copyright: Copyright (c) 2002</p>
  8.  * <p>Company: Pc-Active</p>
  9.  * @author Benny Lootens
  10.  * @version 2.0
  11.  */
  12. public class TestGedcomBean {
  13.  
  14.     public static void main(String[] args) {
  15.  
  16.         GedcomBean gedcombean = new GedcomBean(args);
  17.         gedcombean.run();
  18.         System.exit(0);
  19.     }
  20.  
  21. }