home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / controls / treeClasses / ITreeDataDescriptor2.as < prev   
Encoding:
Text File  |  2010-06-23  |  562 b   |  16 lines

  1. package mx.controls.treeClasses
  2. {
  3.    import mx.collections.ICollectionView;
  4.    import mx.collections.IViewCursor;
  5.    
  6.    public interface ITreeDataDescriptor2 extends ITreeDataDescriptor
  7.    {
  8.       function getHierarchicalCollectionAdaptor(param1:ICollectionView, param2:Function, param3:Object, param4:Object = null) : ICollectionView;
  9.       
  10.       function getNodeDepth(param1:Object, param2:IViewCursor, param3:Object = null) : int;
  11.       
  12.       function getParent(param1:Object, param2:ICollectionView, param3:Object = null) : Object;
  13.    }
  14. }
  15.  
  16.