Packagesystem.signals
Classpublic class SignalStrings
InheritanceSignalStrings Inheritance Object

The enumeration of all string expressions in the Signal engine.



Public Properties
 PropertyDefined 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
Property Detail
INVALID_PARAMETER_TYPEproperty
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_LENGTHproperty 
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_TYPESproperty 
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).