hotspot/src/share/vm/runtime/fieldDescriptor.hpp
changeset 13101 67539edd246d
parent 12772 d317e5e08194
child 13391 30245956af37
equal deleted inserted replaced
13100:a97a0bd28c2e 13101:67539edd246d
    98   bool is_synthetic() const               { return access_flags().is_synthetic(); }
    98   bool is_synthetic() const               { return access_flags().is_synthetic(); }
    99 
    99 
   100   bool is_field_access_watched() const    { return access_flags().is_field_access_watched(); }
   100   bool is_field_access_watched() const    { return access_flags().is_field_access_watched(); }
   101   bool is_field_modification_watched() const
   101   bool is_field_modification_watched() const
   102                                           { return access_flags().is_field_modification_watched(); }
   102                                           { return access_flags().is_field_modification_watched(); }
       
   103   bool has_generic_signature() const      { return access_flags().field_has_generic_signature(); }
   103 
   104 
   104   void set_is_field_access_watched(const bool value) {
   105   void set_is_field_access_watched(const bool value) {
   105     _access_flags.set_is_field_access_watched(value);
   106     _access_flags.set_is_field_access_watched(value);
   106     update_klass_field_access_flag();
   107     update_klass_field_access_flag();
   107   }
   108   }