Package edu.pitt.ontology.ui

Examples of edu.pitt.ontology.ui.RepositoryManager


    }
  }

  private void doManage() {
    if(imanager == null){
      imanager = new RepositoryManager(RepositoryManager.TERMINOLOGIES_ONLY);
      imanager.start(repository);
      imanager.getFrame().setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
      imanager.getFrame().setLocation(frame.getLocation());
    }else{
      imanager.getFrame().setVisible(true);
View Full Code Here


  /**
   * @param args
   */
  public static void main(String[] args) {
    RepositoryManager manager = new RepositoryManager();
    manager.getFrame().setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //NobleCoderTerminology.setPersistenceDirectory(new File("/home/tseytlin/Data/Terminologies/IndexFinder"));
    //NobleCoderTerminology.setCachingEnabled(false);
    manager.start(new IndexFinderRepository());

  }
View Full Code Here

TOP

Related Classes of edu.pitt.ontology.ui.RepositoryManager

Copyright © 2018 www.massapicom. 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.