KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jas > InvokeinterfaceInsn


1 /**
2  * Some instructions are perniticky enough that its simpler
3  * to write them separately instead of smushing them with
4  * all the rest. the invokeinterface instruction is one of them.
5  * @author $Author: fqian $
6  * @version $Revision: 1.1 $
7  */

8
9 package jas;
10
11 import java.io.*;
12
13
14 public class InvokeinterfaceInsn extends Insn implements RuntimeConstants
15 {
16   public InvokeinterfaceInsn(CP cpe, int nargs)
17   {
18     opc = opc_invokeinterface;
19     operand = new InvokeinterfaceOperand(cpe, nargs);
20   }
21 }
22
Popular Tags