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

net.amygdalum.testrecorder.profile.ClassDescription Maven / Gradle / Ivy

package net.amygdalum.testrecorder.profile;

import org.objectweb.asm.Type;

public class ClassDescription implements Classes {

	private String className;

	public ClassDescription(String className) {
		this.className = className;
	}

	@Override
	public boolean matches(Class clazz) {
		String className = Type.getInternalName(clazz);
		return this.className.equals(className);
	}

	@Override
	public boolean matches(String className) {
		return this.className.equals(className);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy