You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2018/08/10 17:45:16 UTC

[royale-asjs] 02/09: add more APIs

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch feature/MXRoyale
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit f30fba39981fe0f9e3d6fca32ee7469df2156b96
Author: Alex Harui <ah...@apache.org>
AuthorDate: Thu Aug 9 17:06:44 2018 -0700

    add more APIs
---
 .../src/main/royale/org/apache/royale/collections/ITreeData.as          | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/frameworks/projects/Collections/src/main/royale/org/apache/royale/collections/ITreeData.as b/frameworks/projects/Collections/src/main/royale/org/apache/royale/collections/ITreeData.as
index bcb777f..444731e 100644
--- a/frameworks/projects/Collections/src/main/royale/org/apache/royale/collections/ITreeData.as
+++ b/frameworks/projects/Collections/src/main/royale/org/apache/royale/collections/ITreeData.as
@@ -32,5 +32,7 @@ package org.apache.royale.collections
         function getDepth(node:Object):int;
         function isOpen(node:Object):Boolean;
         function hasChildren(node:Object):Boolean;
+        function openNode(node:Object):void;
+        function closeNode(node:Object):void;
 	}
 }