blob: 19a40be226e65328cd31d4e7894f991731550773 [file] [log] [blame]
////////////////////////////////////////////////////////////////////////////////
//
// 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 <code>refresh()</code> method
* after setting this property.
*
* <p>Note: The Flex implementations of IGroupingCollection retrieve all
* items from a remote location before executing grouping.</p>
*
* @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 <code>refresh()</code>
* method to update the view after setting the <code>group</code> property.
*
* <p>The <code>refresh()</code> method can be applied asynchronously
* by calling <code>refresh(true)</code>.</p>
*
* <p>When <code>refresh()</code> is called synchronously,
* a client should wait for a CollectionEvent event
* with the value of the <code>kind</code> property set
* to <code>CollectionEventKind.REFRESH</code>
* to ensure that the <code>refresh()</code> method completed.</p>
*
* @param async If <code>true</code>, defines the refresh to be asynchronous.
* By default it is <code>false</code> denoting synchronous refresh.
*
* @return <code>true</code> if the <code>refresh()</code> method completed,
* and <code>false</code> 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 <code>refresh()</code> method
* with an argument of <code>true</code>, corresponding to an asynchronous refresh.
*
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
function cancelRefresh():void;
}
}