langtools/src/share/classes/sun/tools/javap/MethodData.java
changeset 1789 7ac8c0815000
parent 735 372aa565a221
equal deleted inserted replaced
1788:ced0a1a7ec80 1789:7ac8c0815000
   300     }
   300     }
   301 
   301 
   302     /**
   302     /**
   303      * Return LineNumberTable
   303      * Return LineNumberTable
   304      */
   304      */
   305     public Vector getlin_num_tb(){
   305     public Vector<?> getlin_num_tb(){
   306         return lin_num_tb;
   306         return lin_num_tb;
   307     }
   307     }
   308 
   308 
   309     /**
   309     /**
   310      * Return LocalVariableTable size.
   310      * Return LocalVariableTable size.
   315 
   315 
   316 
   316 
   317     /**
   317     /**
   318      * Return LocalVariableTable.
   318      * Return LocalVariableTable.
   319      */
   319      */
   320     public Vector getloc_var_tb(){
   320     public Vector<?> getloc_var_tb(){
   321         return loc_var_tb;
   321         return loc_var_tb;
   322     }
   322     }
   323 
   323 
   324     /**
   324     /**
   325      * Return StackMap.
   325      * Return StackMap.
   376 
   376 
   377 
   377 
   378     /**
   378     /**
   379      * Return exception table in code attributre.
   379      * Return exception table in code attributre.
   380      */
   380      */
   381     public Vector getexception_table(){
   381     public Vector<?> getexception_table(){
   382         return exception_table;
   382         return exception_table;
   383     }
   383     }
   384 
   384 
   385 
   385 
   386     /**
   386     /**
   387      * Return method attributes.
   387      * Return method attributes.
   388      */
   388      */
   389     public Vector getAttributes(){
   389     public Vector<?> getAttributes(){
   390         return attrs;
   390         return attrs;
   391     }
   391     }
   392 
   392 
   393 
   393 
   394     /**
   394     /**
   395      * Return code attributes.
   395      * Return code attributes.
   396      */
   396      */
   397     public Vector getCodeAttributes(){
   397     public Vector<?> getCodeAttributes(){
   398         return code_attrs;
   398         return code_attrs;
   399     }
   399     }
   400 
   400 
   401 
   401 
   402     /**
   402     /**