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

Quick Search    Search Deep

com.lutris.classloader.tests.* (4)

com.lutris.classloader: Javadoc index of package com.lutris.classloader.


Package Samples:

com.lutris.classloader.tests

Classes:

MultiClassLoader: Summary: A class loader that can load classes from class files and zip files residing in a specified class path. This class loader can also load resources that reside on the class path and return them as is, as input streams, or as byte arrays. Features: Loads classes from class files and zip files. Finds resources and can return them as is, as input streams and as byte arrays. Loads classes and resources using the specified class path. Class path entries can be URLs, directories, zip files or jar files. A secondary classloader can be specified which is used to locate the class if its not found ...
ClassPathEntry: Summary: A class path entry which is a URL representing either a local or a remote directory or zip file. Manages all the details for zip file support. For example, local zip files (once opened) are kept open for the lifetime of the entry for increased performance. Features: Supports absolute and relative file names Creates URL entry from given String, File, or URL Adds "/" to end of URL for directories if necessary Knows if URL is zip local or remote Knows if URL is a zip file or directory Keeps ZipFile open if the zip file is local Note: "zip files" are files with ".zip" or ".jar" extensions. ...
Resource: A resource that is a file existing on the local machine or a remote machine. The properties of a resource include file name, location, size, and last-modified time. The location of the resource is represented by a ClassPathEntry and is either a directory or a zip file. The file name, described by a String, is relative to the specified location. The resource size is the file size in bytes and the resource time is the last-modified time of the file in milliseconds. This is an abstract class. All subclasses must determine the size and last-modified time for the resource, and must implement the getInputStream ...
LocalDirResource: A Resource that is a file on the local machine in a specified directory. The directory is represented by a ClassPathEntry , and the filename is specified by a String.
RemoteDirResource: A Resource that is a file on a remote machine in a specified directory. The directory is represented by a ClassPathEntry , and the filename is specified by a String.
RemoteZipResource: A Resource that is an entry in a specified zip file on a remote machine. The zip file is represented by a ClassPathEntry , and the filename is specified by a String.
LocalZipResource: A Resource that is an entry in a specified zip file on the local machine. The zip file is represented by a ClassPathEntry , and the filename is specified by a String.
ClassPath: A class path that is composed of ClassPathEntry objects. This class can be used in conjunction with a class loader to load classes and resources.
ClassLoaderTests
MultiClassLoaderTests
TestClass
TestClass2

Home | Contact Us | Privacy Policy | Terms of Service