Examples of DerivationViewer


Examples of joshua.ui.tree_visualizer.DerivationViewer

      return;
    }

    DerivationTree tree = new DerivationTree(tgt.split(DerivationTree.DELIMITER)[1], src);
    if (dv == null) {
      dv = new DerivationViewer(tree, viewPanel.getSize(), targetColor, DerivationViewer.AnchorType.ANCHOR_LEFTMOST_LEAF);
    }
    else {
      dv.setGraph(tree);
      tree.addCorrespondences();
    }
View Full Code Here

Examples of org.semanticweb.HermiT.debugger.DerivationViewer

            }
            tuple[index]=node;
        }
        DerivationHistory.Atom atom=m_debugger.getDerivationHistory().getAtom(tuple);
        if (atom!=null) {
            new DerivationViewer(m_debugger.getPrefixes(),atom);
            selectConsoleWindow();
        }
        else
            m_debugger.getOutput().println("Atom not found.");
    }
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.