git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@485 af16638f-c34d-0410-8cfa-b39d5352b314
This commit is contained in:
parent
f3ee301028
commit
9b0880f8e4
8
bigbluebutton-clientv.034/src/config/modules.xml
Normal file
8
bigbluebutton-clientv.034/src/config/modules.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<modules>
|
||||
|
||||
<module id="Chat" swfpath="org/bigbluebutton/modules/chat/chat_module.swf" >
|
||||
<from>FROM_CHAT_MODULE</>
|
||||
<to>TO_CHAT_MODULE</>
|
||||
</module>
|
||||
|
||||
</modules>
|
@ -3,4 +3,5 @@
|
||||
<module id="Presentation" swfpath="org/bigbluebutton/modules/presentation/presentation_module.swf" />
|
||||
<module id="Video" swfpath="org/bigbluebutton/modules/video/video_module.swf" />
|
||||
<module id="Voice" swfpath="org/bigbluebutton/modules/voiceconference/voice_module.swf" />
|
||||
<module id="Playback" swfpath="org/bigbluebutton/modules/playback/playback_module.swf" />
|
||||
</modules>
|
@ -1,7 +0,0 @@
|
||||
package org.bigbluebutton.main
|
||||
{
|
||||
public interface ITestModule
|
||||
{
|
||||
function test():String;
|
||||
}
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
package org.bigbluebutton.main
|
||||
{
|
||||
import org.puremvc.as3.multicore.interfaces.IMediator;
|
||||
import org.puremvc.as3.multicore.interfaces.INotification;
|
||||
import org.puremvc.as3.multicore.patterns.mediator.Mediator;
|
||||
|
||||
public class ModuleMediator extends Mediator implements IMediator
|
||||
{
|
||||
public function ModuleMediator()
|
||||
{
|
||||
}
|
||||
|
||||
override public function listNotificationInterests():Array{
|
||||
return [];
|
||||
}
|
||||
|
||||
override public function handleNotification(notification:INotification):void{
|
||||
|
||||
}
|
||||
|
||||
override public function initializeNotifier(key:String):void{
|
||||
super.initializeNotifier(key);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -29,7 +29,7 @@ package org.bigbluebutton.modules.chat
|
||||
public static const FROM_CHAT_MODULE:String = 'FROM_CHAT_MODULE';
|
||||
public static const TO_CHAT_MODULE:String = 'TO_CHAT_MODULE';
|
||||
|
||||
public static const OPEN_WINDOW_MSG:String = 'OPEN_WINDOW_MSG';
|
||||
public static const CLOSE_WINDOW_MSG:String = 'CLOSE_WINDOW_MSG';
|
||||
//public static const OPEN_WINDOW_MSG:String = 'OPEN_WINDOW_MSG';
|
||||
//public static const CLOSE_WINDOW_MSG:String = 'CLOSE_WINDOW_MSG';
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user