1 /**
2 * .
3 * Copyright � 1999 Erich P G.
4 *
5 */
6
7 package autohit.vm;
8
9 import java.io.Serializable;
10
11 /**
12 * A Virtual Machine instruction. A NOP -- no operation...
13 *
14 * @see autohit.vm.VMInstruction
15 *
16 * @author Erich P. Gatejen
17 * @version 1.0
18 * <i>Version History</i>
19 * <code>EPG - Initial - 20Jan99</code>
20 *
21 */
22 public class VMINop extends VMInstruction {
23
24 // --- FINAL FIELDS ------------------------------------------------------
25
26 // --- FIELDS ------------------------------------------------------------
27
28 // --- PUBLIC METHODS ----------------------------------------------------
29
30 /**
31 * Default constructor.
32 */
33 public VMINop() {
34 nToken = VMInstruction.NOP;
35 }
36
37 /**
38 * Dump this Instruction. Mostly for debugging.
39 *
40 * @return a String containing the dump.
41 */
42 public String toString() {
43 StringBuffer d = new StringBuffer();
44 return " VMINop ---------------------------- \n";
45 }
46
47 // --- PRIVATE METHODS ---------------------------------------------------
48
49 }
|