(String name,
String specificationTitle,
String specificationVersion,
String specificationVendor,
String implementationTitle,
String implementationVersion,
String implementationVendor,
URL sealBase)
| 57 | } |
| 58 | |
| 59 | protected Package definePackage(String name, |
| 60 | String specificationTitle, |
| 61 | String specificationVersion, |
| 62 | String specificationVendor, |
| 63 | String implementationTitle, |
| 64 | String implementationVersion, |
| 65 | String implementationVendor, |
| 66 | URL sealBase) |
| 67 | { |
| 68 | Package p = new Package |
| 69 | (name, implementationTitle, implementationVersion, |
| 70 | implementationVendor, specificationTitle, specificationVersion, |
| 71 | specificationVendor, sealBase, this); |
| 72 | |
| 73 | synchronized (this) { |
| 74 | packages().put(name, p); |
| 75 | return p; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | public static ClassLoader getSystemClassLoader() { |
| 80 | return ClassLoader.class.getClassLoader(); |
no test coverage detected