hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/BasicFieldWrapper.java
changeset 360 21d113ecbf6a
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
equal deleted inserted replaced
357:f4edb0d9f109 360:21d113ecbf6a
    93   }
    93   }
    94   public OopHandle  getOopHandle(Address addr)
    94   public OopHandle  getOopHandle(Address addr)
    95     throws UnmappedAddressException, UnalignedAddressException, NotInHeapException {
    95     throws UnmappedAddressException, UnalignedAddressException, NotInHeapException {
    96     return field.getOopHandle(addr);
    96     return field.getOopHandle(addr);
    97   }
    97   }
       
    98   public OopHandle  getNarrowOopHandle(Address addr)
       
    99     throws UnmappedAddressException, UnalignedAddressException, NotInHeapException {
       
   100     return field.getNarrowOopHandle(addr);
       
   101   }
    98 
   102 
    99   public boolean    getJBoolean () throws UnmappedAddressException, UnalignedAddressException, WrongTypeException {
   103   public boolean    getJBoolean () throws UnmappedAddressException, UnalignedAddressException, WrongTypeException {
   100     return field.getJBoolean();
   104     return field.getJBoolean();
   101   }
   105   }
   102   public byte       getJByte    () throws UnmappedAddressException, UnalignedAddressException, WrongTypeException {
   106   public byte       getJByte    () throws UnmappedAddressException, UnalignedAddressException, WrongTypeException {
   128   }
   132   }
   129   public OopHandle  getOopHandle()
   133   public OopHandle  getOopHandle()
   130     throws UnmappedAddressException, UnalignedAddressException, NotInHeapException {
   134     throws UnmappedAddressException, UnalignedAddressException, NotInHeapException {
   131     return field.getOopHandle();
   135     return field.getOopHandle();
   132   }
   136   }
       
   137   public OopHandle  getNarrowOopHandle()
       
   138     throws UnmappedAddressException, UnalignedAddressException, NotInHeapException {
       
   139     return field.getNarrowOopHandle();
       
   140   }
   133 }
   141 }