use of cern.gp.explorer.MultiListExplorer in project ACS by ACS-Community.
the class TestMultiListExplorer method main.
public static void main(String[] args) throws Exception {
GPNode root = NodeFactory.createNode(new SimpleDemoBean("parent"), new RecursiveChildrenListManager());
MultiListExplorer expl = new MultiListExplorer();
expl.setRootNode(root);
expl.setListCount(3);
WindowUtils.openInMode(expl, "TestMultiListExplorer");
}
Aggregations