You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: net.sourceforge.pmd.eclipse.plugin/src/main/java/net/sourceforge/pmd/eclipse/runtime/cmd/ReviewCodeCmd.java
+21-15
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@
39
39
importjava.util.ArrayList;
40
40
importjava.util.Collection;
41
41
importjava.util.HashMap;
42
-
importjava.util.Iterator;
42
+
importjava.util.HashSet;
43
43
importjava.util.List;
44
44
importjava.util.Map;
45
45
importjava.util.Set;
@@ -96,7 +96,7 @@ public class ReviewCodeCmd extends AbstractDefaultCommand {
Copy file name to clipboardExpand all lines: net.sourceforge.pmd.eclipse.plugin/src/main/java/net/sourceforge/pmd/eclipse/runtime/properties/IProjectProperties.java
+9
Original file line number
Diff line number
Diff line change
@@ -198,4 +198,13 @@ public interface IProjectProperties {
198
198
* @return include patterns
199
199
*/
200
200
Set<String> getBuildPathIncludePatterns();
201
+
202
+
/**
203
+
* Determines the auxiliary classpath needed for type resolution.
204
+
* The classloader is cached and used for all PMD executions for the same project.
205
+
* The classloader is not stored to the project properties file.
206
+
*
207
+
* @return the classpath or <code>null</code> if the project is not a java project
Copy file name to clipboardExpand all lines: net.sourceforge.pmd.eclipse.plugin/src/main/java/net/sourceforge/pmd/eclipse/runtime/properties/impl/ProjectPropertiesImpl.java
0 commit comments