Package edu.gmu.seor.prognos.unbbayesplugin.jt.prs.bn

Examples of edu.gmu.seor.prognos.unbbayesplugin.jt.prs.bn.ExplanationPhrase


  public void addExplanationPhrase(ExplanationPhrase explanationPhrase) {
    phrasesMap.put(explanationPhrase.getNode(), explanationPhrase);
  }

  public ExplanationPhrase getExplanationPhrase(String node) throws Exception {
    ExplanationPhrase ep = phrasesMap.get(node);
    if (ep == null) {
      throw new Exception("N� n�o encontrado.");
    } else {
      return (ExplanationPhrase) ep;
    }
View Full Code Here

TOP

Related Classes of edu.gmu.seor.prognos.unbbayesplugin.jt.prs.bn.ExplanationPhrase

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.