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

jodd.asm.ClassAdapter Maven / Gradle / Ivy

Go to download

Jodd Proxetta is the fastest proxy creator with unique approach for defying pointcuts and advices.

There is a newer version: 6.0.1
Show newest version
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.

package jodd.asm;

import jodd.asm5.ClassVisitor;
import jodd.asm5.Opcodes;

/**
 * An empty ClassVisitor that delegates to another ClassVisitor.
 * This class can be used as a super class to quickly implement useful class
 * adapter classes, just by overriding the necessary methods.
 */
public abstract class ClassAdapter extends ClassVisitor {

	protected ClassAdapter(ClassVisitor cv) {
		super(Opcodes.ASM4, cv);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy