jdk/src/java.desktop/share/classes/java/awt/SystemTray.java
changeset 32865 f9cb6e427f9e
parent 25859 3317bb8137f4
child 35667 ed476aba94de
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
   122  */
   122  */
   123 public class SystemTray {
   123 public class SystemTray {
   124     private static SystemTray systemTray;
   124     private static SystemTray systemTray;
   125     private int currentIconID = 0; // each TrayIcon added gets a unique ID
   125     private int currentIconID = 0; // each TrayIcon added gets a unique ID
   126 
   126 
   127     transient private SystemTrayPeer peer;
   127     private transient SystemTrayPeer peer;
   128 
   128 
   129     private static final TrayIcon[] EMPTY_TRAY_ARRAY = new TrayIcon[0];
   129     private static final TrayIcon[] EMPTY_TRAY_ARRAY = new TrayIcon[0];
   130 
   130 
   131     static {
   131     static {
   132         AWTAccessor.setSystemTrayAccessor(
   132         AWTAccessor.setSystemTrayAccessor(