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.MethodVisitor;
07:
08: /**
09: * Helper that can add instructions to call the Manager
10: */
11: public interface ManagerHelper {
12:
13: /**
14: * Add instructions to call the given Manager method.
15: *
16: * @param methodName The method to call
17: * @param mv CodeVisitor for the current method that wants to make the Manager call
18: */
19: public void callManagerMethod(String methodName, MethodVisitor mv);
20:
21: }
|