ExtensionAware

API 文档ExtensionAware

可以在运行时使用其他对象扩展的对象。

// Extensions are just plain objects, there is no interface/type
class MyExtension {
  String foo

  MyExtension(String foo) {
    this.foo = foo
  }
}

// Add new extensions via the extension container
project.extensions.create('custom', MyExtension, "bar")
//                       («name»,   «type»,       «constructor args», …)

// extensions appear as properties on the target object by the given name
assert project.custom instanceof MyExtension
assert project.custom.foo == "bar"

// also via a namespace method
project.custom {
  assert foo == "bar"
  foo = "other"
}
assert project.custom.foo == "other"

// Extensions added with the extension container's create method are themselves extensible
assert project.custom instanceof ExtensionAware
project.custom.extensions.create("nested", MyExtension, "baz")
assert project.custom.nested.foo == "baz"

// All extension aware objects have a special "ext" extension of type ExtraPropertiesExtension
assert project.hasProperty("myProperty") == false
project.ext.myProperty = "myValue"

// Properties added to the "ext" extension are promoted to the owning object
assert project.myProperty == "myValue"

许多 Gradle 对象都支持扩展。 这包括:项目、任务、配置、依赖项等。

有关添加和创建扩展的更多信息,请参阅 ExtensionContainer

有关额外属性的更多信息,请参阅 ExtraPropertiesExtension

一个 ExtensionAware 对象有多个 Gradle 搜索属性的“作用域”。 这些作用域是

  • 对象本身。 此作用域包括实现类声明的任何属性 getter 和 setter。 此作用域的属性是可读或可写的,具体取决于是否存在相应的 getter 或 setter 方法。
  • 对象类实现的 Groovy 元编程方法,例如 propertyMissing()。 插件作者必须注意确保 propertyMissing() 的实现方式为:如果未找到属性,则抛出 MissingPropertyException(String, Class) 异常。 如果 propertyMissing() 始终为任何属性返回值,则 Gradle 将不会搜索下面的其余作用域。
  • 对象的 额外 属性。 每个对象都维护一个额外属性的映射,其中可以包含任何任意名称 -> 值对。 一旦定义,此作用域的属性是可读和可写的。
  • 插件添加到对象的 扩展。 每个扩展都作为只读属性提供,其名称与扩展名相同。

属性

属性描述
extensions

扩展的容器。

方法

没有方法

脚本块

没有脚本块

属性详情

ExtensionContainer extensions (只读)

扩展的容器。