Thinlet官方介绍:
Thinlet is a GUI toolkit, a single Java class, parses the hierarchy and properties of the GUI, handles user interaction, and calls business logic. Separates the graphic presentation (described in an XML file) and the application methods (written as Java code).
Its compressed size is 38KB, and it is LGPL licensed.
Thinlet runs with Java 1.1 (browsers' default JVM) to 1.4, Personal Java, and Personal (Basis) Profile. Swing isn't required.
点评:确实精彩,把表示层从代码中完全抽离,使用xml来表示,而且使用起来相当简单,感觉嘛。。。非常类似当初接触VB时的感觉,双击某个控件就跳到相应的方法,当然了,在这儿你得自己写了,不过其xml中的action对应具体的方法耳。代码结构也清晰了,毕竟不需要自己写一大堆有点莫名其妙的awt或是swing了。