//////////////////////////////////////////////////////////////////////////////// // // 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 mx.collections { /** * The IGroupingCollection interface defines the interface required * to create grouped data from flat data. * * @see mx.collections.GroupingCollection * @see mx.controls.AdvancedDataGrid * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ [Deprecated(replacement="IGroupingCollection2", since="4.0")] public interface IGroupingCollection extends IHierarchicalData { //-------------------------------------------------------------------------- // // Properties // //-------------------------------------------------------------------------- //---------------------------------- // grouping //---------------------------------- /** * The Grouping object applied to the source data. * Setting this property does not automatically refresh the view; * therefore, you must call the refresh() method * after setting this property. * *

Note: The Flex implementations of IGroupingCollection retrieve all * items from a remote location before executing grouping.

* * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ function get grouping():Grouping; /** * @private */ function set grouping(value:Grouping):void; //-------------------------------------------------------------------------- // // Methods // //-------------------------------------------------------------------------- /** * Applies the grouping to the view. * The IGroupingCollection does not detect changes to a group * automatically, so you must call the refresh() * method to update the view after setting the group property. * *

The refresh() method can be applied asynchronously * by calling refresh(true).

* *

When refresh() is called synchronously, * a client should wait for a CollectionEvent event * with the value of the kind property set * to CollectionEventKind.REFRESH * to ensure that the refresh() method completed.

* * @param async If true, defines the refresh to be asynchronous. * By default it is false denoting synchronous refresh. * * @return true if the refresh() method completed, * and false if the refresh is incomplete, * which can mean that items are still pending. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ function refresh(async:Boolean = false):Boolean; /** * If the refresh is performed asynchronously, * cancels the refresh operation and stops the building of the groups. * * This method only cancels the refresh * if it is initiated by a call to the refresh() method * with an argument of true, corresponding to an asynchronous refresh. * * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ function cancelRefresh():void; } }