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

com.github.rapidark.framework.thirdparty.asm.tree.InnerClassNode Maven / Gradle / Ivy

The newest version!
package com.github.rapidark.framework.thirdparty.asm.tree;

import com.github.rapidark.framework.thirdparty.asm.ClassVisitor;

public class InnerClassNode {
	public String name;
	public String outerName;
	public String innerName;
	public int access;

	public InnerClassNode(String name, String outerName, String innerName, int access) {
		this.name = name;
		this.outerName = outerName;
		this.innerName = innerName;
		this.access = access;
	}

	public void accept(ClassVisitor cv) {
		cv.visitInnerClass(this.name, this.outerName, this.innerName, this.access);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy