stick DataGridColumn from FlexJSUI into FlexJSJX in order to fix the build
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/0609b6dd Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/0609b6dd Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/0609b6dd Branch: refs/heads/develop Commit: 0609b6dd663f0163ba9b55e5fd76edb715f02ddf Parents: aca9334 Author: Alex Harui <[email protected]> Authored: Tue Jan 28 15:15:06 2014 -0800 Committer: Alex Harui <[email protected]> Committed: Tue Jan 28 15:15:06 2014 -0800 ---------------------------------------------------------------------- .../supportClasses/DataGridColumn.as | 69 ++++++++++++++++++++ 1 file changed, 69 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0609b6dd/frameworks/as/projects/FlexJSJX/src/org/apache/flex/html/staticControls/supportClasses/DataGridColumn.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSJX/src/org/apache/flex/html/staticControls/supportClasses/DataGridColumn.as b/frameworks/as/projects/FlexJSJX/src/org/apache/flex/html/staticControls/supportClasses/DataGridColumn.as new file mode 100644 index 0000000..a0b9769 --- /dev/null +++ b/frameworks/as/projects/FlexJSJX/src/org/apache/flex/html/staticControls/supportClasses/DataGridColumn.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.html.staticControls.supportClasses +{ + import mx.core.IFactory; + + public class DataGridColumn + { + public function DataGridColumn() + { + } + + private var _itemRenderer:IFactory; + public function get itemRenderer():IFactory + { + return _itemRenderer; + } + public function set itemRenderer(value:IFactory):void + { + _itemRenderer = value; + } + + private var _columnWidth:Number = 100; + public function get columnWidth():Number + { + return _columnWidth; + } + public function set columnWidth(value:Number):void + { + _columnWidth = value; + } + + private var _label:String; + public function get label():String + { + return _label; + } + public function set label(value:String):void + { + _label = value; + } + + private var _dataField:String; + public function get dataField():String + { + return _dataField; + } + public function set dataField(value:String):void + { + _dataField = value; + } + } +} \ No newline at end of file
