net.sf.nakeduml.seamgeneration.jsf.component.primefaces.JsfPrimeBooleanBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metamodel Show documentation
Show all versions of metamodel Show documentation
A uml code generator and execution engine
The newest version!
package net.sf.nakeduml.seamgeneration.jsf.component.primefaces;
import javax.faces.component.UIComponent;
import javax.faces.component.html.HtmlSelectBooleanCheckbox;
import net.sf.nakeduml.domainmetamodel.DomainClassifier;
import net.sf.nakeduml.seamgeneration.jsf.component.IJsfComponentBuilder;
import net.sf.nakeduml.userinteractionmetamodel.PropertyField;
public class JsfPrimeBooleanBuilder extends AbstractJsfPrimeInputBuilder implements IJsfComponentBuilder {
public JsfPrimeBooleanBuilder(DomainClassifier dc, PropertyField pf) {
super(dc, pf);
}
@Override
public UIComponent createComponent() {
return new HtmlSelectBooleanCheckbox();
}
}