KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > bytecode > MethodAdapter


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.object.bytecode;
5
6
7 import com.tc.asm.ClassVisitor;
8 import com.tc.asm.MethodVisitor;
9 import com.tc.object.logging.InstrumentationLogger;
10
11 /**
12  *
13  */

14 public interface MethodAdapter {
15   public MethodVisitor adapt(ClassVisitor classVisitor);
16
17   public boolean doesOriginalNeedAdapting();
18
19   public void initialize(ManagerHelper managerHelper, int access, String JavaDoc owner, String JavaDoc methodName,
20                          String JavaDoc originalMethodName, String JavaDoc description, String JavaDoc sig, String JavaDoc[] exceptions,
21                          InstrumentationLogger instrumentationLogger);
22
23 }
24
Popular Tags