public class

Main

extends Object
java.lang.Object
   ↳ sun.tools.jar.Main

Class Overview

This class implements a simple utility for creating files in the JAR (Java Archive) file format. The JAR format is based on the ZIP file format, with optional meta-information stored in a MANIFEST entry.

Summary

Public Constructors
Main(PrintStream out, PrintStream err, String program)
Public Methods
static void main(String[] args)
Main routine to start program.
synchronized boolean run(String[] args)
Starts main program with the specified arguments.
Protected Methods
void error(String s)
Print an error mesage; like something is broken
void output(String s)
Print an output message; like verbose output and the like
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Main (PrintStream out, PrintStream err, String program)

Public Methods

public static void main (String[] args)

Main routine to start program.

public synchronized boolean run (String[] args)

Starts main program with the specified arguments.

Protected Methods

protected void error (String s)

Print an error mesage; like something is broken

protected void output (String s)

Print an output message; like verbose output and the like