KickJava   Java API By Example, From Geeks To Geeks.

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


1 package polyglot.ext.coffer;
2
3 import polyglot.main.Report;
4
5 /**
6  * Extension information for coffer extension.
7  */

8 public class Topics {
9     public static final String JavaDoc coffer = "coffer";
10     public static final String JavaDoc keycheck = "keycheck";
11
12     static {
13         Report.topics.add(coffer);
14         Report.topics.add(keycheck);
15     }
16 }
17
Popular Tags