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

net.amygdalum.testrecorder.asm.Local Maven / Gradle / Ivy

The newest version!
package net.amygdalum.testrecorder.asm;

import org.objectweb.asm.Type;

public class Local {
	public int index;
	public Type type;

	public Local(int index, Type type) {
		this.index = index;
		this.type = type;
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy