/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ package net.sourceforge.pmd.ant; public class RuleSetWrapper { private String file; public final String getFile() { return file; } public final void addText(String t) { this.file = t; } }