org.apache.tools.ant.loaderClass AntClassLoader5
- java.lang.Object
- java.lang.ClassLoader
- org.apache.tools.ant.AntClassLoader
- org.apache.tools.ant.loader.AntClassLoader5
- All Implemented Interfaces:
- java.io.Closeable, java.lang.AutoCloseable, java.util.EventListener, BuildListener, SubBuildListener
Deprecated.since 1.9.7 Just useAntClassLoader
itself.
public class AntClassLoader5 extends AntClassLoader
Constructor Summary
Constructors Constructor and Description AntClassLoader5(java.lang.ClassLoader parent, Project project, Path classpath, boolean parentFirst)
Deprecated.Creates a classloader for the given project using the classpath given.
Method Summary
Methods inherited from class org.apache.tools.ant.AntClassLoader
addJavaLibraries, addLoaderPackageRoot, addPathComponent, addPathElement, addPathFile, addSystemPackageRoot, buildFinished, buildStarted, cleanup, close, defineClassFromData, definePackage, definePackage, findClass, findResources, findResources, forceLoadClass, forceLoadSystemClass, getClasspath, getConfiguredParent, getNamedResources, getResource, getResourceAsStream, getResources, getResourceURL, initializeClass, isInPath, loadClass, log, messageLogged, newAntClassLoader, resetThreadContextLoader, setClassPath, setIsolated, setParent, setParentFirst, setProject, setThreadContextLoader, subBuildFinished, subBuildStarted, targetFinished, targetStarted, taskFinished, taskStarted, toString
Methods inherited from class java.lang.ClassLoader
clearAssertionStatus, defineClass, defineClass, defineClass, defineClass, definePackage, findLibrary, findLoadedClass, findResource, findSystemClass, getClassLoadingLock, getPackage, getPackages, getParent, getSystemClassLoader, getSystemResource, getSystemResourceAsStream, getSystemResources, loadClass, registerAsParallelCapable, resolveClass, setClassAssertionStatus, setDefaultAssertionStatus, setPackageAssertionStatus, setSigners
Constructor Detail
AntClassLoader5
public AntClassLoader5(java.lang.ClassLoader parent, Project project, Path classpath, boolean parentFirst)Deprecated.Creates a classloader for the given project using the classpath given.
- Parameters:
parent
- The parent classloader to which unsatisfied loading attempts are delegated. May benull
, in which case the classloader which loaded this class is used as the parent.project
- The project to which this classloader is to belong. Must not benull
.classpath
- the classpath to use to load the classes. May benull
, in which case no path elements are set up to start with.parentFirst
- Iftrue
, indicates that the parent classloader should be consulted before trying to load the a class through this loader.