package javax.microedition.lcdui;

public class AlertType
{
 public static final AlertType INFO;
 public static final AlertType WARNING;
 public static final AlertType ERROR;
 public static final AlertType ALARM;
 public static final AlertType CONFIRMATION;

 protected AlertType()
 {
 }
 
 public boolean playSound(Display)
 {
  return false;
 }
 
}