资 源 简 介
The gwt-jet library provides a fast, flexible and easy way to wrap business objects that you want to show at the front-end. The jet classes automatically create the corresponding widget and automagically populate the user modified values into the original object.
Our first alpha release is here: ~~1.0.9.0~~ 1.0.9.1 - check it at Downloads. (Project availability at Maven Central is coming soon)
Almost a hello world example
Having a basic bean...
```
public class MyBean implements Reflection, Serializable {
private Date someDay;
private String someText;
private Integer someInt;
private boolean someBoolean; (...)
```
...create a basic JetTable like this
JetTable jetTable = new JetSingleTable();jetTable.addColumn("someDay", "Some Day", 80, ReadOnlyCondition.NEVER);jetTable.addColumn("