01: package method;
02:
03: import java.awt.Button;
04: import java.awt.Component;
05: import java.awt.Canvas;
06: import java.awt.Panel;
07:
08: /**
09: * Description of the Class
10: *
11: *@author Chris Seguin
12: */
13: public class Child2 extends Parent {
14: /**
15: * Description of the Method
16: *
17: *@return Description of the Returned Value
18: */
19: private boolean init() {
20: return true;
21: }
22: }
|