net.sf.nakeduml.seamgeneration.jsf.component.JsfDateBuilder 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;
import javax.faces.component.UIComponent;
import net.sf.nakeduml.domainmetamodel.DomainClassifier;
import net.sf.nakeduml.userinteractionmetamodel.PropertyField;
import org.richfaces.component.html.HtmlCalendar;
public class JsfDateBuilder extends AbstractJsfInputBuilder implements IJsfComponentBuilder {
public JsfDateBuilder(DomainClassifier dc, PropertyField pf) {
super(dc, pf);
}
@Override
public UIComponent createComponent() {
return new HtmlCalendar();
}
}