KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > memoire > vainstall > builder > action > AbstractVAIBuilderThreadAction


1 /*
2  * $RCSfile: AbstractVAIBuilderThreadAction.java,v $
3  * @modification $Date: 2001/09/28 19:31:19 $
4  * @version $Id: AbstractVAIBuilderThreadAction.java,v 1.1 2001/09/28 19:31:19 hfalk Exp $
5  *
6  */

7
8 package com.memoire.vainstall.builder.action;
9
10 /**
11  * This is an abstract class that extends the AbstractAction class
12  * with the knowledge of the VAIBuilderController and VAIBuilderModel.
13  *
14  * This class is 'multithreaded' and subclasses only have to implement
15  * the runnit method.
16  *
17  * @see com.memoire.vainstall.builder.util.AbstractVAIBuilderAction
18  *
19  * @author Henrik Falk
20  * @version $Id: AbstractVAIBuilderThreadAction.java,v 1.1 2001/09/28 19:31:19 hfalk Exp $
21  */

22 public abstract class AbstractVAIBuilderThreadAction extends AbstractVAIBuilderAction implements Runnable JavaDoc {
23
24     /**
25      * Default constructor
26      */

27     public AbstractVAIBuilderThreadAction() {
28         super();
29     }
30
31     /**
32      * actionPerformed
33      */

34     public void actionPerformed(java.awt.event.ActionEvent JavaDoc arg1) {
35         // start this thread
36
}
37
38     /**
39      * Implements the Runnable interface
40      */

41     public void run() {
42         runnit();
43     }
44
45 }
46
Popular Tags