org.jboss.test.faces.mockito.component.Facet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsf-mockito Show documentation
Show all versions of jsf-mockito Show documentation
Uses Mockito to create mocked JavaServer Faces environment classes
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