< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/StackMapEntry.java

Print this page

        

@@ -29,11 +29,10 @@
 /**
  * This class represents a stack map entry recording the types of
  * local variables and the the of stack items at a given byte code offset.
  * See CLDC specification 5.3.1.2
  *
- * @version $Id$
  * @see     StackMap
  * @see     StackMapType
  */
 public final class StackMapEntry implements Node, Cloneable
 {

@@ -140,11 +139,11 @@
      * Dump stack map entry
      *
      * @param file Output file stream
      * @throws IOException
      */
-    public final void dump( final DataOutputStream file ) throws IOException {
+    public void dump( final DataOutputStream file ) throws IOException {
         file.write(frame_type);
         if (frame_type >= Const.SAME_FRAME && frame_type <= Const.SAME_FRAME_MAX) {
             // nothing to be done
         } else if (frame_type >= Const.SAME_LOCALS_1_STACK_ITEM_FRAME &&
                    frame_type <= Const.SAME_LOCALS_1_STACK_ITEM_FRAME_MAX) {

@@ -180,11 +179,11 @@
 
     /**
      * @return String representation.
      */
     @Override
-    public final String toString() {
+    public String toString() {
         final StringBuilder buf = new StringBuilder(64);
         buf.append("(");
         if (frame_type >= Const.SAME_FRAME && frame_type <= Const.SAME_FRAME_MAX) {
             buf.append("SAME");
         } else if (frame_type >= Const.SAME_LOCALS_1_STACK_ITEM_FRAME &&

@@ -424,17 +423,17 @@
 
 
     /**
      * @return Constant pool used by this object.
      */
-    public final ConstantPool getConstantPool() {
+    public ConstantPool getConstantPool() {
         return constant_pool;
     }
 
 
     /**
      * @param constant_pool Constant pool to be used for this object.
      */
-    public final void setConstantPool( final ConstantPool constant_pool ) {
+    public void setConstantPool( final ConstantPool constant_pool ) {
         this.constant_pool = constant_pool;
     }
 }
< prev index next >