com.jpackages.jtray
Class BalloonType

java.lang.Object
  extended by com.jpackages.jtray.BalloonType

public abstract class BalloonType
extends java.lang.Object

This abstract class defines all balloon message types.

Balloon messages can only be shown on Windows 2000 and Windows XP.

Each balloon type is represented as an int.

Example:

 // jTrayIcon is a JTrayIcon instance
 jTrayIcon.showBalloonMessage("Title", "Balloon Message", BalloonType.INFO);
 

Copyright (c) 2001-2008

Author:
JPackages.com

Field Summary
static int ERROR
           Displays an error icon in the balloon
static int INFO
           Displays an information icon in the balloon
static int NO_ICON
           Displays no icon in the balloon
static int WARNING
           Displays a warning icon in the balloon
 
Constructor Summary
BalloonType()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ERROR

public static final int ERROR

Displays an error icon in the balloon

See Also:
Constant Field Values

INFO

public static final int INFO

Displays an information icon in the balloon

See Also:
Constant Field Values

NO_ICON

public static final int NO_ICON

Displays no icon in the balloon

See Also:
Constant Field Values

WARNING

public static final int WARNING

Displays a warning icon in the balloon

See Also:
Constant Field Values
Constructor Detail

BalloonType

public BalloonType()