KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ext > pao > Topics


1 package polyglot.ext.pao;
2
3 import polyglot.main.Report;
4
5 /**
6  * Additional report topics for the PAO extension.
7  */

8 public class Topics {
9     public static final String JavaDoc pao = "pao";
10
11     static {
12         // add the additional report topics to the Report class.
13
Report.topics.add(pao);
14     }
15 }
16
Popular Tags