Initial Commit
[packages] / xemacs-packages / jde / java / src / jde / debugger / command / DebugProcessCommand.java
1 package jde.debugger.command;
2 import java.util.List;
3
4 import jde.debugger.Debugger;
5 import jde.debugger.JDEException;
6
7
8 /**
9  * DebugProcessCommand.java
10  *
11  *
12  * Created: Fri Jan 28 21:58:06 2000
13  *
14  * 
15  * Copyright (c) 2000, 2001, 2003    Paul Kinnucan
16  *
17  * @author Paul Kinnucan
18  * @version $Revision: 1.3 $
19  */
20
21 abstract public class DebugProcessCommand extends DebugCommand {
22   protected Debugger m_debugger = null;
23
24   public void init(Integer cmdID, 
25                    String cmdName, List args) throws JDEException {
26     super.init(cmdID, cmdName, args);
27   }
28
29     
30   /**
31    * Gets the value of debugger
32    *
33    * @return the value of debugger
34    */
35   public Debugger getDebugger() {
36     return this.m_debugger;
37   }
38
39   /**
40    * Sets the value of debugger
41    *
42    * @param debugger Value to assign to this.debugger
43    */
44   public void setDebugger(Debugger debugger){
45     this.m_debugger = debugger;
46   }
47     
48 } // DebugProcessCommand
49
50
51 /*
52  * $Log: DebugProcessCommand.java,v $
53  * Revision 1.3  2003/01/15 05:56:26  paulk
54  * Add Petter Mahlen's changes.
55  *
56  * Revision 1.2  2001/07/06 02:05:51  paulk
57  * Makefile
58  *
59  * Revision 1.1  2001/03/24 05:48:40  paulk
60  * Initial version.
61  *
62  * Revision 1.2  2000/03/03 07:40:32  paulk
63  * Converted get_string and get_array commands from functions to objects.
64  *
65  * Revision 1.1  2000/01/31 12:46:10  paulk
66  * Defines general behavior of application debug commands.
67  *
68  */
69
70 // End of DebugProcessCommand.java