01: /*
02: $Id: LoadedMethodTest.java,v 1.3 2005/02/14 12:12:22 vauclair Exp $
03:
04: Copyright (C) 2002-2005 Sebastien Vauclair
05:
06: This file is part of Extensible Java Profiler.
07:
08: Extensible Java Profiler is free software; you can redistribute it and/or
09: modify it under the terms of the GNU General Public License as published by
10: the Free Software Foundation; either version 2 of the License, or
11: (at your option) any later version.
12:
13: Extensible Java Profiler is distributed in the hope that it will be useful,
14: but WITHOUT ANY WARRANTY; without even the implied warranty of
15: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16: GNU General Public License for more details.
17:
18: You should have received a copy of the GNU General Public License
19: along with Extensible Java Profiler; if not, write to the Free Software
20: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21: */
22:
23: package ejp.presenter.api.model;
24:
25: /**
26: * TODOC
27: *
28: * @author Sebastien Vauclair
29: * @version <code>$Revision: 1.3 $<br>$Date: 2005/02/14 12:12:22 $</code>
30: */
31: public class LoadedMethodTest {
32: /**
33: * Convenience method for testing purpose.
34: */
35: public static void main(String[] args) {
36: LoadedClass lc = new LoadedClass("MyClass", "MyClass.java");
37:
38: System.out.println(new LoadedMethod(lc, "read",
39: "(Ljava/lang/String;)V", -1));
40: System.out.println(new LoadedMethod(lc, "read",
41: "(Ljava/util/Hashtable;B)V", -1));
42: System.out.println(new LoadedMethod(lc, "read", "()[[[J", -1));
43: System.out.println(new LoadedMethod(lc, "read", "(BJDSZ)[[[J",
44: -1));
45: }
46: }
|