18192021222324252627
Form f = new Form() .add(new StringInput("name")) .add(new Button("helloWorld").setLabel("Say hello").setIcon(Icon.SEARCH)); // render BaseTheme r = new BootstrapTheme(); String result = r.render(f); System.out.println(result); }