1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* * Copyright (C) 2006 Sun Microsystems, Inc. All rights reserved. Use is * subject to license terms. */ package java.awt.peer; import java.awt.TrayIcon; import java.awt.Dimension; import java.awt.Point; public interface TrayIconPeer { void dispose(); void setToolTip(String tooltip); void updateImage(); void displayMessage(String caption, String text, String messageType); void showPopupMenu(int x, int y); }