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

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

commit 50bb73fed96ecd36ca8d93c4cf0d3ad8f5ca43e5
Author: Alex Harui <[email protected]>
AuthorDate: Thu Feb 15 19:20:10 2018 -0800

    get rid of our fake VOs.  We will use generated ones
---
 .../ASDoc/src/main/royale/valueObjects/DataVO.as   | 50 ----------------------
 .../src/main/royale/valueObjects/ValueObject.as    | 35 ---------------
 2 files changed, 85 deletions(-)

diff --git a/examples/royale/ASDoc/src/main/royale/valueObjects/DataVO.as 
b/examples/royale/ASDoc/src/main/royale/valueObjects/DataVO.as
deleted file mode 100644
index cc4d5d8..0000000
--- a/examples/royale/ASDoc/src/main/royale/valueObjects/DataVO.as
+++ /dev/null
@@ -1,50 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  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 "Licens"); 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 valueObjects
-{
-    public class DataVO
-    {
-        public function DataVO(params:Object)
-        {
-            baseClassname = params["baseClassname"] || "";
-            if(params["baseInterfaceNames"])
-                baseInterfaceNames = params["baseInterfaceNames"];
-
-            if(params["events"])
-                events = params["events"];
-            
-            if(params["members"])
-                members = params["members"];
-            
-            qname = params["qname"] || "";
-
-            if(params["tags"])
-                tags = params["tags"];
-                
-            type = params["type"] || "";
-        }
-        public var baseClassname:String;
-        public var baseInterfaceNames:Array;
-        public var events:Array;
-        public var members:Array;
-        public var qname:String;
-        public var tags:Array;
-        public var type:String;
-    }
-}
diff --git a/examples/royale/ASDoc/src/main/royale/valueObjects/ValueObject.as 
b/examples/royale/ASDoc/src/main/royale/valueObjects/ValueObject.as
deleted file mode 100644
index efd9243..0000000
--- a/examples/royale/ASDoc/src/main/royale/valueObjects/ValueObject.as
+++ /dev/null
@@ -1,35 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  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 valueObjects
-{      
-       [Bindable]
-       public class ValueObject
-       {
-               public var qname:String;
-               public var shortDescription:String;
-               public var description:String;
-               public var return:String;
-               public var returnhref:String;
-               public var attributes:Array;
-               public var params:Array;
-               public var type:String;
-               public var typehref:String;
-               public var ownerhref:String;
-       }
-}

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to