Examples of ProtegeStatisticListener


Examples of de.fzi.herakles.commons.statistic.ProtegeStatisticListener

   * @param reasoner reasoner adapter
   */
  public void createStatisticListener(ReasonerAdapter reasoner){
    if(reasoners.contains(reasoner)){
      String id = reasonerIDs.get(reasoner);
      listeners.put(reasoner, new ProtegeStatisticListener(id));
      data.addReasoner(id);
    }
  }
View Full Code Here

Examples of de.fzi.herakles.commons.statistic.ProtegeStatisticListener

   * create statistic listeners for all reasoner adapters
   */
  public void createStatisticListeners(){
    for(ReasonerAdapter reasoner: reasonerIDs.keySet()){
      String id = reasonerIDs.get(reasoner);
      listeners.put(reasoner, new ProtegeStatisticListener(id));
      data.addReasoner(id);
    }
  }
View Full Code Here

Examples of de.fzi.herakles.commons.statistic.ProtegeStatisticListener

      return listeners.get(reasoner);
    }
    else {
      addReasoner(reasoner);
      setReasonerID("UNKNOWN REASONER", reasoner);
      StatisticListener listener = new ProtegeStatisticListener("UNKNOWN REASONER");
      return listener;
    }
   
  }
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.