001 /*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005 package org.bridj.util;
006
007 /**
008 *
009 * @author ochafik
010 */
011 public interface ClassDefiner {
012 Class<?> defineClass(String className, byte[] data) throws ClassFormatError;
013 }