Class Bootstrap


  • public class Bootstrap
    extends java.lang.Object
    Entry point for setting up the classworlds.

    To maximize the isolation and avoid test interference, test harness could should not be put into the system classloader. The bootstrap module is the small code that's loaded into the system classloader.

    It's only job is to find all the jars that consistute the harness, and create a URLClassLoader, then call into it.

    Author:
    Kohsuke Kawaguchi
    • Constructor Summary

      Constructors 
      Constructor Description
      Bootstrap()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void main​(java.lang.String[] args)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Bootstrap

        public Bootstrap()
    • Method Detail

      • main

        public static void main​(java.lang.String[] args)
                         throws java.lang.Exception
        Throws:
        java.lang.Exception