jdk/src/share/classes/java/awt/SequencedEvent.java
author art
Mon, 02 Sep 2013 16:48:51 +0400
changeset 20107 18e644411f0b
parent 13652 42544e68dc39
child 22584 eed64ee05369
permissions -rw-r--r--
8022184: Fix static , Raw warnings in classes belonging to java.awt Reviewed-by: art, anthony Contributed-by: Srikalyan Chandrashekar <srikalyan.chandrashekar@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 6826
diff changeset
     2
 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.awt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.LinkedList;
13652
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    29
import sun.awt.AWTAccessor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import sun.awt.AppContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import sun.awt.SunToolkit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * A mechanism for ensuring that a series of AWTEvents are executed in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * precise order, even across multiple AppContexts. The nested events will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * dispatched in the order in which their wrapping SequencedEvents were
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * constructed. The only exception to this rule is if the peer of the target of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * the nested event was destroyed (with a call to Component.removeNotify)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * before the wrapping SequencedEvent was able to be dispatched. In this case,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * the nested event is never dispatched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * @author David Mendenhall
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
class SequencedEvent extends AWTEvent implements ActiveEvent {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
     * serialVersionUID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private static final long serialVersionUID = 547742659238625067L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private static final int ID =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        java.awt.event.FocusEvent.FOCUS_LAST + 1;
20107
18e644411f0b 8022184: Fix static , Raw warnings in classes belonging to java.awt
art
parents: 13652
diff changeset
    52
    private static final LinkedList<SequencedEvent> list = new LinkedList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    private final AWTEvent nested;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private AppContext appContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    private boolean disposed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
13652
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    58
    static {
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    59
        AWTAccessor.setSequencedEventAccessor(new AWTAccessor.SequencedEventAccessor() {
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    60
            public AWTEvent getNested(AWTEvent sequencedEvent) {
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    61
                return ((SequencedEvent)sequencedEvent).nested;
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    62
            }
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    63
            public boolean isSequencedEvent(AWTEvent event) {
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    64
                return event instanceof SequencedEvent;
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    65
            }
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    66
        });
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    67
    }
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    68
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * Constructs a new SequencedEvent which will dispatch the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * nested event.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * @param nested the AWTEvent which this SequencedEvent's dispatch()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     *        method will dispatch
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    public SequencedEvent(AWTEvent nested) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        super(nested.getSource(), ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        this.nested = nested;
6826
1fc6a05552f2 6991992: Need to forward-port AWT's part of the fix for 6691674
dcherepanov
parents: 5506
diff changeset
    79
        // All AWTEvents that are wrapped in SequencedEvents are (at
1fc6a05552f2 6991992: Need to forward-port AWT's part of the fix for 6691674
dcherepanov
parents: 5506
diff changeset
    80
        // least currently) implicitly generated by the system
1fc6a05552f2 6991992: Need to forward-port AWT's part of the fix for 6691674
dcherepanov
parents: 5506
diff changeset
    81
        SunToolkit.setSystemGenerated(nested);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        synchronized (SequencedEvent.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            list.add(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * Dispatches the nested event after all previous nested events have been
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * dispatched or disposed. If this method is invoked before all previous nested events
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * have been dispatched, then this method blocks until such a point is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * While waiting disposes nested events to disposed AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * NOTE: Locking protocol.  Since dispose() can get EventQueue lock,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * dispatch() shall never call dispose() while holding the lock on the list,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * as EventQueue lock is held during dispatching.  The locks should be acquired
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * in the same order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    public final void dispatch() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            appContext = AppContext.getAppContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            if (getFirst() != this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                if (EventQueue.isDispatchThread()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                    EventDispatchThread edt = (EventDispatchThread)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                        Thread.currentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                    edt.pumpEvents(SentEvent.ID, new Conditional() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                        public boolean evaluate() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                            return !SequencedEvent.this.isFirstOrDisposed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                    while(!isFirstOrDisposed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                        synchronized (SequencedEvent.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                                SequencedEvent.class.wait(1000);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                            } catch (InterruptedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            if (!disposed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                KeyboardFocusManager.getCurrentKeyboardFocusManager().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                    setCurrentSequencedEvent(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                Toolkit.getEventQueue().dispatchEvent(nested);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * true only if event exists and nested source appContext is disposed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    private final static boolean isOwnerAppContextDisposed(SequencedEvent se) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        if (se != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            Object target = se.nested.getSource();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            if (target instanceof Component) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
                return ((Component)target).appContext.isDisposed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * Sequenced events are dispatched in order, so we cannot dispatch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * until we are the first sequenced event in the queue (i.e. it's our
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * turn).  But while we wait for our turn to dispatch, the event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * could have been disposed for a number of reasons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public final boolean isFirstOrDisposed() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        if (disposed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        // getFirstWithContext can dispose this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        return this == getFirstWithContext() || disposed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    private final synchronized static SequencedEvent getFirst() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        return (SequencedEvent)list.getFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /* Disposes all events from disposed AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * return first valid event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    private final static SequencedEvent getFirstWithContext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        SequencedEvent first = getFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        while(isOwnerAppContextDisposed(first)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            first.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            first = getFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        return first;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * Disposes of this instance. This method is invoked once the nested event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * has been dispatched and handled, or when the peer of the target of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * nested event has been disposed with a call to Component.removeNotify.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * NOTE: Locking protocol.  Since SunToolkit.postEvent can get EventQueue lock,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * it shall never be called while holding the lock on the list,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * as EventQueue lock is held during dispatching and dispatch() will get
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * lock on the list. The locks should be acquired in the same order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    final void dispose() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
      synchronized (SequencedEvent.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            if (disposed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            if (KeyboardFocusManager.getCurrentKeyboardFocusManager().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                    getCurrentSequencedEvent() == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
                KeyboardFocusManager.getCurrentKeyboardFocusManager().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
                    setCurrentSequencedEvent(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            disposed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        // Wake myself up
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        if (appContext != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            SunToolkit.postEvent(appContext, new SentEvent());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        SequencedEvent next = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        synchronized (SequencedEvent.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
          SequencedEvent.class.notifyAll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
          if (list.getFirst() == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
              list.removeFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
              if (!list.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                    next = (SequencedEvent)list.getFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
              }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
          } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
              list.remove(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        // Wake up waiting threads
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        if (next != null && next.appContext != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            SunToolkit.postEvent(next.appContext, new SentEvent());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
}