Package lupos.gui.operatorgraph.visualeditor.queryeditor.guielements

Examples of lupos.gui.operatorgraph.visualeditor.queryeditor.guielements.RetrieveDataPanel


  public Ask(Prefix prefix) {
    super(prefix);
  }

  public AbstractGuiComponent<Operator> draw(GraphWrapper gw, VisualGraph<Operator> parent) {
    this.panel = new RetrieveDataPanel(gw, this, parent, "Ask");
    ((RetrieveDataPanel) this.panel).addDatasetClause();
    ((RetrieveDataPanel) this.panel).finalize();

    return this.panel;
  }
View Full Code Here


  public Construct(Prefix prefix) {
    super(prefix);
  }

  public AbstractGuiComponent<Operator> draw(GraphWrapper gw, VisualGraph<Operator> parent) {
    this.panel = new RetrieveDataPanel(gw, this, parent, "Construct");
    ((RetrieveDataPanel) this.panel).addDatasetClause();
    ((RetrieveDataPanel) this.panel).addSolutionModifier();
    ((RetrieveDataPanel) this.panel).finalize();

    return this.panel;
View Full Code Here

  public Describe(Prefix prefix) {
    super(prefix);
  }

  public AbstractGuiComponent<Operator> draw(GraphWrapper gw, VisualGraph<Operator> parent) {
    this.panel = new RetrieveDataPanel(gw, this, parent, "Describe");
    ((RetrieveDataPanel) this.panel).addProjections(false);
    ((RetrieveDataPanel) this.panel).addDatasetClause();
    ((RetrieveDataPanel) this.panel).addSolutionModifier();
    ((RetrieveDataPanel) this.panel).finalize();
View Full Code Here

    super(prefix);
  }


  public AbstractGuiComponent<Operator> draw(GraphWrapper gw, VisualGraph<Operator> parent) {
    this.panel = new RetrieveDataPanel(gw, this, parent, "Select");
    ((RetrieveDataPanel) this.panel).addProjections(true);
    ((RetrieveDataPanel) this.panel).addDatasetClause();
    ((RetrieveDataPanel) this.panel).addSolutionModifier();
    ((RetrieveDataPanel) this.panel).finalize();
View Full Code Here

TOP

Related Classes of lupos.gui.operatorgraph.visualeditor.queryeditor.guielements.RetrieveDataPanel

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.