01: /*
02: * Copyright 2001-2005 Patrick Lightbody and
03: * Geert Bevin <gbevin[remove] at uwyn dot com>
04: * Distributed under the terms of either:
05: * - the common development and distribution license (CDDL), v1.0; or
06: * - the GNU Lesser General Public License, v2.1 or later
07: * $Id: ClassBytesProvider.java 3706 2007-03-29 11:51:50Z gbevin $
08: */
09: package com.uwyn.rife.instrument;
10:
11: public interface ClassBytesProvider {
12: public byte[] getClassBytes(String className,
13: boolean reloadAutomatically) throws ClassNotFoundException;
14: }
|