KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > pmd > ant > RuleSetWrapper


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