This is an automated email from the ASF dual-hosted git repository.

alinakazi pushed a commit to branch feature/MXRoyale
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/feature/MXRoyale by this push:
     new 6211ea4  3 Event files Added
6211ea4 is described below

commit 6211ea498e8ad272d56d423a424546f6bc4287ae
Author: alinakazi <alinakazi1...@gmail.com>
AuthorDate: Thu Aug 9 17:18:54 2018 +0500

    3 Event files Added
---
 .../src/main/royale/mx/events/HTTPStatusEvent.as   | 107 +++++++++++++++++++++
 .../main/royale/mx/events/SecurityErrorEvent.as    | 107 +++++++++++++++++++++
 2 files changed, 214 insertions(+)

diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/events/HTTPStatusEvent.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/events/HTTPStatusEvent.as
new file mode 100644
index 0000000..0a260ee
--- /dev/null
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/events/HTTPStatusEvent.as
@@ -0,0 +1,107 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  Licensed to the Apache Software Foundation (ASF) under one or more
+//  contributor license agreements.  See the NOTICE file distributed with
+//  this work for additional information regarding copyright ownership.
+//  The ASF licenses this file to You under the Apache License, Version 2.0
+//  (the "License"); you may not use this file except in compliance with
+//  the License.  You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+//  Unless required by applicable law or agreed to in writing, software
+//  distributed under the License is distributed on an "AS IS" BASIS,
+//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//  See the License for the specific language governing permissions and
+//  limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+
+package mx.events
+{
+COMPILE::SWF
+{
+import flash.events.HTTPStatusEvent;        
+}
+/* import mx.events.Event;*/
+import org.apache.royale.events.Event;
+import org.apache.royale.events.IRoyaleEvent;
+
+/**
+ *
+ *  
+ *  @langversion 3.0
+ *  @playerversion Flash 9
+ *  @playerversion AIR 1.1
+ *  @productversion Royale 0.9.3
+ *  @royalesuppresspublicvarwarning
+ */
+COMPILE::SWF
+public class HTTPStatusEvent extends flash.events.HTTPStatusEvent
+{
+       public function HTTPStatusEvent(type:String, bubbles:Boolean = false, 
+        cancelable:Boolean = false, status:int = 0)
+       {
+               super(type, bubbles, cancelable,status);
+       }
+}
+
+/**
+ *  Represents event objects that are dispatched when focus changes.
+ *
+ *  @see mx.core.UIComponent
+ *  
+ *  @langversion 3.0
+ *  @playerversion Flash 9
+ *  @playerversion AIR 1.1
+ *  @productversion Royale 0.9.3
+ *  @royalesuppresspublicvarwarning
+ */
+COMPILE::JS
+public class HTTPStatusEvent extends org.apache.royale.events.Event
+{
+   /*  include "../core/Version.as"; */
+       public static const HTTP_STATUS:String = "httpStatus";
+       
+       
//--------------------------------------------------------------------------
+       //
+       //  Class constants
+       //
+       
//--------------------------------------------------------------------------
+
+       
+       
//--------------------------------------------------------------------------
+       //
+       //  Constructor
+       //
+       
//--------------------------------------------------------------------------
+
+       /**
+        *  Constructor.
+        *
+        *  @param type The event type; indicates the action that caused the 
event.
+        *
+        *  @param bubbles Specifies whether the event can bubble
+        *  up the display list hierarchy.
+        *
+        *  @param cancelable Specifies whether the behavior
+        *  associated with the event can be prevented.
+        *  
+        *  @langversion 3.0
+        *  @playerversion Flash 9
+        *  @playerversion AIR 1.1
+        *  @productversion Royale 0.9.3
+        */
+       public function HTTPStatusEvent(type:String, bubbles:Boolean = false,
+       cancelable:Boolean = false, status:int = 0)
+       {
+               super(type, bubbles, cancelable);
+       }
+       
+
+       
+
+       
+}
+
+}
diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/events/SecurityErrorEvent.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/events/SecurityErrorEvent.as
new file mode 100644
index 0000000..6e0df97
--- /dev/null
+++ 
b/frameworks/projects/MXRoyale/src/main/royale/mx/events/SecurityErrorEvent.as
@@ -0,0 +1,107 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  Licensed to the Apache Software Foundation (ASF) under one or more
+//  contributor license agreements.  See the NOTICE file distributed with
+//  this work for additional information regarding copyright ownership.
+//  The ASF licenses this file to You under the Apache License, Version 2.0
+//  (the "License"); you may not use this file except in compliance with
+//  the License.  You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+//  Unless required by applicable law or agreed to in writing, software
+//  distributed under the License is distributed on an "AS IS" BASIS,
+//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//  See the License for the specific language governing permissions and
+//  limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+
+package mx.events
+{
+COMPILE::SWF
+{
+import flash.events.SecurityErrorEvent;        
+}
+/* import mx.events.Event;*/
+import org.apache.royale.events.Event;
+import org.apache.royale.events.IRoyaleEvent;
+
+/**
+ *
+ *  
+ *  @langversion 3.0
+ *  @playerversion Flash 9
+ *  @playerversion AIR 1.1
+ *  @productversion Royale 0.9.3
+ *  @royalesuppresspublicvarwarning
+ */
+COMPILE::SWF
+public class SecurityErrorEvent extends flash.events.SecurityErrorEvent
+{
+       public function SecurityErrorEvent(type:String, bubbles:Boolean = 
false, 
+       cancelable:Boolean = false, text:String = "", id:int = 0)
+       {
+               super(type, bubbles, cancelable,text,id);
+       }
+}
+
+/**
+ *  Represents event objects that are dispatched when focus changes.
+ *
+ *  @see mx.core.UIComponent
+ *  
+ *  @langversion 3.0
+ *  @playerversion Flash 9
+ *  @playerversion AIR 1.1
+ *  @productversion Royale 0.9.3
+ *  @royalesuppresspublicvarwarning
+ */
+COMPILE::JS
+public class SecurityErrorEvent extends org.apache.royale.events.Event
+{
+   /*  include "../core/Version.as"; */
+       public static const SECURITY_ERROR:String = "securityError";
+       
+       
//--------------------------------------------------------------------------
+       //
+       //  Class constants
+       //
+       
//--------------------------------------------------------------------------
+
+       
+       
//--------------------------------------------------------------------------
+       //
+       //  Constructor
+       //
+       
//--------------------------------------------------------------------------
+
+       /**
+        *  Constructor.
+        *
+        *  @param type The event type; indicates the action that caused the 
event.
+        *
+        *  @param bubbles Specifies whether the event can bubble
+        *  up the display list hierarchy.
+        *
+        *  @param cancelable Specifies whether the behavior
+        *  associated with the event can be prevented.
+        *  
+        *  @langversion 3.0
+        *  @playerversion Flash 9
+        *  @playerversion AIR 1.1
+        *  @productversion Royale 0.9.3
+        */
+       public function SecurityErrorEvent(type:String, bubbles:Boolean = 
false, 
+       cancelable:Boolean = false, text:String = "", id:int = 0)
+       {
+               super(type, bubbles, cancelable);
+       }
+       
+
+       
+
+       
+}
+
+}

Reply via email to