Search in sources :

Example 1 with RecursiveChildrenListManager

use of cern.gp.explorer.test.helpers.RecursiveChildrenListManager in project ACS by ACS-Community.

the class TestColoredListTableExplorer method createListTableExplorer.

/**
   * method that creates and returns a ListTableExplorer
   */
public static ListTableExplorer createListTableExplorer() {
    ListTableExplorer expl = null;
    try {
        expl = new ListTableExplorer();
        GPNode root = NodeFactory.createNode(new Object(), new RecursiveChildrenListManager(ColoredBean.class, 1, 10));
        expl.setRootNode(root);
        expl.setTableColumns(new ColoredBean(), null);
    } catch (Exception ex) {
        ex.printStackTrace();
    }
    return expl;
}
Also used : ListTableExplorer(cern.gp.explorer.ListTableExplorer) ColoredBean(cern.gp.explorer.test.helpers.ColoredBean) RecursiveChildrenListManager(cern.gp.explorer.test.helpers.RecursiveChildrenListManager) GPNode(cern.gp.nodes.GPNode)

Example 2 with RecursiveChildrenListManager

use of cern.gp.explorer.test.helpers.RecursiveChildrenListManager 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");
}
Also used : SimpleDemoBean(cern.gp.explorer.test.helpers.SimpleDemoBean) RecursiveChildrenListManager(cern.gp.explorer.test.helpers.RecursiveChildrenListManager) MultiListExplorer(cern.gp.explorer.MultiListExplorer) GPNode(cern.gp.nodes.GPNode)

Example 3 with RecursiveChildrenListManager

use of cern.gp.explorer.test.helpers.RecursiveChildrenListManager in project ACS by ACS-Community.

the class TestTreeExplorer method createTreeExplorer.

public static TreeExplorer createTreeExplorer() {
    TreeExplorer expl = null;
    try {
        GPNode root = NodeFactory.createNode(new SimpleDemoBean("parent"), new RecursiveChildrenListManager());
        expl = new TreeExplorer();
        expl.setRootNode(root);
    } catch (IntrospectionException ex) {
        ex.printStackTrace();
    }
    return expl;
}
Also used : TreeExplorer(cern.gp.explorer.TreeExplorer) SimpleDemoBean(cern.gp.explorer.test.helpers.SimpleDemoBean) RecursiveChildrenListManager(cern.gp.explorer.test.helpers.RecursiveChildrenListManager) IntrospectionException(java.beans.IntrospectionException) GPNode(cern.gp.nodes.GPNode)

Example 4 with RecursiveChildrenListManager

use of cern.gp.explorer.test.helpers.RecursiveChildrenListManager in project ACS by ACS-Community.

the class TestTreeExplorerWithButtons method createTreeExplorer.

public static TreeExplorer createTreeExplorer() {
    TreeExplorer expl = null;
    try {
        GPNode root = NodeFactory.createNode(new SimpleDemoBean("parent"), new RecursiveChildrenListManager());
        expl = new TreeExplorer();
        expl.setRootNode(root);
    } catch (IntrospectionException ex) {
        ex.printStackTrace();
    }
    return expl;
}
Also used : TreeExplorer(cern.gp.explorer.TreeExplorer) SimpleDemoBean(cern.gp.explorer.test.helpers.SimpleDemoBean) RecursiveChildrenListManager(cern.gp.explorer.test.helpers.RecursiveChildrenListManager) IntrospectionException(java.beans.IntrospectionException) GPNode(cern.gp.nodes.GPNode)

Example 5 with RecursiveChildrenListManager

use of cern.gp.explorer.test.helpers.RecursiveChildrenListManager in project ACS by ACS-Community.

the class TestTreeTableExplorer method main.

public static void main(String[] args) throws Exception {
    final SimpleDemoBean bean = new SimpleDemoBean("parent");
    GPNode root = NodeFactory.createNode(bean, new RecursiveChildrenListManager());
    TreeTableExplorer expl = new TreeTableExplorer();
    expl.setTableColumns(bean);
    expl.setRootNode(root);
    WindowUtils.openInMode(expl, "TestTreeTableExplorer");
    if (expl.getRootNode() != root) {
        System.err.println("bug:rootNode !+ getRootNode");
    }
}
Also used : SimpleDemoBean(cern.gp.explorer.test.helpers.SimpleDemoBean) TreeTableExplorer(cern.gp.explorer.TreeTableExplorer) RecursiveChildrenListManager(cern.gp.explorer.test.helpers.RecursiveChildrenListManager) GPNode(cern.gp.nodes.GPNode)

Aggregations

RecursiveChildrenListManager (cern.gp.explorer.test.helpers.RecursiveChildrenListManager)6 GPNode (cern.gp.nodes.GPNode)6 SimpleDemoBean (cern.gp.explorer.test.helpers.SimpleDemoBean)5 IntrospectionException (java.beans.IntrospectionException)3 TreeExplorer (cern.gp.explorer.TreeExplorer)2 TreeTableExplorer (cern.gp.explorer.TreeTableExplorer)2 ListTableExplorer (cern.gp.explorer.ListTableExplorer)1 MultiListExplorer (cern.gp.explorer.MultiListExplorer)1 ColoredBean (cern.gp.explorer.test.helpers.ColoredBean)1