01: package method;
02:
03: /**
04: * Description of the Class
05: *
06: *@author Chris Seguin
07: */
08: public class RenameMethodTest {
09:
10: /**
11: * Constructor for the RenameMethodTest object
12: */
13: public RenameMethodTest() {
14: }
15:
16: /**
17: * Constructor for the RenameMethodTest object
18: *
19: *@param x Description of Parameter
20: */
21: public RenameMethodTest(int x) {
22: code();
23: code(x);
24: height();
25: height(x);
26: }
27:
28: /**
29: * Description of the Method
30: *
31: *@return Description of the Returned Value
32: */
33: public int code() {
34: }
35:
36: /**
37: * Description of the Method
38: *
39: *@param x Description of Parameter
40: *@return Description of the Returned Value
41: */
42: public int code(int x) {
43: }
44:
45: /**
46: * Description of the Method
47: *
48: *@return Description of the Returned Value
49: */
50: public static int height() {
51: }
52:
53: /**
54: * Description of the Method
55: *
56: *@param x Description of Parameter
57: */
58: public static void height(int x) {
59: }
60:
61: /**
62: * Description of the Method
63: *
64: *@param x Description of Parameter
65: */
66: protected void protectedMethod(int x) {
67: }
68:
69: /**
70: * Description of the Method
71: *
72: *@param x Description of Parameter
73: */
74: void packageProtectedMethod(int x) {
75: }
76:
77: /**
78: * Description of the Method
79: *
80: *@param x Description of Parameter
81: */
82: private void privateMethod(int x) {
83: }
84:
85: }
|