Changes to make the asdoc tool run. Right now crashing with errors due to some syntax issues that it doesn't like, but Flash Builder doesn't mind them

This commit is contained in:
@deniszgonjanin 2011-02-11 15:32:28 -05:00
parent 227dc4cc11
commit e9345a7575

View File

@ -23,22 +23,23 @@
<mx:UIComponent xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
import org.bigbluebutton.common.LogUtil;
import mx.logging.Log;
import mx.managers.PopUpManager;
import org.bigbluebutton.common.LogUtil;
public function openLogWindow():void {
Log.getLogger("LogController").info("CTRL-SHIFT-L has been pushed!");
if (!LogUtil.debugPanel) {
LogUtil.debugPanel = new LogUtil.debugPanel();
}
viewLogUtil.debugPanel();
viewLogUtildebugPanel();
}
[Bindable]
public var LogUtil.debugPanel:LogUtil.debugPanel;
public var LogUtil.debugPanel:Object;
private function viewLogUtil.debugPanel():void {
private function viewLogUtildebugPanel():void {
Log.getLogger("LogController").debug("LogUtil.debug panel is added to popup manager.");
LogUtil.debugPanel.isOpen = true;
PopUpManager.addPopUp(LogUtil.debugPanel, DisplayObject(this.parentApplication));