01: /*
02: * Created on May 14, 2004
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.xssl.reflection;
08:
09: /**
10: * @author AYegorov
11: *
12: * Company: xDev Group.org
13: *
14: * URL: <a>http://activexml.dev.java.net</a>
15: *
16: * File name: TestReflection.java
17: *
18: * <p>Is bound: true | false</p>
19: *
20: * <table>
21: * <tr>
22: * <td>Description:</td>
23: * <td>
24: * <!--Your description here-->
25: * </td>
26: * </tr>
27: * </table>
28: * <table>
29: * <tr>
30: * <td colspan="3">
31: * Properties
32: * </td>
33: * </tr>
34: * <tr>
35: * <td>Name</td>
36: * <td>Value</td>
37: * <td>Description</td>
38: * </tr>
39: * <tr>
40: * <td></td>
41: * <td></td>
42: * <td></td>
43: * </tr>
44: * </table>
45: */
46: public class TestReflection {
47:
48: /**
49: *
50: */
51: public TestReflection() {
52: super ();
53: // XXX Auto-generated constructor stub
54: }
55:
56: public static String test(String a, String b, String c, Object d) {
57: return "a";
58: }
59:
60: public static String test(String a, String b, Object c, String d) {
61: return "b";
62: }
63:
64: public static String test(String a, Object b, String c, String d) {
65: return "c";
66: }
67:
68: public static String test(Object a, String b, String c, String d) {
69: return "d";
70: }
71: }
|