View Javadoc

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       public final void addText(String t) {
10          this.file = t;
11      }
12  }