use of cern.gp.explorer.test.helpers.RecursiveChildrenListManager in project ACS by ACS-Community.
the class TestTreeTableExplorerWithButtons method createExplorer.
public static TreeTableExplorer createExplorer() {
TreeTableExplorer expl = null;
try {
final SimpleDemoBean bean = new SimpleDemoBean("parent");
GPNode root = NodeFactory.createNode(bean, new RecursiveChildrenListManager());
expl = new TreeTableExplorer();
expl.setTableColumns(bean);
expl.setRootNode(root);
} catch (IntrospectionException ex) {
ex.printStackTrace();
}
return expl;
}
Aggregations