Class fever.conf.FeverConfiguration

Description

Used by Pixlib ConfigLoader to map configuration xml object.

Field Index

bitmaps, bitmapURL, fonts, fontURL, locales, localeURL, paths, remotingURL, resourceURL, sounds, soundURL, success, themes, themeURL

Method Index

new FeverConfiguration()
getBitmapPath(), getFontPath(), getLocalePath(), getSoundPath(), getThemePath(), invalidate(), load(), save()

Constructor Detail

FeverConfiguration

public function FeverConfiguration()

Constructor.

Field Detail

success

public success:Boolean [Read Only]
Configuration loading status.

paths

public paths:Object
Object with paths properties.

locales

public locales:Object
Object with localisation properties.

fonts

public fonts:Object
Object with fonts properties.

themes

public themes:Object
Object with themes properties.

bitmaps

public bitmaps:Object
Object with bitmaps properties.

sounds

public sounds:Object
Object with sounds properties.

resourceURL

public resourceURL:String
Base path for resources url.

localeURL

public localeURL:String
Path for localisation files.

fontURL

public fontURL:String
Path for font libraries.

themeURL

public themeURL:String
Path for theme libraries.

bitmapURL

public bitmapURL:String
Path for bitmaps.

soundURL

public soundURL:String
Path for sounds.

remotingURL

public remotingURL:String
Defautl remoting gateway url.

Method Detail

getLocalePath

public function getLocalePath():String

Returns the full qualified path to localisation files.
Equal to resourceURL + localeURL

getFontPath

public function getFontPath():String

Returns the full qualified path to font libraries.
Equal to resourceURL + fontURL

getThemePath

public function getThemePath():String

Returns the full qualified path to theme libraries.
Equal to resourceURL + themeURL

getBitmapPath

public function getBitmapPath():String

Returns the full qualified path to bitmaps.
Equal to resourceURL + bitmapURL

getSoundPath

public function getSoundPath():String

Returns the full qualified path to bitmaps.
Equal to resourceURL + soundURL

invalidate

public function invalidate():Void

Fever internal used.

load

public function load(propName:String)

Retreives passed-in propName property stored in Application SharedObject.

save

public function save(propName:String, propValue):Void

Stores passed-in propValue value in Application SharedObject under propName name.