static public function getLocator(name:String):BitmapLibLocator
Returns BitmapLibLocator registred with passed-in name.
If name not exist, a new BitmapLibLocator is created with
passed-in name for registration.
If name is null or undefined, returns the
default BitmapLibLocator named DEFAULT
BitmapLibLocator instance
static public function isRegistredLocator(name:String):Boolean
Returns true if a BitmapLibLocator is registred with
the passed-in name id, otherwise false
static public function unregisterLocator(name:String):Boolean
Unregistrers BitmapLibLocator defined by passed-in name id.
All data stored in this BitmapLibLocator are lost.
static public function getFullQualifiedBitmap(id:String):BitmapData
Retreives BitmapData object from passed-in full
qualified id.
id must be :ID@LOCATOR_NAME
Useful when define icons in xml config file for example.
static public function isFullQualifiedBitmapExist(id:String):Boolean
Returns true if passed-in full qualified bitmap id exist.
id must be :BITMAP_ID@REPOSITORY_NAME
public function pushBitmap(id:String, bmp:BitmapData):Boolean
Stores a new BitmapData object with id name.
public function getBitmap(id:String):BitmapData
Returns BitmapData stored with passed-in id
public function isRegistredBitmap(id:String):Boolean
Returns true if a BitmapData is registred with
the passed-in id, otherwise false
public function removeBitmap(id:String):Boolean
Removes BitmapData stored with passed-in id
public function disposeBitmap():Void
Clears all BitmapData object stored in current
BitmapLibLocator