Documentation for classes includes syntax, usage information, and code samples for methods, properties, and event handlers and listeners for those APIs that belong to a specific class in ActionScript. The classes are listed alphabetically. If you are not sure to which class a certain method or property belongs, you can look it up in the Index.
| Class | Package | Description | |
|---|---|---|---|
| AbstractException
| com.ericfeminella.errors |
Pseudo-abstract base class which provides an API
allowing sub-classes to pass a message containing
tokens to be replaced with an arbitrary length of
parameters
Below is an example of an AbstractException sub class
package
{
public class SimpleError extends AbstractException
{
public static const MESSAGE:String = "Error {0}";
public function SimpleError(detail:String){
super(SimpleError.MESSAGE, detail);
}
}
|
|
| GUIDNumber
| com.ericfeminella.encryption | Creates a Genuine Unique Identifier (GUID) of simple type Number | |
| IAMFEncodable
| com.ericfeminella.net | Enforces the contract for classes which must provide an API allowing users to explicitly get / set specific objectEncoding | |
| IFlexUISession
| com.ericfeminella.net | Defines the contract for managed persistence object instances which must persist session data | |
| IManagedPersistence
| com.ericfeminella.net | Defines the contract required for managing persisted data locally, remotely or sharing persisted data in real time across a network, typically via SharedObject | |
| LocalPersistence
| com.ericfeminella.local | Provides an API which allows local persistence to be maintaining on the client via SharedObject | |
| SharedObjectIdValidator
| com.ericfeminella.net | Provides all static utility methods which manage SharedObject name validation | |
| UnsupportedObjectEncodingException
| com.ericfeminella.errors | Throws an exception specifying an Illegal ObjectEncoding assignment was specifed |