KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > javadoc > method > Test_1379666


1 package test.javadoc.method;
2
3 /**
4  * comment.
5  */

6 public class Test_1379666 {
7     /**
8      * @throws BadStringFormat some text
9      */

10     public void ok() throws BadStringFormat {
11     }
12
13     /**
14      * @throws Test_1379666.BadStringFormat some text
15      */

16     public void error1()
17         throws test.javadoc.method.Test_1379666.BadStringFormat
18     {
19     }
20
21     /**
22      * Some comment.
23      * @throws test.javadoc.method.Test_1379666.BadStringFormat some text
24      */

25     public void error2() throws Test_1379666.BadStringFormat {
26     }
27
28     /**
29      * Some exception class.
30      */

31     public static class BadStringFormat extends Exception JavaDoc {
32         /**
33          * Some comment.
34          * @param s string.
35          */

36         BadStringFormat(String JavaDoc s) {
37             super(s);
38         }
39     }
40 }
41
Popular Tags