< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/CompoundInstruction.java

Print this page

        

*** 19,29 **** * limitations under the License. */ package com.sun.org.apache.bcel.internal.generic; - /** * Wrapper class for `compound' operations, virtual instructions that * don't exist as byte code, but give a useful meaning. For example, * the (virtual) PUSH instruction takes an arbitray argument and produces the * appropiate code at dump time (ICONST, LDC, BIPUSH, ...). Also you can use the --- 19,28 ----
*** 31,42 **** * TABLESWITCH. * * The interface provides the possibilty for the user to write * `templates' or `macros' for such reuseable code patterns. * ! * @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A> * @see PUSH * @see SWITCH */ public interface CompoundInstruction { ! public InstructionList getInstructionList(); } --- 30,42 ---- * TABLESWITCH. * * The interface provides the possibilty for the user to write * `templates' or `macros' for such reuseable code patterns. * ! * @version $Id: CompoundInstruction.java 1747278 2016-06-07 17:28:43Z britter $ * @see PUSH * @see SWITCH */ public interface CompoundInstruction { ! ! InstructionList getInstructionList(); }
< prev index next >