01: package method;
02:
03: /**
04: * Description of the Class
05: *
06: *@author Chris Seguin
07: */
08: public class MoveMethodSource2 {
09: /**
10: * Description of the Field
11: */
12: public int value;
13:
14: /**
15: * Description of the Method
16: *
17: *@param dest Description of Parameter
18: */
19: public void method1(MoveMethodDest2 dest) {
20: System.out.println("Value: " + value);
21: }
22:
23: /**
24: * Description of the Method
25: *
26: *@param input Description of Parameter
27: */
28: public void method3(String input) {
29: System.out.println("Input: " + input);
30: }
31:
32: /**
33: * Description of the Method
34: *
35: *@param total Description of Parameter
36: */
37: public void method4(int total) {
38: value = total;
39: }
40:
41: /**
42: * Description of the Method
43: *
44: *@param dest Description of Parameter
45: */
46: public void method2(MoveMethodDest2 dest) {
47: dest.method2();
48: }
49: }
|