KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > InputInheritDoc


1 public class InputInheritDoc
2 {
3     /** {@inheritDoc} */
4     InputInheritDoc()
5     {
6     }
7
8     /** {@inheritDoc} */
9     private void privateMethod()
10     {
11     }
12
13     /** {@inheritDoc} */
14     void packageMethod()
15     {
16     }
17
18     /** {@inheritDoc} */
19     protected void protectedMethod()
20     {
21     }
22
23     /** {@inheritDoc} */
24     public void publicMethod()
25     {
26     }
27 }
28
Popular Tags