1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package net.sf.jour.instrumentor;
22
23 import javassist.CtBehavior;
24
25
26
27 /***
28 * TODO Add docs
29 *
30 * Created on 09.12.2004
31 * Contributing Author(s):
32 *
33 * Misha Lifschitz <mishalifschitz at users.sourceforge.net> (Inital implementation)
34 * Vlad Skarzhevskyy <vlads at users.sourceforge.net> (Inital implementation)
35 *
36 * @author vlads
37 * @version $Revision: 1.1 $ ($Author: vlads $) $Date: 2004/12/09 17:58:40 $
38 */
39 public class ProfilerContextInstrumentor extends ProfilerInstrumentor {
40
41 public String getMapedEventID(CtBehavior behavior, long id) {
42 StringBuffer code = new StringBuffer();
43 code.append(" new net.sf.jour.rt.agent.MapedEventIDContex((long)");
44 code.append(id);
45 code.append(", (String)this.getClass().getName()");
46 code.append(")");
47 return code.toString();
48 }
49 }