AjaxPro for Java Developers?

Michael Schwarz on Wednesday, September 27, 2006

I have started to create a AjaxPro Java Edition which will be 100% code compatible on the client-side. That means there is no change of JavaScript and HTML when moving around, no code change when developing JavaScript controls. Look at the following code:

import java.text.;import java.util.;

public class AjaxMethods { @AjaxPro.AjaxMethod public String SayHello(String name) { return "Hello " + name + "!"; }

@AjaxPro.AjaxMethod public boolean IsTrue(boolean b) { return b; } }

I will offer a first alpha version the next days.