アクションスクリプト(flex)の何らかのコレクションオブジェクトでJavaクラスからTreeデータを取得したいと考えています。データを保存するためにどのオブジェクトを使用し、ツリーのような構造にデータを取り込む方法は?
以下は、カスタム定義の Tree クラスです。
public class Tree
{
public Node root;
public static class Node
{
public String file;
public String fileType;
public String comments;
public LinkedList<Node> children;
public Node(String file, String fileType, String comments) {
this.file = file;
this.fileType = fileType;
this.comments = comments;
children = new LinkedList<Node>();
}
}
};