RuleSetWrapper.java
01 package net.sourceforge.pmd.ant; 02 03 public class RuleSetWrapper { 04 private String file; 05 06 public final String getFile() { 07 return file; 08 } 09 10 public final void addText(String t) { 11 this.file = t; 12 } 13 }