How to create a <h:button> from Java? I can create a <h:commandButton> like this:
HtmlCommandButton button = new HtmlCommandButton();
But I can't find the Java class for the <h:button>.
For example I need to create this tag from Java:
<h:button outcome="test.xhtml" />
How can I achieve it?