01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.bytecode;
05:
06: import com.tc.asm.ClassVisitor;
07:
08: /**
09: * Interface for adding in a class level object with responsibilities for creating support methods
10: */
11: public interface MethodCreator {
12:
13: /**
14: * Create methods in the class
15: * @param classVisitor Class visitor
16: */
17: public void createMethods(ClassVisitor classVisitor);
18: }
|