Package org.apache.syncope.console.pages.Roles

Examples of org.apache.syncope.console.pages.Roles.TreeNodeClickUpdate


                    @Override
                    protected void onClick(final AjaxRequestTarget target) {
                        super.onClick(target);

                        send(getPage(), Broadcast.BREADTH, new TreeNodeClickUpdate(target, roleTO.getId()));
                    }
                };
            }
        };
        tree.add(new WindowsTheme());
View Full Code Here


    @Override
    public void onEvent(final IEvent<?> event) {
        super.onEvent(event);

        if (event.getPayload() instanceof TreeNodeClickUpdate) {
            final TreeNodeClickUpdate update = (TreeNodeClickUpdate) event.getPayload();
            updateTree();
            update.getTarget().add(treeContainer);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.syncope.console.pages.Roles.TreeNodeClickUpdate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.