package de.fub.bytecode.generic;

/**
 * Denotes an instruction to be a variable length instruction, such as
 * GOTO, JSR, LOOKUPSWITCH and TABLESWITCH.
 *
 * @version $Id: VariableLengthInstruction.java,v 1.2 2001/05/09 09:26:57 dahm Exp $
 * @author  <A HREF="http://www.berlin.de/~markus.dahm/">M. Dahm</A>

 * @see GOTO
 * @see JSR
 * @see LOOKUPSWITCH
 * @see TABLESWITCH
 */
public interface VariableLengthInstruction {}

