1 package net.sourceforge.pmd.swingui.event;
2
3 import net.sourceforge.pmd.PMDException;
4
5 import java.util.EventListener;
6
7 /***
8 *
9 * @author Donald A. Leckie
10 * @since December 13, 2002
11 * @version $Revision: 1.5 $, $Date: 2003/03/14 19:04:18 $
12 */
13 public interface PMDDirectoryRequestEventListener extends EventListener {
14
15 /***
16 *******************************************************************************
17 *
18 * @param event
19 */
20 void requestRuleSetPath(PMDDirectoryRequestEvent event);
21
22 /***
23 *******************************************************************************
24 *
25 * @param event
26 */
27 void requestAllRuleSets(PMDDirectoryRequestEvent event) throws PMDException;
28
29 /***
30 *******************************************************************************
31 *
32 * @param event
33 */
34 void requestDefaultRuleSets(PMDDirectoryRequestEvent event);
35
36 /***
37 *******************************************************************************
38 *
39 * @param event
40 */
41 void requestIncludedRules(PMDDirectoryRequestEvent event) throws PMDException;
42 }
This page was automatically generated by Maven