Home | History | Annotate | Download | only in tutorial

Lines Matching full:loaded

107 returns a <code>java.lang.Class</code> object representing the loaded class.
142 to modify a class file that has been already loaded since the JVM does
602 <code>Hello</code> class is never loaded before <code>toClass()</code>
619 <p>then the original <code>Hello</code> class is loaded at the first
637 that has loaded your program (in the above example, the class of
650 same class name. The loaded two classes are regarded as different
665 <p>If the same class file is loaded by two distinct class loaders,
683 The <code>Box</code> class is loaded by two class loaders.
689 class loaded by CL.
692 the <code>Box</code> class loaded by <code>myLoader</code>.
700 parent class loader, which has normally loaded the class of that child
702 hierarchy of class loaders, a class may be loaded by a class loader that
717 <em>The classes that the definition of a class C referes to are loaded by
723 public class Point { // loaded by PL
735 public class Window { // loaded by a class loader L
740 <p>Suppose that a class <code>Window</code> is loaded by a class loader L.
765 public class Window { // loaded by a class loader L
782 is loaded, <code>widthIs()</code> would throw a ClassCastException.
784 <code>Point</code> referred to in <code>Box</code> is also loaded by PL.
786 is an instance of <code>Point</code> loaded by PL
788 is <code>Point</code> loaded by L.
803 is private in <code>Point</code> loaded by PL.
860 loaded,
878 can modify the definition of the loaded class.
881 to public classes just before they are loaded.
928 are loaded by different loaders. The application classes are loaded
947 to be loaded by the parent class loader.
952 to find modified classes for some reason. Once a class is loaded by
954 also loaded by the parent class loader and thus they are never modified.
955 Recall that all the classes referred to in a class C are loaded by the
958 make sure whether all the classes using that class have been loaded by
1009 be loaded by the default system class loader, which is the parent
1027 classes are loaded by different class loaders.
1037 loaded by a class loader other than the system class loader.
1067 <p>If the modified <code>String</code> class is correctly loaded,