Examples of DeepChildFirstVisitor


Examples of org.apache.wicket.markup.renderStrategy.DeepChildFirstVisitor

    /**
     * Locates a component implementing the required class on the supplied page.
     */
    public static <T> T getFrom(Page page, final Class<T> cls) {
        final Object[] pComponent = new Object[1];
        page.visitChildren(new DeepChildFirstVisitor() {
            @Override
            public void component(Component component, IVisit<Void> visit) {
                if(cls.isAssignableFrom(component.getClass())) {
                    pComponent[0] =  component;
                    visit.stop();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.