< prev index next >

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

Print this page

        

@@ -19,11 +19,10 @@
  * 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

@@ -31,12 +30,13 @@
  * 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>
+ * @version $Id: CompoundInstruction.java 1747278 2016-06-07 17:28:43Z britter $
  * @see PUSH
  * @see SWITCH
  */
 public interface CompoundInstruction {
-  public InstructionList getInstructionList();
+
+    InstructionList getInstructionList();
 }
< prev index next >