Examples of handleEvent()


Examples of org.openbp.cockpit.modeler.figures.process.SocketFigure.handleEvent()

              if (affected)
              {
                // Notify possibly affected sockets of the DnD operation
                String eventType = on ? VisualElementEvent.SET_DND_PARTICIPANT : VisualElementEvent.UNSET_DND_PARTICIPANT;
                socketFigure.handleEvent(new VisualElementEvent(eventType, getEditor()));
              }
            }
          }
        }
      }
View Full Code Here

Examples of org.openhab.binding.dscalarm.internal.model.Keypad.handleEvent()

          else {
            keypad = keypadMap.get(1);
          }
         
          if(event != null) {
            keypad.handleEvent(item, config, eventPublisher, event);
          }
          else {
            keypad.refreshItem(item, config, eventPublisher);
          }
          break;
View Full Code Here

Examples of org.openhab.binding.dscalarm.internal.model.Panel.handleEvent()

            updateDeviceProperties(item, config, 0, sysMessage);
            sysMessage = "";
          }
 
          if(event != null) {
            panel.handleEvent(item, config, eventPublisher, event);
          }
          else {
            panel.refreshItem(item, config, eventPublisher);
          }
          break;
View Full Code Here

Examples of org.openhab.binding.dscalarm.internal.model.Partition.handleEvent()

            partition = new Partition(partitionId);
            partitionMap.put(partitionId, partition);
          }
         
          if(event != null) {
            partition.handleEvent(item, config, eventPublisher, event);
          }
          else {
            partition.refreshItem(item, config, eventPublisher);
          }
          break;
View Full Code Here

Examples of org.openhab.binding.dscalarm.internal.model.Zone.handleEvent()

            zone = new Zone(partitionId, zoneId);
            zoneMap.put(zoneId, zone);
          }
         
          if(event != null) {
            zone.handleEvent(item, config, eventPublisher, event);
          }
          else {
            zone.refreshItem(item, config, eventPublisher);
          }
          break;
View Full Code Here

Examples of org.osgi.service.event.EventHandler.handleEvent()

            return;
        }

        try
        {
            handlerService.handleEvent(event);
        }
        catch (final Throwable e)
        {
            // The spec says that we must catch exceptions and log them:
            LogWrapper.getLogger().log(
View Full Code Here

Examples of org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess.handleEvent()

            } catch (SVNException svne) {               
                handleLeftLocalModificationsError(svne);
            }
            SVNEvent event = SVNEventFactory.createSVNEvent(fullPath, SVNNodeKind.DIR, null,
                    SVNRepository.INVALID_REVISION, SVNEventAction.UPDATE_DELETE, null, null, null);
            wcAccess.handleEvent(event);
            return;
        }
        // crop children.
        cropChildren(wcAccess, fullPath, depth);
    }
View Full Code Here

Examples of org.w3c.dom.events.EventListener.handleEvent()

        if (chain.isStopped()) return; // Por si acaso, hay que tener en cuenta que puede haber reentrada a este m�todo
        LinkedList<EventListener> listeners = chain.getListeners();
        while(!listeners.isEmpty())
        {
            EventListener listener = listeners.removeFirst();
            listener.handleEvent(evt);
            if (chain.isStopped()) break;
        }
    }

    public static void handleEventListeners(final Event evt,final LinkedList<EventListener> listeners)
View Full Code Here

Examples of rinde.sim.event.Listener.handleEvent()

                  shell.close();
                }
              });
            }
            if (list != null) {
              list.handleEvent(arg0);
            }
          }
        }, Simulator.SimulatorEventType.STOPPED);
      }
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.