//////////////////////////////////////////////////////////////////////////////// // // 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 { import flash.events.IEventDispatcher; /** * The IHierarchicalData interface defines the interface * used to represent hierarchical data as the data provider for * a Flex component. * Hierarchical data is data in a structure of parent * and child data items. * * @see mx.collections.ICollectionView * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public interface IHierarchicalData extends IEventDispatcher { //-------------------------------------------------------------------------- // // Methods // //-------------------------------------------------------------------------- /** * Returns true if the node can contain children. * *

Nodes do not have to contain children for the method * to return true. * This method is useful in determining whether other * nodes can be appended as children to the specified node.

* * @param node The Object that defines the node. * * @return true if the node can contain children. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ function canHaveChildren(node:Object):Boolean; /** * Returns true if the node has children. * * @param node The Object that defines the node. * * @return true if the node has children. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ function hasChildren(node:Object):Boolean; /** * Returns an Object representing the node's children. * * @param node The Object that defines the node. * If null, return a collection of top-level nodes. * * @return An Object containing the children nodes. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ function getChildren(node:Object):Object; /** * Returns data from a node. * * @param node The node Object from which to get the data. * * @return The requested data. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ function getData(node:Object):Object; /** * Returns the root data item. * * @return The Object containing the root data item. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ function getRoot():Object; } }