Uses of Class
org.apache.pivot.wtk.MessageType

Packages that use MessageType
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. 
 

Uses of MessageType in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return MessageType
 MessageType Alert.getMessageType()
           
 MessageType Prompt.getMessageType()
           
 MessageType Form.Flag.getMessageType()
          Returns the flag's message type.
static MessageType MessageType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MessageType[] MessageType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.pivot.wtk with parameters of type MessageType
static void Alert.alert(MessageType messageType, String message, Component body, Window owner)
           
static void Alert.alert(MessageType messageType, String message, Component body, Window owner, DialogCloseListener dialogCloseListener)
           
static void Alert.alert(MessageType messageType, String message, String title, Component body, Window owner, DialogCloseListener dialogCloseListener)
           
static void Alert.alert(MessageType messageType, String message, Window owner)
           
static void Alert.alert(MessageType messageType, String message, Window owner, DialogCloseListener dialogCloseListener)
           
 int Form.getFlaggedFieldCount(MessageType messageType)
          Returns the number of fields that are flagged with a given message type.
 void AlertListener.messageTypeChanged(Alert alert, MessageType previousMessageType)
          Called when an alert's message type has changed.
 void AlertListener.Adapter.messageTypeChanged(Alert alert, MessageType previousMessageType)
           
 void PromptListener.messageTypeChanged(Prompt prompt, MessageType previousMessageType)
          Called when a prompt's message type has changed.
 void PromptListener.Adapter.messageTypeChanged(Prompt prompt, MessageType previousMessageType)
           
static void Prompt.prompt(MessageType messageType, String message, Component body, Window owner)
           
static void Prompt.prompt(MessageType messageType, String message, Component body, Window owner, SheetCloseListener sheetCloseListener)
           
static void Prompt.prompt(MessageType messageType, String message, Window owner)
           
static void Prompt.prompt(MessageType messageType, String message, Window owner, SheetCloseListener sheetCloseListener)
           
 void Form.scrollFirstFlagToVisible(MessageType messageType)
          Ensures that the first field with the given flag type is visible.
 void Alert.setMessageType(MessageType messageType)
           
 void Prompt.setMessageType(MessageType messageType)
           
 void Form.Flag.setMessageType(MessageType messageType)
          Sets the flag's message type.
 

Constructors in org.apache.pivot.wtk with parameters of type MessageType
Alert(MessageType messageType, String message, Sequence<?> options)
           
Alert(MessageType messageType, String message, Sequence<?> options, boolean modal)
           
Alert(MessageType messageType, String message, Sequence<?> options, Component body)
           
Alert(MessageType messageType, String message, Sequence<?> options, Component body, boolean modal)
           
Form.Flag(MessageType messageType)
          Creates a new flag with the given message type and no message.
Form.Flag(MessageType messageType, String message)
          Creates a new flag with the given type and message.
Prompt(MessageType messageType, String message, Sequence<?> options)
           
Prompt(MessageType messageType, String message, Sequence<?> options, Component body)
           
 

Uses of MessageType in org.apache.pivot.wtk.skin.terra
 

Methods in org.apache.pivot.wtk.skin.terra with parameters of type MessageType
 Image TerraTheme.getMessageIcon(MessageType messageType)
          Gets the image that this theme uses to represent messages of the specified type.
 Image TerraTheme.getSmallMessageIcon(MessageType messageType)
          Gets the small image that this theme uses to represent messages of the specified type.
 void TerraAlertSkin.messageTypeChanged(Alert alert, MessageType previousMessageType)
           
 void TerraPromptSkin.messageTypeChanged(Prompt prompt, MessageType previousMessageType)
           
 void TerraTheme.setMessageIcon(MessageType messageType, Image messageIcon)
          Sets the image that this theme uses to represent messages of the specified type.
 void TerraTheme.setSmallMessageIcon(MessageType messageType, Image smallMessageIcon)
          Sets the small image that this theme uses to represent messages of the specified type.