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

Quick Search    Search Deep

installer: Javadoc index of package installer.


Package Samples:

installer

Classes:

VariableGridLayout: The VariableGridLayout class is a layout manager that lays out a container's components in a rectangular grid with variable cell sizes. The container is divided into rectangles, and one component is placed in each rectangle. Each row is as large as the largest component in that row, and each column is as wide as the widest component in that column. This behavior is basically the same as in java.awt.GridLayout , but with different row heights and column widths for each row/column. For example, the following is an applet that lays out six buttons into three rows and two columns: import java.awt.*; ...
TarEntry: This class represents an entry in a Tar archive. It consists of the entry's header, as well as the entry's File. Entries can be instantiated in one of three ways, depending on how they are to be used. TarEntries that are created from the header bytes read from an archive are instantiated with the TarEntry( byte[] ) constructor. These entries will be used when extracting from or listing the contents of an archive. These entries have their header filled in using the header bytes. They also set the File to null, since they reference an archive entry not a file. TarEntries that are created from Files ...
TarBuffer: The TarBuffer class implements the tar archive concept of a buffered input stream. This concept goes back to the days of blocked tape drives and special io devices. In the Java universe, the only real function that this class performs is to ensure that files have the correct "block" size, or other tars will complain. You should never have a need to access this class directly. TarBuffers are created by Tar IO Streams.
TarInputStream: The TarInputStream reads a UNIX tar archive as an InputStream. methods are provided to position at each successive entry in the archive, and the read each entry as a normal input stream using read().
TarOutputStream: The TarOutputStream writes a UNIX tar archive as an OutputStream. Methods are provided to put entries, and then write their contents by writing to this stream using write().
MakeFileList: Create spec files for the installer ; this class is totally independent of other classes in this package, and should be called from the Ant utility.
TarHeader: This class encapsulates the Tar Entry Header used in Tar Archives. The class also holds a number of tar constants, used mostly in headers.
OperatingSystem: Abstracts away operating-specific stuff, like finding out the installation directory, creating a shortcut to start to program, and such.
CBZip2OutputStream: An output stream that compresses into the BZip2 format (without the file header chars) into another stream. TODO: Update to BZip2 1.0.1
Progress: An interface for reporting installation progress. ConsoleProgress and SwingProcess are the two existing implementations.
CBZip2InputStream: An input stream that decompresses from the BZip2 format (without the file header chars) to be read as any other stream.
BZip2Constants: Base class for both the compress and decompress classes. Holds common arrays, and static data.
InvalidHeaderException: This exception is used to indicate that there is a problem with a TAR archive header.
Wizard: An abstract class that steps the user through a set of pages. Used by SwingInstall.
CRC: A simple class the hold and calculate the CRC for sanity checking of the data.

Home | Contact Us | Privacy Policy | Terms of Service