| Package | system.signals |
| Class | public class SignalStrings |
| Inheritance | SignalStrings Object |
| Property | Defined By | ||
|---|---|---|---|
| INVALID_PARAMETERS_LENGTH : String = The number of arguments in the emit method is not valid, must be invoked with {0} argument(s) and you call it with {1} argument(s). [static]
This pattern is used in the signals to notify an invalid number of parameters. | SignalStrings | ||
| INVALID_PARAMETER_TYPE : String = The parameter with the index {0} in the emit method isn't valid, must be an instance of the {1} class but is an instance of the {2} class. [static]
This pattern is used in the signals to notify an invalid type. | SignalStrings | ||
| INVALID_TYPES : String = Invalid types representation, the Array of types failed at index {0} should be a Class but was:"{1}". [static]
This pattern is used to indicates if the types argument is not valid (must contains only Class references). | SignalStrings | ||
| INVALID_PARAMETER_TYPE | property |
public static var INVALID_PARAMETER_TYPE:String = The parameter with the index {0} in the emit method isn't valid, must be an instance of the {1} class but is an instance of the {2} class.This pattern is used in the signals to notify an invalid type.
| INVALID_PARAMETERS_LENGTH | property |
public static var INVALID_PARAMETERS_LENGTH:String = The number of arguments in the emit method is not valid, must be invoked with {0} argument(s) and you call it with {1} argument(s).This pattern is used in the signals to notify an invalid number of parameters.
| INVALID_TYPES | property |
public static var INVALID_TYPES:String = Invalid types representation, the Array of types failed at index {0} should be a Class but was:"{1}".This pattern is used to indicates if the types argument is not valid (must contains only Class references).