pmd/pmd-jedit/PMDPlugin/actions.xml
Jiger Patel f2e364dfc8 Minor label additions.
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@2727 51baf565-9d33-0410-a72c-fc3788e3496d
2004-06-02 09:11:14 +00:00

50 lines
1.3 KiB
XML

<?xml version="1.0"?>
<!DOCTYPE ACTIONS SYSTEM "actions.dtd">
<ACTIONS>
<ACTION NAME="pmd-check-current-buffer">
<CODE>
net.sourceforge.pmd.jedit.PMDJEditPlugin.check(buffer, view);
</CODE>
</ACTION>
<ACTION NAME="pmd-check-all-open-buffers">
<CODE>
net.sourceforge.pmd.jedit.PMDJEditPlugin.checkAllOpenBuffers(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>
<ACTION NAME="pmd-clear-errorlist">
<CODE>
net.sourceforge.pmd.jedit.PMDJEditPlugin.clearErrorList();
</CODE>
</ACTION>
<ACTION NAME="cpd-currentfile">
<CODE>
net.sourceforge.pmd.jedit.PMDJEditPlugin.cpdCurrentFile(view);
</CODE>
</ACTION>
<ACTION NAME="cpd-dir">
<CODE>
net.sourceforge.pmd.jedit.PMDJEditPlugin.cpdDir(view,false);
</CODE>
</ACTION>
<ACTION NAME="cpd-dir-recursively">
<CODE>
net.sourceforge.pmd.jedit.PMDJEditPlugin.cpdDir(view,true);
</CODE>
</ACTION>
<ACTION NAME="pmd-check-file">
<CODE>
net.sourceforge.pmd.jedit.PMDJEditPlugin.checkFile(view,browser);
</CODE>
</ACTION>
</ACTIONS>