< prev index next >

src/hotspot/share/classfile/classLoaderData.cpp

Print this page

*** 735,751 **** // Returns true if this class loader data is for the app class loader // or a user defined system class loader. (Note that the class loader // data may be anonymous.) bool ClassLoaderData::is_system_class_loader_data() const { ! return SystemDictionary::is_system_class_loader(class_loader()); } // Returns true if this class loader data is for the platform class loader. // (Note that the class loader data may be anonymous.) bool ClassLoaderData::is_platform_class_loader_data() const { ! return SystemDictionary::is_platform_class_loader(class_loader()); } // Returns true if the class loader for this class loader data is one of // the 3 builtin (boot application/system or platform) class loaders, // including a user-defined system class loader. Note that if the class --- 735,751 ---- // Returns true if this class loader data is for the app class loader // or a user defined system class loader. (Note that the class loader // data may be anonymous.) bool ClassLoaderData::is_system_class_loader_data() const { ! return !is_anonymous() && SystemDictionary::is_system_class_loader(class_loader()); } // Returns true if this class loader data is for the platform class loader. // (Note that the class loader data may be anonymous.) bool ClassLoaderData::is_platform_class_loader_data() const { ! return !is_anonymous() && SystemDictionary::is_platform_class_loader(class_loader()); } // Returns true if the class loader for this class loader data is one of // the 3 builtin (boot application/system or platform) class loaders, // including a user-defined system class loader. Note that if the class
< prev index next >