de.unkrig.commons.asm
Class OpcodeUtil.InsnDescription

java.lang.Object
  extended by de.unkrig.commons.asm.OpcodeUtil.InsnDescription
Enclosing class:
OpcodeUtil

public static final class OpcodeUtil.InsnDescription
extends java.lang.Object

Description of a Java™ bytecode instruction.


Field Summary
 org.objectweb.asm.Type[] argumentOperandTypes
          The types of the instructions's operands.
 org.objectweb.asm.Type resultOperandType
          The type of the instruction's result operand (or null).
 
Constructor Summary
OpcodeUtil.InsnDescription(org.objectweb.asm.Type[] argumentOperandTypes, org.objectweb.asm.Type resultOperandType)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

argumentOperandTypes

@Nullable
public final org.objectweb.asm.Type[] argumentOperandTypes
The types of the instructions's operands.


resultOperandType

@Nullable
public final org.objectweb.asm.Type resultOperandType
The type of the instruction's result operand (or null).

Constructor Detail

OpcodeUtil.InsnDescription

public OpcodeUtil.InsnDescription(@Nullable
                                  org.objectweb.asm.Type[] argumentOperandTypes,
                                  @Nullable
                                  org.objectweb.asm.Type resultOperandType)