Evaluation nets web-based editor: searching for the toolkit

146 Views Asked by At

My goal is to implement web based editor for evaluation nets (extension of Petri nets), something like that swing app, language - Java. However I've never implemented rich web applications like that, so I am searching for the proper toolkit now. Currently I am thinking about GWT, but, as far as I have no expirience with it, I want to consider another options too. Hoping for your advice.

Thanks in advance ;)

1

There are 1 best solutions below

0
On BEST ANSWER

There are a number of alternative options:

Vaadin is my favourite. you can build a web GUI without having to know javascript at all in the same manner you build a swing desktop application. Have a look at its demo. vaadin comes with a professional look so it is easy to build something that look good.

Vaadin stores its backing GUI objects in session so if client idle for longer than the seestion timeout, they will have to refresh the application.

Another one similar to Vaadin is Apache Wicket.