implemented 'run PMD on everything in this directory'
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@485 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
@@ -1,9 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE ACTIONS SYSTEM "actions.dtd">
|
||||
<ACTIONS>
|
||||
<ACTION NAME="PMD">
|
||||
<ACTION NAME="pmd-check-current-file">
|
||||
<CODE>
|
||||
net.sourceforge.pmd.jedit.PMDJEditPlugin.check(buffer, view);
|
||||
</CODE>
|
||||
</ACTION>
|
||||
<ACTION NAME="pmd-check-current-directory">
|
||||
<CODE>
|
||||
net.sourceforge.pmd.jedit.PMDJEditPlugin.checkDirectory(view);
|
||||
</CODE>
|
||||
</ACTION>
|
||||
<ACTION NAME="pmd-check-current-directory-recursively">
|
||||
<CODE>
|
||||
net.sourceforge.pmd.jedit.PMDJEditPlugin.checkDirectoryRecursively(view);
|
||||
</CODE>
|
||||
</ACTION>
|
||||
</ACTIONS>
|
||||
|
@@ -11,7 +11,7 @@ You can read much more about PMD here - http://pmd.sf.net/.</p>
|
||||
<h3>Installation</h3>
|
||||
<ul>
|
||||
<li>Uninstall any old PMD-JEdit plugins
|
||||
<li>Unzip the PMD-JEdit-bin-0.5.zip file into your JEdit directory; it'll put a couple of jar files into your jars directory.
|
||||
<li>Unzip the PMD-JEdit-bin-0.6.zip file into your JEdit directory; it'll put a couple of jar files into your jars directory.
|
||||
<li>Restart JEdit and you'll be ready to go.
|
||||
</ul>
|
||||
<h3>Integration</h3>
|
||||
|
@@ -3,7 +3,7 @@
|
||||
#
|
||||
plugin.net.sourceforge.pmd.jedit.PMDJEditPlugin.name=PMD
|
||||
plugin.net.sourceforge.pmd.jedit.PMDJEditPlugin.author=Tom Copeland
|
||||
plugin.net.sourceforge.pmd.jedit.PMDJEditPlugin.version=0.5
|
||||
plugin.net.sourceforge.pmd.jedit.PMDJEditPlugin.version=0.6
|
||||
plugin.net.sourceforge.pmd.jedit.PMDJEditPlugin.docs=jedit.html
|
||||
plugin.net.sourceforge.pmd.jedit.PMDJEditPlugin.depend.0=jdk 1.3
|
||||
plugin.net.sourceforge.pmd.jedit.PMDJEditPlugin.depend.1=jedit 04.00.99.00
|
||||
@@ -12,7 +12,11 @@ plugin.net.sourceforge.pmd.jedit.PMDJEditPlugin.jars=pmd-0.6.jar
|
||||
#
|
||||
# Menu properties
|
||||
#
|
||||
PMD.label=$PMD
|
||||
pmd-menu=pmd-check-current-file pmd-check-current-directory pmd-check-current-directory-recursively
|
||||
pmd-menu.label=$PMD
|
||||
pmd-check-current-file.label=Check current file
|
||||
pmd-check-current-directory.label=Check all files in current directory
|
||||
pmd-check-current-directory-recursively.label=Check directory recursively
|
||||
|
||||
#
|
||||
# Option pane properties
|
||||
|
Reference in New Issue
Block a user