src/hotspot/share/classfile/modules.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/hotspot/share/classfile/modules.hpp	Sun Apr  8 23:15:19 2018
--- new/src/hotspot/share/classfile/modules.hpp	Sun Apr  8 23:15:18 2018

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 26,35 **** --- 26,36 ---- #define SHARE_VM_CLASSFILE_MODULES_HPP #include "memory/allocation.hpp" #include "runtime/handles.hpp" + class ModuleEntryTable; class Symbol; class Modules : AllStatic { public:
*** 120,127 **** --- 121,129 ---- // Return TRUE if package_name is syntactically valid, false otherwise. static bool verify_package_name(const char *package_name); // Return TRUE iff package is defined by loader static bool is_package_defined(Symbol* package_name, Handle h_loader, TRAPS); + static ModuleEntryTable* get_module_entry_table(Handle h_loader); }; #endif // SHARE_VM_CLASSFILE_MODULES_HPP

src/hotspot/share/classfile/modules.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File