
com.github.sarxos.netinject.Signature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dotnet-dll-injector Show documentation
Show all versions of dotnet-dll-injector Show documentation
Utility allowing you to inject managed DLLs into any .NET process.
The newest version!
package com.github.sarxos.netinject;
public class Signature {
private String namespace = null;
private String clazz = null;
private String method = null;
public Signature(String namespace, String clazz, String method) {
super();
this.namespace = namespace;
this.clazz = clazz;
this.method = method;
}
public String getNamespace() {
return namespace;
}
public String getClazz() {
return clazz;
}
public String getMethod() {
return method;
}
@Override
public String toString() {
return new StringBuilder().append(namespace).append('.').append(clazz).append('.').append(method).toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy