Package lupos.gui.operatorgraph.visualeditor.guielements

Examples of lupos.gui.operatorgraph.visualeditor.guielements.PredicatePanel


    // walk through children of this RDFTerm...
    for(OperatorIDTuple<Operator> opIDTuple : this.getSucceedingOperators()) {
      RDFTerm child = (RDFTerm) opIDTuple.getOperator(); // get current children

      // create predicate panel...
      PredicatePanel predicatePanel = new PredicatePanel(parent, this, child, this.prefix);

      this.annotationLabels.put(child, predicatePanel);

      // add predicate panel to hash table with its GraphWrapper...
      predicates.put(new GraphWrapperOperator(child), predicatePanel);
View Full Code Here

TOP

Related Classes of lupos.gui.operatorgraph.visualeditor.guielements.PredicatePanel

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.