public interface AppliedPlugin
Currently just provides information about the ID of the plugin.
PluginAware
Modifier and Type | Method | Description |
---|---|---|
String |
getId() |
The ID of the plugin.
|
String |
getName() |
The name of the plugin.
|
String |
getNamespace() |
The namespace of the plugin.
|
String getId()
An example of a plugin ID would be "org.gradle.java"
.
This method always returns the fully qualified ID, regardless of whether the fully qualified ID was used to apply the plugin or not.
This value is guaranteed to be unique, for a given PluginAware
.
@Nullable String getNamespace()
An example of a plugin namespace would be "org.gradle"
for the plugin with ID "org.gradle.java"
.
This method always returns the namespace, regardless of whether the fully qualified ID was used to apply the plugin or not.
If the plugin has an unqualified ID, this method will return null
.
String getName()
An example of a plugin name would be "java"
for the plugin with ID "org.gradle.java"
.
This method always returns the name, regardless of whether the fully qualified ID was used to apply the plugin or not.
If the plugin has an unqualified ID, this method will return the same value as getId()
.