aboutsummaryrefslogtreecommitdiff
path: root/vendors/uploadify/com/adobe/protocols/dict/events
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2010-10-24 21:08:27 +0000
committerCash Costello <cash.costello@gmail.com>2010-10-24 21:08:27 +0000
commitda1493b95a2f0b5000a487ae373c9318c58d0b2d (patch)
treea339b053ade9fb15a1717bdf248a59afc9b3d239 /vendors/uploadify/com/adobe/protocols/dict/events
parent5161b1c8fdc8ff69005f864a89127fc18db6d4ed (diff)
downloadelgg-da1493b95a2f0b5000a487ae373c9318c58d0b2d.tar.gz
elgg-da1493b95a2f0b5000a487ae373c9318c58d0b2d.tar.bz2
partial implementation of flash uploader
Diffstat (limited to 'vendors/uploadify/com/adobe/protocols/dict/events')
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/ConnectedEvent.as14
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/DatabaseEvent.as26
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/DefinitionEvent.as27
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/DefinitionHeaderEvent.as26
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as26
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/DisconnectedEvent.as14
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/ErrorEvent.as37
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/MatchEvent.as26
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/MatchStrategiesEvent.as26
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/NoMatchEvent.as14
10 files changed, 236 insertions, 0 deletions
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/ConnectedEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/ConnectedEvent.as
new file mode 100644
index 000000000..c4a414521
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/ConnectedEvent.as
@@ -0,0 +1,14 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+
+ public class ConnectedEvent extends Event
+ {
+ public function ConnectedEvent()
+ {
+ super(Dict.CONNECTED);
+ }
+
+ }
+} \ No newline at end of file
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/DatabaseEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/DatabaseEvent.as
new file mode 100644
index 000000000..fdd2cc1eb
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/DatabaseEvent.as
@@ -0,0 +1,26 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+
+ public class DatabaseEvent
+ extends Event
+ {
+ private var _databases:Array;
+
+ public function DatabaseEvent()
+ {
+ super(Dict.DATABASES);
+ }
+
+ public function set databases(databases:Array):void
+ {
+ this._databases = databases;
+ }
+
+ public function get databases():Array
+ {
+ return this._databases;
+ }
+ }
+} \ No newline at end of file
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/DefinitionEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/DefinitionEvent.as
new file mode 100644
index 000000000..8107173e6
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/DefinitionEvent.as
@@ -0,0 +1,27 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+ import com.adobe.protocols.dict.Definition;
+
+ public class DefinitionEvent
+ extends Event
+ {
+ private var _definition:Definition;
+
+ public function DefinitionEvent()
+ {
+ super(Dict.DEFINITION);
+ }
+
+ public function set definition(definition:Definition):void
+ {
+ this._definition = definition;
+ }
+
+ public function get definition():Definition
+ {
+ return this._definition;
+ }
+ }
+} \ No newline at end of file
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/DefinitionHeaderEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/DefinitionHeaderEvent.as
new file mode 100644
index 000000000..e77c402ae
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/DefinitionHeaderEvent.as
@@ -0,0 +1,26 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+
+ public class DefinitionHeaderEvent
+ extends Event
+ {
+ private var _definitionCount:uint;
+
+ public function DefinitionHeaderEvent()
+ {
+ super(Dict.DEFINITION_HEADER);
+ }
+
+ public function set definitionCount(definitionCount:uint):void
+ {
+ this._definitionCount = definitionCount;
+ }
+
+ public function get definitionCount():uint
+ {
+ return this._definitionCount;
+ }
+ }
+} \ No newline at end of file
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as
new file mode 100644
index 000000000..9b406e95c
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as
@@ -0,0 +1,26 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+
+ public class DictionaryServerEvent
+ extends Event
+ {
+ private var _servers:Array;
+
+ public function DictionaryServerEvent()
+ {
+ super(Dict.SERVERS);
+ }
+
+ public function set servers(servers:Array):void
+ {
+ this._servers = servers;
+ }
+
+ public function get servers():Array
+ {
+ return this._servers;
+ }
+ }
+} \ No newline at end of file
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/DisconnectedEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/DisconnectedEvent.as
new file mode 100644
index 000000000..485b3edac
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/DisconnectedEvent.as
@@ -0,0 +1,14 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+
+ public class DisconnectedEvent extends Event
+ {
+ public function DisconnectedEvent()
+ {
+ super(Dict.DISCONNECTED);
+ }
+
+ }
+} \ No newline at end of file
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/ErrorEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/ErrorEvent.as
new file mode 100644
index 000000000..9e5fc7ad2
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/ErrorEvent.as
@@ -0,0 +1,37 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+
+ public class ErrorEvent
+ extends Event
+ {
+ private var _code:uint;
+ private var _message:String;
+
+ public function ErrorEvent()
+ {
+ super(Dict.ERROR);
+ }
+
+ public function set code(code:uint):void
+ {
+ this._code = code;
+ }
+
+ public function set message(message:String):void
+ {
+ this._message = message;
+ }
+
+ public function get code():uint
+ {
+ return this._code;
+ }
+
+ public function get message():String
+ {
+ return this._message;
+ }
+ }
+} \ No newline at end of file
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/MatchEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/MatchEvent.as
new file mode 100644
index 000000000..65b868851
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/MatchEvent.as
@@ -0,0 +1,26 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+
+ public class MatchEvent
+ extends Event
+ {
+ private var _matches:Array;
+
+ public function MatchEvent()
+ {
+ super(Dict.MATCH);
+ }
+
+ public function set matches(matches:Array):void
+ {
+ this._matches = matches;
+ }
+
+ public function get matches():Array
+ {
+ return this._matches;
+ }
+ }
+} \ No newline at end of file
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/MatchStrategiesEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/MatchStrategiesEvent.as
new file mode 100644
index 000000000..75b76f889
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/MatchStrategiesEvent.as
@@ -0,0 +1,26 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+
+ public class MatchStrategiesEvent
+ extends Event
+ {
+ private var _strategies:Array;
+
+ public function MatchStrategiesEvent()
+ {
+ super(Dict.MATCH_STRATEGIES);
+ }
+
+ public function set strategies(strategies:Array):void
+ {
+ this._strategies = strategies;
+ }
+
+ public function get strategies():Array
+ {
+ return this._strategies;
+ }
+ }
+} \ No newline at end of file
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/NoMatchEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/NoMatchEvent.as
new file mode 100644
index 000000000..894d1ae2c
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/NoMatchEvent.as
@@ -0,0 +1,14 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+
+ public class NoMatchEvent
+ extends Event
+ {
+ public function NoMatchEvent()
+ {
+ super(Dict.NO_MATCH);
+ }
+ }
+} \ No newline at end of file