//////////////////////////////////////////////////////////////////////////////// // // 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. // //////////////////////////////////////////////////////////////////////////////// // ugly to keep this in the file package { import mx.collections.ArrayCollection; public class DataGraphicsData { public function DataGraphicsData() { } [Bindable] public var adbeX:XML = Mon Jul 31 12:00:00 GMT-0800 2006 27.53 28.56 27.23 28.51 5824400 Tue Aug 01 12:00:00 GMT-0800 2006 28.4 28.97 28 28.34 6898600 Wed Aug 02 12:00:00 GMT-0800 2006 30 32.58 29.99 32.28 12151100 Thu Aug 03 12:00:00 GMT-0800 2006 31.55 32.65 31.3 32.53 6407800 Fri Aug 04 12:00:00 GMT-0800 2006 32.6 32.74 31.5 31.72 5481600 Mon Aug 07 12:00:00 GMT-0800 2006 31.63 32 31.13 31.79 3815900 ; [Bindable] public var adbeXNegativeData:XML = Mon Jul 31 12:00:00 GMT-0800 2006 27.53 28.56 27.23 -28.51 5824400 Tue Aug 01 12:00:00 GMT-0800 2006 28.4 28.97 28 28.34 6898600 Wed Aug 02 12:00:00 GMT-0800 2006 30 32.58 29.99 32.28 12151100 Thu Aug 03 12:00:00 GMT-0800 2006 31.55 32.65 31.3 32.53 6407800 Fri Aug 04 12:00:00 GMT-0800 2006 32.6 32.74 31.5 -31.72 5481600 Mon Aug 07 12:00:00 GMT-0800 2006 31.63 32 31.13 31.79 3815900 ; public function getDataAsXMLList():XMLList { return adbeX.elements("quote"); } public function getNegativeDataAsXMLList():XMLList { return adbeXNegativeData.elements("quote"); } } }