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

cn.sj1.tinyasm.core.ClassField Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package cn.sj1.tinyasm.core;

public class ClassField extends Field {
	public ClassField(int access, String name, Clazz clazz, Object defaultValue) {
		super(name, clazz);
		this.access = access;
		this.defaultValue = defaultValue;
	}

	final public int access;
	public boolean identifier;
	Object defaultValue;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy