Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

java.lang
Class ClassLoader.StaticData  view ClassLoader.StaticData download ClassLoader.StaticData.java

java.lang.Object
  extended byjava.lang.ClassLoader.StaticData
Enclosing class:
ClassLoader

static class ClassLoader.StaticData
extends Object


Field Summary
(package private) static java.security.ProtectionDomain defaultProtectionDomain
          The default protection domain, used when defining a class with a null parameter for the domain.
(package private) static java.util.Map systemClassAssertionStatus
          The command-line state of the class assertion status overrides.
(package private) static ClassLoader systemClassLoader
          The System Class Loader (a.k.a.
(package private) static java.util.Map systemPackageAssertionStatus
          The command-line state of the package assertion status overrides.
 
Constructor Summary
(package private) ClassLoader.StaticData()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

systemClassLoader

static final ClassLoader systemClassLoader
The System Class Loader (a.k.a. Application Class Loader). The one returned by ClassLoader.getSystemClassLoader.


defaultProtectionDomain

static final java.security.ProtectionDomain defaultProtectionDomain
The default protection domain, used when defining a class with a null parameter for the domain.


systemPackageAssertionStatus

static final java.util.Map systemPackageAssertionStatus
The command-line state of the package assertion status overrides. This map is never modified, so it does not need to be synchronized.


systemClassAssertionStatus

static final java.util.Map systemClassAssertionStatus
The command-line state of the class assertion status overrides. This map is never modified, so it does not need to be synchronized.

Constructor Detail

ClassLoader.StaticData

ClassLoader.StaticData()