Create an API to control and manage the Framework Note: this API registers itself if "frameworkDebug" is enabled
Created: May 31, 2005 @author Brad Zdanivsky
262728293031323334
/** @return a reference to this singleton class */ public static FrameworkAPI getReference() { if (singleton == null) { singleton = new FrameworkAPI(); } return singleton; }