1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.ant; 5 6 public class RuleSetWrapper { 7 private String file; 8 9 public final String getFile() { 10 return file; 11 } 12 13 public final void addText(String t) { 14 this.file = t; 15 } 16 }