< prev index next >

src/hotspot/share/runtime/fieldDescriptor.hpp

Print this page

        

@@ -89,10 +89,11 @@
   bool is_protected()             const    { return access_flags().is_protected(); }
   bool is_package_private()       const    { return !is_public() && !is_private() && !is_protected(); }
 
   bool is_static()                const    { return access_flags().is_static(); }
   bool is_final()                 const    { return access_flags().is_final(); }
+  bool is_stable()                const    { return access_flags().is_stable(); }
   bool is_volatile()              const    { return access_flags().is_volatile(); }
   bool is_transient()             const    { return access_flags().is_transient(); }
 
   bool is_synthetic()             const    { return access_flags().is_synthetic(); }
 
< prev index next >