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

io.ebean.enhance.common.ClassBytesReader Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.enhance.common;

/**
 * Interface for reading class bytes as part of enhancement.
 * 

* Used to parse inheritance objects when enhancing a given class. *

*/ public interface ClassBytesReader { /** * Return the class bytes for a given class. */ byte[] getClassBytes(String className, ClassLoader classLoader); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy