Class DefaultBinaryPluginIdentifier
- java.lang.Object
-
- org.gradle.tooling.events.internal.DefaultBinaryPluginIdentifier
-
- All Implemented Interfaces:
BinaryPluginIdentifier
,PluginIdentifier
public class DefaultBinaryPluginIdentifier extends java.lang.Object implements BinaryPluginIdentifier
-
-
Constructor Summary
Constructors Constructor Description DefaultBinaryPluginIdentifier(java.lang.String displayName, java.lang.String className, java.lang.String pluginId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getClassName()
Returns the fully-qualified class name of this plugin.java.lang.String
getDisplayName()
Returns a human-readable display name for this plugin.java.lang.String
getPluginId()
Returns the plugin id of this plugin, if available.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.gradle.tooling.events.PluginIdentifier
getDisplayName
-
-
-
-
Method Detail
-
getClassName
public java.lang.String getClassName()
Description copied from interface:BinaryPluginIdentifier
Returns the fully-qualified class name of this plugin.- Specified by:
getClassName
in interfaceBinaryPluginIdentifier
-
getPluginId
@Nullable public java.lang.String getPluginId()
Description copied from interface:BinaryPluginIdentifier
Returns the plugin id of this plugin, if available.- Specified by:
getPluginId
in interfaceBinaryPluginIdentifier
-
getDisplayName
public java.lang.String getDisplayName()
Description copied from interface:PluginIdentifier
Returns a human-readable display name for this plugin.- Specified by:
getDisplayName
in interfacePluginIdentifier
-
-