001 /* 002 @license.text@ 003 */ 004 package biz.hammurapi.codegen; 005 006 import org.apache.bcel.classfile.JavaClass; 007 008 009 010 public interface Consumer { 011 void consume(JavaClass javaClass) throws GenerationException; 012 GenerationListener getListener(); 013 }