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

org.jboss.test.faces.mockito.component.Facet Maven / Gradle / Ivy

The newest version!
package org.jboss.test.faces.mockito.component;

import javax.faces.component.UIComponent;

public class Facet {
    
    private final TreeBuilder builder;
    private final String name;

    public Facet(String name, TreeBuilder builder) {
        this.name = name;
        this.builder = builder;
    }

    /**
     * 

* @return the builder */ public TreeBuilder getBuilder() { return this.builder; } /** *

* @return the name */ public String getName() { return this.name; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy