Examples of GedReader


Examples of de.chris_soft.fyllgen.ged.GedReader

    }
  }

  private void readGedFile(String result, Family mergeFamily) throws FileNotFoundException, IOException,
      GedReaderException {
    GedReader ged = new GedReader();
    InputStream in = new FileInputStream(result);
    ged.setInputStream(in);
    ged.read();
    in.close();
    ged.fillFamily(mergeFamily);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.