Package lupos.gui.operatorgraph.visualeditor.queryeditor.util

Examples of lupos.gui.operatorgraph.visualeditor.queryeditor.util.QueryConnection


    final Operator subjectOp = this.queryGraph.addOperator(5, 5,
        subjectItem);

    // create the connection between subject and object operator with the
    // right predicate item...
    final Connection<Operator> connectionMode = new QueryConnection(
        this.visualEditor);
    connectionMode.setConnectionContent(predicateItem);
    connectionMode.addOperator(subjectOp);
    connectionMode.addOperator(this.op);

    // sort elements of the outer reference...
    final OperatorContainer opContainer = (OperatorContainer) this.queryGraph.outerReference
        .getOperator();
View Full Code Here


    this.visualEditor.prepareOperatorForAdd(QueryRDFTerm.class);
    final Operator objectOp = this.queryGraph.addOperator(5, 5, objectItem);

    // create the connection between subject and object operator with the
    // right predicate item...
    final Connection<Operator> connectionMode = new QueryConnection(
        this.visualEditor);
    connectionMode.setConnectionContent(predicateItem);
    connectionMode.addOperator(this.op);
    connectionMode.addOperator(objectOp);

    this.queryGraph.arrange(Arrange.values()[0]);
  }
View Full Code Here

    // create JMenuItem to add a connection between two Operators...
    final JMenuItem addConnectionMI = new JMenuItem(
    "Add connection between two operators");
    addConnectionMI.addActionListener(new ActionListener() {
      public void actionPerformed(final ActionEvent ae) {
        connectionMode = new QueryConnection(myself);
      }
    });

    // create JMenuItem to add Filter-Operator...
    final JMenuItem filterOpMI = new JMenuItem("FILTER");
View Full Code Here

TOP

Related Classes of lupos.gui.operatorgraph.visualeditor.queryeditor.util.QueryConnection

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.