Skip to content

Commit dfc0c71

Browse files
Phillip KrallPhillip Krall
authored andcommitted
Allow multiple ruleset files
Add the ability to chain ruleset files together from the project preferences.
1 parent 34287f4 commit dfc0c71

File tree

4 files changed

+772
-705
lines changed

4 files changed

+772
-705
lines changed

net.sourceforge.pmd.eclipse.plugin/src/main/java/net/sourceforge/pmd/eclipse/runtime/properties/IProjectProperties.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
package net.sourceforge.pmd.eclipse.runtime.properties;
3838

3939
import java.io.File;
40+
import java.util.List;
4041
import java.util.Set;
4142

4243
import org.eclipse.core.resources.IProject;
@@ -106,7 +107,7 @@ public interface IProjectProperties {
106107
* @return Returns the resolved RuleSet File suitable for loading a rule
107108
* set.
108109
*/
109-
File getResolvedRuleSetFile() throws PropertiesException;
110+
List<File> getResolvedRuleSetFile() throws PropertiesException;
110111

111112
/**
112113
* @return Returns the project Working Set.

0 commit comments

Comments
 (0)