Package de.iritgo.aktario.framework.dataobject.gui

Examples of de.iritgo.aktario.framework.dataobject.gui.QueryPane


  @Override
  protected void registerGUIPanes()
  {
    registerGUIPane(new AkteraQueryPane());
    registerGUIPane(new DataObjectGUIPane());
    registerGUIPane(new QueryPane());
  }
View Full Code Here


   * Perform the action.
   */
  public void perform()
  {
    IDisplay display = (IDisplay) Client.instance().getClientGUI().getDesktopManager().getDisplay(onScreenUniqueId);
    QueryPane queryPane = (QueryPane) display.getGUIPane();

    queryPane.deleteListEntry(dataObjectUniqueId, model);
  }
View Full Code Here

    return "journal.execution";
  }

  public void command(GUIPane guiPane, IObject iObject, Properties properties)
  {
    QueryPane queryPane = (QueryPane) guiPane;
    DataObject dataObject = (DataObject) iObject;

    if (dataObject == null)
    {
      return;
View Full Code Here

  /**
   * Execute the command.
   */
  public void perform()
  {
    QueryPane queryPane = ((QueryPane) Client.instance().getClientGUI().getDesktopManager().getDisplay(
            "de.iritgo.aktera.journal.EmbeddedJournal").getGUIPane());

    if (queryPane != null)
    {
      queryPane.refresh();
    }
  }
View Full Code Here

TOP

Related Classes of de.iritgo.aktario.framework.dataobject.gui.QueryPane

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.