仔細想想
如果把task作為基本的組成元件
到此
很多script
下面談談我對一個基於script的built tool的構想
首先
我們定義這樣一個接口
java代碼
interface Command{
Object execute(CommandContext ctxt)
throws Throwable;
}
我們計劃讓所有的task(我們這裡叫它們command)都實現這個接口
[
From:http://tw.wingwit.com/Article/program/Java/ky/201311/29269.html