InitForest.java 346 B

12345678910111213141516171819
  1. package ui;
  2. import oram.Forest;
  3. import oram.Metadata;
  4. public class InitForest {
  5. public static void main(String[] args) {
  6. Metadata md = new Metadata();
  7. md.print();
  8. Forest forest = new Forest(md);
  9. forest.writeToFile(md.getDefaultSharesName1());
  10. forest = new Forest(md, null);
  11. forest.writeToFile(md.getDefaultSharesName2());
  12. }
  13. }