KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > gjt > jclasslib > bytecode > SimpleInstruction


1 /*
2     This library is free software; you can redistribute it and/or
3     modify it under the terms of the GNU General Public
4     License as published by the Free Software Foundation; either
5     version 2 of the license, or (at your option) any later version.
6 */

7
8 package org.gjt.jclasslib.bytecode;
9
10 /**
11     Describes an instructions with no immediate arguments.
12  
13     @author <a HREF="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
14     @version $Revision: 1.3 $ $Date: 2003/08/18 07:58:35 $
15 */

16 public class SimpleInstruction extends AbstractInstruction {
17
18     /**
19         Constructor.
20         @param opcode the opcode.
21      */

22     public SimpleInstruction(int opcode) {
23         super(opcode);
24     }
25     
26     
27 }
28
Popular Tags