add other DataGrid classes from examples/DataGridXCompile for cross-compilation
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/b3c9c9fb Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/b3c9c9fb Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/b3c9c9fb Branch: refs/heads/develop Commit: b3c9c9fb23bbdec6aeca395bd07deb1e06c910f8 Parents: 1b89c96 Author: Alex Harui <[email protected]> Authored: Wed Jan 22 23:10:11 2014 -0800 Committer: Alex Harui <[email protected]> Committed: Wed Jan 22 23:10:11 2014 -0800 ---------------------------------------------------------------------- .../beads/IDataProviderItemRendererMapper.as | 34 ++++++++++++++++++++ 1 file changed, 34 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b3c9c9fb/frameworks/as/projects/FlexJSJX/src/org/apache/flex/html/staticControls/beads/IDataProviderItemRendererMapper.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSJX/src/org/apache/flex/html/staticControls/beads/IDataProviderItemRendererMapper.as b/frameworks/as/projects/FlexJSJX/src/org/apache/flex/html/staticControls/beads/IDataProviderItemRendererMapper.as new file mode 100644 index 0000000..8a83d82 --- /dev/null +++ b/frameworks/as/projects/FlexJSJX/src/org/apache/flex/html/staticControls/beads/IDataProviderItemRendererMapper.as @@ -0,0 +1,34 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// 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.beads +{ + import org.apache.flex.core.IBead; + import org.apache.flex.core.IItemRendererClassFactory; + + /** + * Classes that generate ItemRenderers based on dataProvider contents. + * These classes use an IItemRendererFactory to generate the actual + * ItemRenderer instances + */ + public interface IDataProviderItemRendererMapper extends IBead + { + function get itemRendererFactory():IItemRendererClassFactory; + function set itemRendererFactory(value:IItemRendererClassFactory):void; + } +} \ No newline at end of file
