Adds missing dependency for commit 8648c6faf4819be6469c03ed4e8d516be7ecd75d


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/1be52939
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/1be52939
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/1be52939

Branch: refs/heads/feature/flexjs_wrapper
Commit: 1be5293930cbe841ca45d2bf212602c0e7393382
Parents: 90886a1
Author: DESKTOP-RH4S838\Yishay <yishayj...@hotmail.com>
Authored: Wed Sep 27 12:42:42 2017 +0300
Committer: DESKTOP-RH4S838\Yishay <yishayj...@hotmail.com>
Committed: Wed Sep 27 12:42:42 2017 +0300

----------------------------------------------------------------------
 .../flex/org/apache/flex/utils/MockParent.as    | 69 ++++++++++++++++++++
 1 file changed, 69 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1be52939/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockParent.as
----------------------------------------------------------------------
diff --git 
a/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockParent.as 
b/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockParent.as
new file mode 100644
index 0000000..8ed2027
--- /dev/null
+++ 
b/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockParent.as
@@ -0,0 +1,69 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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 org.apache.flex.utils
+{
+       import org.apache.flex.core.IChild;
+       import org.apache.flex.core.IParent;
+       import org.apache.flex.events.EventDispatcher;
+
+       public class MockParent extends EventDispatcher implements IParent
+       {
+               public function MockParent()
+               {
+                       super();
+               }
+
+               public function addElement(c:IChild, 
dispatchEvent:Boolean=true):void
+               {
+                       // TODO Auto Generated method stub
+                       
+               }
+               
+               public function addElementAt(c:IChild, index:int, 
dispatchEvent:Boolean=true):void
+               {
+                       // TODO Auto Generated method stub
+                       
+               }
+               
+               public function getElementAt(index:int):IChild
+               {
+                       // TODO Auto Generated method stub
+                       return null;
+               }
+               
+               public function getElementIndex(c:IChild):int
+               {
+                       // TODO Auto Generated method stub
+                       return 0;
+               }
+               
+               public function get numElements():int
+               {
+                       // TODO Auto Generated method stub
+                       return 0;
+               }
+               
+               public function removeElement(c:IChild, 
dispatchEvent:Boolean=true):void
+               {
+                       // TODO Auto Generated method stub
+                       
+               }
+               
+       }
+}

Reply via email to