com.google.gwt.dom.client.Element.dispatchEvent()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(5.8k)|赞(0)|评价(0)|浏览(259)

本文整理了Java中com.google.gwt.dom.client.Element.dispatchEvent()方法的一些代码示例,展示了Element.dispatchEvent()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Element.dispatchEvent()方法的具体详情如下:
包路径:com.google.gwt.dom.client.Element
类名称:Element
方法名:dispatchEvent

Element.dispatchEvent介绍

[英]Dispatched the given event with this element as its target. The event will go through all phases of the browser's normal event dispatch mechanism. Note: Because the browser's normal dispatch mechanism is used, exceptions thrown from within handlers triggered by this method cannot be caught by wrapping this method in a try/catch block. Such exceptions will be caught by the com.google.gwt.core.client.GWT#setUncaughtExceptionHandler(com.google.gwt.core.client.GWT.UncaughtExceptionHandler)as usual.
[中]已将此元素作为其目标调度给定事件。事件将经历浏览器正常事件分派机制的所有阶段。注意:由于使用浏览器的正常分派机制,因此无法通过将此方法包装在try/catch块中来捕获从此方法触发的处理程序中引发的异常。此类异常将被com捕获。谷歌。gwt。果心客户GWT#setUncaughtExceptionHandler(com.google.GWT.core.client.GWT.UncaughtExceptionHandler)与往常一样。

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. private static void triggerScrollEvent(Element elem) {
  2. elem.dispatchEvent(Document.get().createScrollEvent());
  3. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Dispatch an event to the cell, ensuring that the widget will catch it.
  3. *
  4. * @param widget the widget that will handle the event
  5. * @param target the cell element
  6. * @param eventBits the event bits to sink
  7. * @param event the event to fire, or null not to fire an event
  8. */
  9. private static void dispatchCellEvent(Widget widget, Element target,
  10. int eventBits, Event event) {
  11. // Make sure that the target is still a child of the widget. We defer the
  12. // firing of some events, so its possible that the DOM structure has
  13. // changed before we fire the event.
  14. if (!widget.getElement().isOrHasChild(target)) {
  15. return;
  16. }
  17. // Temporary listen for events from the cell. The event listener will be
  18. // removed in onBrowserEvent().
  19. DOM.setEventListener(target, widget);
  20. DOM.sinkEvents(target, eventBits | DOM.getEventsSunk(target));
  21. // Dispatch the event to the cell.
  22. if (event != null) {
  23. target.dispatchEvent(event);
  24. }
  25. }

代码示例来源:origin: com.allen-sauer.gwt.dnd/gwt-dnd

  1. @Override
  2. public void execute() {
  3. // TODO determine if we need to set additional event properties
  4. elem.dispatchEvent(DOMUtil.createTouchEndEvent(bubbles,
  5. cancelable,
  6. detail,
  7. ctrlKey,
  8. altKey,
  9. shiftKey,
  10. metaKey,
  11. changedTouches));
  12. }
  13. });

代码示例来源:origin: com.allen-sauer.gwt.dnd/gwt-dnd

  1. @Override
  2. public void execute() {
  3. // TODO determine if we need to set additional event properties
  4. elem.dispatchEvent(Document.get().createMouseUpEvent(detail,
  5. screenX,
  6. screenY,
  7. clientX,
  8. clientY,
  9. ctrlKey,
  10. altKey,
  11. shiftKey,
  12. metaKey,
  13. button));
  14. }
  15. });

代码示例来源:origin: net.wetheinter/gwt-user

  1. private static void triggerScrollEvent(Element elem) {
  2. elem.dispatchEvent(Document.get().createScrollEvent());
  3. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. private static void triggerScrollEvent(Element elem) {
  2. elem.dispatchEvent(Document.get().createScrollEvent());
  3. }

代码示例来源:origin: com.googlecode.gwt-test-utils/gwt-test-utils

  1. @PatchMethod
  2. static void dispatchEvent(Object domImpl, Element target, NativeEvent evt) {
  3. EventListener listener = DOM.getEventListener(target);
  4. if (listener != null && evt instanceof Event) {
  5. listener.onBrowserEvent((Event) evt);
  6. }
  7. // dispatch to parent if needed
  8. boolean propagationStopped = JavaScriptObjects.getBoolean(evt, JsoProperties.EVENT_IS_STOPPED);
  9. if (target.getParentElement() != null && propagationStopped) {
  10. target.getParentElement().dispatchEvent(evt);
  11. }
  12. }

代码示例来源:origin: gwt-test-utils/gwt-test-utils

  1. @PatchMethod
  2. static void dispatchEvent(Object domImpl, Element target, NativeEvent evt) {
  3. EventListener listener = DOM.getEventListener(target);
  4. if (listener != null && evt instanceof Event) {
  5. listener.onBrowserEvent((Event) evt);
  6. }
  7. // dispatch to parent if needed
  8. boolean propagationStopped = JavaScriptObjects.getBoolean(evt, JsoProperties.EVENT_IS_STOPPED);
  9. if (target.getParentElement() != null && propagationStopped) {
  10. target.getParentElement().dispatchEvent(evt);
  11. }
  12. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Dispatch an event to the cell, ensuring that the widget will catch it.
  3. *
  4. * @param widget the widget that will handle the event
  5. * @param target the cell element
  6. * @param eventBits the event bits to sink
  7. * @param event the event to fire, or null not to fire an event
  8. */
  9. private static void dispatchCellEvent(Widget widget, Element target,
  10. int eventBits, Event event) {
  11. // Make sure that the target is still a child of the widget. We defer the
  12. // firing of some events, so its possible that the DOM structure has
  13. // changed before we fire the event.
  14. if (!widget.getElement().isOrHasChild(target)) {
  15. return;
  16. }
  17. // Temporary listen for events from the cell. The event listener will be
  18. // removed in onBrowserEvent().
  19. DOM.setEventListener(target, widget);
  20. DOM.sinkEvents(target, eventBits | DOM.getEventsSunk(target));
  21. // Dispatch the event to the cell.
  22. if (event != null) {
  23. target.dispatchEvent(event);
  24. }
  25. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Dispatch an event to the cell, ensuring that the widget will catch it.
  3. *
  4. * @param widget the widget that will handle the event
  5. * @param target the cell element
  6. * @param eventBits the event bits to sink
  7. * @param event the event to fire, or null not to fire an event
  8. */
  9. private static void dispatchCellEvent(Widget widget, Element target,
  10. int eventBits, Event event) {
  11. // Make sure that the target is still a child of the widget. We defer the
  12. // firing of some events, so its possible that the DOM structure has
  13. // changed before we fire the event.
  14. if (!widget.getElement().isOrHasChild(target)) {
  15. return;
  16. }
  17. // Temporary listen for events from the cell. The event listener will be
  18. // removed in onBrowserEvent().
  19. DOM.setEventListener(target, widget);
  20. DOM.sinkEvents(target, eventBits | DOM.getEventsSunk(target));
  21. // Dispatch the event to the cell.
  22. if (event != null) {
  23. target.dispatchEvent(event);
  24. }
  25. }

代码示例来源:origin: com.googlecode.gwtquery/gwtquery

  1. public void dispatchEvent(NativeEvent evt, Object[] datas, Function... funcs) {
  2. for (Element e : elements()) {
  3. if (isEventCapable(e)) {
  4. $(e).data(EventsListener.EVENT_DATA, datas);
  5. // Ie6-8 don't dispatch bitless event
  6. if ((browser.ie6 || browser.ie8) && Event.getTypeInt(evt.getType()) == -1) {
  7. bubbleEventForIE(e, evt.<Event> cast());
  8. } else {
  9. e.dispatchEvent(evt);
  10. }
  11. if (!JsUtils.isDefaultPrevented(evt)) {
  12. callHandlers(e, evt, funcs);
  13. }
  14. $(e).removeData(EventsListener.EVENT_DATA);
  15. }
  16. }
  17. }

相关文章

Element类方法