All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.zving.framework.thirdparty.asm.ClassVisitor Maven / Gradle / Ivy
package com.zving.framework.thirdparty.asm;
public abstract class ClassVisitor
{
protected final int api;
protected ClassVisitor cv;
public ClassVisitor(int api)
{
this(api, null);
}
public ClassVisitor(int api, ClassVisitor cv)
{
if (api != 262144) {
throw new IllegalArgumentException();
}
this.api = api;
this.cv = cv;
}
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces)
{
if (this.cv != null) {
this.cv.visit(version, access, name, signature, superName, interfaces);
}
}
public void visitSource(String source, String debug)
{
if (this.cv != null) {
this.cv.visitSource(source, debug);
}
}
public void visitOuterClass(String owner, String name, String desc)
{
if (this.cv != null) {
this.cv.visitOuterClass(owner, name, desc);
}
}
public AnnotationVisitor visitAnnotation(String desc, boolean visible)
{
if (this.cv != null) {
return this.cv.visitAnnotation(desc, visible);
}
return null;
}
public void visitAttribute(Attribute attr)
{
if (this.cv != null) {
this.cv.visitAttribute(attr);
}
}
public void visitInnerClass(String name, String outerName, String innerName, int access)
{
if (this.cv != null) {
this.cv.visitInnerClass(name, outerName, innerName, access);
}
}
public FieldVisitor visitField(int access, String name, String desc, String signature, Object value)
{
if (this.cv != null) {
return this.cv.visitField(access, name, desc, signature, value);
}
return null;
}
public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions)
{
if (this.cv != null) {
return this.cv.visitMethod(access, name, desc, signature, exceptions);
}
return null;
}
public void visitEnd()
{
if (this.cv != null) {
this.cv.visitEnd();
}
}
}