Packageorg.granite.tide
Classpublic class TideMessage
Implementsflash.utils.IExternalizable

TideMessage is a simple status message object with a severity and text It is similar to the JBoss Seam StatusMessage class or the JSF FacesMessages In general it is used to get messages from the server but messages can also be added locally



Public Properties
 PropertyDefined by
  detail : String
TideMessage
  severity : String
TideMessage
  summary : String
TideMessage
Public Methods
 MethodDefined by
  
TideMessage(severity:String = "INFO", summary:String = "", detail:String = "")
TideMessage
Public Constants
 ConstantDefined by
  ERROR : String = "ERROR"
[static]
TideMessage
  FATAL : String = "FATAL"
[static]
TideMessage
  INFO : String = "INFO"
[static]
TideMessage
  WARNING : String = "WARNING"
[static]
TideMessage
Property detail
detailproperty
detail:String  [read-write]

This property can be used as the source for data binding.

Implementation
    public function get detail():String
    public function set detail(value:String):void
severityproperty 
severity:String  [read-write]

This property can be used as the source for data binding.

Implementation
    public function get severity():String
    public function set severity(value:String):void
summaryproperty 
summary:String  [read-write]

This property can be used as the source for data binding.

Implementation
    public function get summary():String
    public function set summary(value:String):void
Constructor detail
TideMessage()constructor
public function TideMessage(severity:String = "INFO", summary:String = "", detail:String = "")Parameters
severity:String (default = "INFO")
 
summary:String (default = "")
 
detail:String (default = "")
Constant detail
ERRORconstant
public static const ERROR:String = "ERROR"
FATALconstant 
public static const FATAL:String = "FATAL"
INFOconstant 
public static const INFO:String = "INFO"
WARNINGconstant 
public static const WARNING:String = "WARNING"