ここでコードをGroovy DSL Docに変更すると@DelegatesToアノテーションを使用する場合、どのようにクロージャにパラメータを渡すのですか?
この
email('hello world') { // change here
from '[email protected]'
to '[email protected]'
subject 'The pope has resigned!'
body {
p 'Really, the pope has resigned!'
}
}
のように、電子メールにいくつかの文字列 'Hello Worldの' を追加し、そう
def email(def name, @DelegatesTo(EmailSpec) Closure cl) { // change here
def email = new EmailSpec()
def code = cl.rehydrate(email, this, this)
code.resolveStrategy = Closure.DELEGATE_ONLY
code.call(name) // change here
}
を変更、どのクラスEmailSpec 'Hello World' 文字列を取得するために修正します?