< prev index next >

src/hotspot/share/utilities/accessFlags.cpp

Print this page
@@ -40,10 +40,12 @@
    if (is_transient   ()) st->print("transient "   );
    if (is_native      ()) st->print("native "      );
    if (is_interface   ()) st->print("interface "   );
    if (is_abstract    ()) st->print("abstract "    );
    if (is_synthetic   ()) st->print("synthetic "   );
+   if (is_identity_class()) st->print("identity "  );
+   if (!is_identity_class()) st->print("value "    );
  }
  
  #endif // !PRODUCT || INCLUDE_JVMTI
  
  void accessFlags_init() {
< prev index next >