KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > awt > peer > TrayIconPeer


1 /*
2  * Copyright (C) 2006 Sun Microsystems, Inc. All rights reserved. Use is
3  * subject to license terms.
4  */

5
6 package java.awt.peer;
7
8 import java.awt.TrayIcon JavaDoc;
9 import java.awt.Dimension JavaDoc;
10 import java.awt.Point JavaDoc;
11
12 public interface TrayIconPeer {
13     void dispose();
14     void setToolTip(String JavaDoc tooltip);
15     void updateImage();
16     void displayMessage(String JavaDoc caption, String JavaDoc text, String JavaDoc messageType);
17     void showPopupMenu(int x, int y);
18 }
19
Popular Tags