All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.sarxos.netinject.Signature Maven / Gradle / Ivy

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