1 package net.sourceforge.pmd.ant; 2 3 public class RuleSetWrapper { 4 private String file; 5 6 public final String getFile() { 7 return file; 8 } 9 10 public final void addText(String t) { 11 this.file = t; 12 } 13 }