|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
RuleSetWrapper.java | - | 50% | 50% | 50% |
|
1 | package net.sourceforge.pmd.ant; | |
2 | ||
3 | public class RuleSetWrapper { | |
4 | private String file; | |
5 | ||
6 | 0 | public final String getFile() { |
7 | 0 | return file; |
8 | } | |
9 | ||
10 | 2 | public final void addText(String t) { |
11 | 2 | this.file = t; |
12 | } | |
13 | } |
|