1 package com.melloware.jukes.tray;
2
3 import java.awt.Image;
4
5 /**
6 * Common interface for tray icons on Windows and KDE.
7 * <p>
8 * Copyright (c) 1999-2007 Melloware, Inc. <http://www.melloware.com>
9 * @author Emil A. Lefkof III <info@melloware.com>
10 * @version 4.0
11 */
12 public interface ITrayIcon {
13
14 public boolean isAvailable();
15
16 public void cleanUp();
17
18 public void showWindow();
19
20 public void hideWindow();
21
22 public void changeImage(Image aImage);
23
24 public void setToolTip(String aTip);
25
26 }