pmd/pmd-jedit/PMDPlugin/browser.actions.xml

20 lines
548 B
XML
Raw Normal View History

<?xml version="1.0"?>
<!DOCTYPE ACTIONS SYSTEM "actions.dtd">
<ACTIONS>
<ACTION NAME="pmd-check-file">
<CODE>
net.sourceforge.pmd.jedit.PMDJEditPlugin.checkFile(view,browser);
</CODE>
</ACTION>
<ACTION NAME="pmd-check-directory">
<CODE>
net.sourceforge.pmd.jedit.PMDJEditPlugin.checkDirectory(view, browser,false);
</CODE>
</ACTION>
<ACTION NAME="pmd-check-directory-recursively">
<CODE>
net.sourceforge.pmd.jedit.PMDJEditPlugin.checkDirectory(view, browser,true);
</CODE>
</ACTION>
</ACTIONS>