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 pao = "pao";10 11 static {12 // add the additional report topics to the Report class.13 Report.topics.add(pao);14 }15 }16