All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.test.faces.mock.component.TreeBuilder Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
package org.jboss.test.faces.mock.component;

import javax.faces.component.UIComponent;

public interface TreeBuilder {


    TreeBuilder id(String id);
    
    TreeBuilder children(TreeBuilder ...builders);

    TreeBuilder facets(Facet ...facets);

    void replay();

    void verify();

    /**
     * 

*

* * @return the component */ C getComponent(); void visitTree(TreeVisitor visitor); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy