- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://griffon.codehaus.org/
- 软件文档: http://griffon.codehaus.org/Quick+Start
软件介绍
Griffon 是Swing开发者的一个Groovy框架。Griffon期望提供一个稳定代码结构给Swing应用,就像Grails给web开发带来的优势一样。同时,Griffon也可能提供一个替代应用框架,替代Spring RCP,Eclipse RCP和NetBeans平台。
示例代码:
DemoConsoleView.groovy
application(title:'DemoConsole', pack:true, locationByPlatform:true) {
panel(border:emptyBorder(6)) {
borderLayout()
scrollPane(constraints:CENTER) {
textArea(text:bind(target:model, targetProperty:'scriptSource'),
enabled: bind {model.enabled},
columns:40, rows:10)
}
hbox(constraints:SOUTH) {
button("Execute", actionPerformed:controller.&executeScript,
enabled: bind {model.enabled})
hstrut(5)
label("Result:")
hstrut(5)
label(text:bind {model.scriptResult})
}
}
}
Spring Into HTML and CSS
Molly E. Holzschlag / Addison-Wesley Professional / 2005-5-2 / USD 34.99
The fastest route to true HTML/CSS mastery! Need to build a web site? Or update one? Or just create some effective new web content? Maybe you just need to update your skills, do the job better. Welco......一起来看看 《Spring Into HTML and CSS》 这本书的介绍吧!
