Examples of JaspiraEvent


Examples of org.openbp.jaspira.event.JaspiraEvent

   */
  void stopPoller()
  {
    pollerActive = false;

    fireEvent(new JaspiraEvent(DebuggerPlugin.this, "debugger.client.statuschange", null));
  }
View Full Code Here

Examples of org.openbp.jaspira.event.JaspiraEvent

            }
          }
        }

        // Perform a screen refresh
        fireEvent(new JaspiraEvent(DebuggerPlugin.this, "modeler.view.refresh"));
        updateActions();
      }
      catch (Exception e)
      {
        handleError(e);
View Full Code Here

Examples of org.openbp.jaspira.event.JaspiraEvent

        getDebugger().clearBreakpoints(clientId, null);

        deactivateBreakpointDecorator();

        // Several breakpoints may be concerned, so perform a screen redraw
        fireEvent(new JaspiraEvent(DebuggerPlugin.this, "modeler.view.redraw"));
        updateActions();
      }
      catch (Exception e)
      {
        handleError(e);
View Full Code Here

Examples of org.openbp.jaspira.event.JaspiraEvent

          getDebugger().setBreakpoint(clientId, target, 0);
          addBreakpoint(target);
        }

        // Perform a screen refresh
        fireEvent(new JaspiraEvent(DebuggerPlugin.this, "modeler.view.refresh"));
      }
      catch (Exception e)
      {
        handleError(e);
      }
View Full Code Here

Examples of org.openbp.jaspira.event.JaspiraEvent

    {
      if (modeler.saveProcess())
      {
        modeler.getDrawing().clearModified();
        modeler.fireEvent(new StatusBarTextEvent(modeler, "Process " + modeler.getProcessQualifier() + " saved."));
        modeler.fireEvent(new JaspiraEvent(modeler, "modeler.view.saved", modeler));
      }
    }

    return EVENT_HANDLED;
  }
View Full Code Here

Examples of org.openbp.jaspira.event.JaspiraEvent

    buildMenu();

    fireEvent("global.page.added", page);

    // Force a global container rebuild of all plugins of this page
    page.fireEvent(new JaspiraEvent(page, VisiblePlugin.GER, null, JaspiraEvent.TYPE_FLOOD, Plugin.LEVEL_PAGE, JaspiraEvent.STACKABLE));
  }
View Full Code Here

Examples of org.openbp.jaspira.event.JaspiraEvent

    });
    getContentPane().add(scrollPane);

    addPluginFocusListener(this);

    fireEvent(new JaspiraEvent(this, "modeler.view.opened", this));
  }
View Full Code Here

Examples of org.openbp.jaspira.event.JaspiraEvent

    PropertyBrowserSetEvent oee = new PropertyBrowserSetEvent(this, item, originalItem, false, desc, title, icon, readOnly, false);
    fireEvent(oee);

    // Show object description in info panel
    fireEvent(new JaspiraEvent(this, "plugin.infopanel.setinfotext", item));
  }
View Full Code Here

Examples of org.openbp.jaspira.event.JaspiraEvent

        else
          eventArg = e.node.getColumnValue(0);

        if (eventArg instanceof DescriptionObject)
        {
          fireEvent(new JaspiraEvent(this, "plugin.infopanel.setinfotext", eventArg));
        }
      }

      break;
    }
View Full Code Here

Examples of org.openbp.jaspira.event.JaspiraEvent

  {
  }

  public void focusLost(FocusEvent e)
  {
    fireEvent(new JaspiraEvent(this, "plugin.infopanel.clearinfotext", null));
  }
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.