Package DisplayProject

Examples of DisplayProject.DisplayEvent


     */
    public static void postEvent(EventHandle handle) {
      // TF:Also ensured that all events posted via this method (ie client events) have associated
      // with them a DisplayEvent parameter. This prevents runtime errors from people who use this.
      if (handle.getParameters() != null && handle.getParameter("eventInfo") == null) {
        handle.getParameters().put("eventInfo", new ParameterHolder(new DisplayEvent()));
      }
      if (SwingUtilities.isEventDispatchThread()) {
        handle.setPriority(EventHandle.PRIORITY_EDT);
      }
      EventManager.postEvent(handle);
View Full Code Here


     */
    public static void postEvent(EventHandle handle) {
      // TF:Also ensured that all events posted via this method (ie client events) have associated
      // with them a DisplayEvent parameter. This prevents runtime errors from people who use this.
      if (handle.getParameters() != null && handle.getParameter("eventInfo") == null) {
        handle.getParameters().put("eventInfo", new ParameterHolder(new DisplayEvent()));
      }
      if (SwingUtilities.isEventDispatchThread()) {
        handle.setPriority(EventHandle.PRIORITY_EDT);
      }
      EventManager.postEvent(handle);
View Full Code Here

TOP

Related Classes of DisplayProject.DisplayEvent

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.