配置任意对象

您可以使用下面方法配置任意的对象.

例子 14.4.配置任意对象

build.gradle

  1. task configure << {
  2. def pos = configure(new java.text.FieldPosition(10)) {
  3. beginIndex = 1
  4. endIndex = 5
  5. }
  6. println pos.beginIndex
  7. println pos.endIndex
  8. }

使用 gradle -q configure 输出

  1. > gradle -q configure
  2. 1
  3. 5