Package com.darwinsys.lang

Classes for dealing with standard features of Java.

See:
          Description

Class Summary
ExecAndPrint ExecAndPrint runs a program using Runtime.exec(), read the program's output, and returns its exit status.
GetOpt A class to implement UNIX-style (single-character) command line argument parsing.
GetOptDesc A GetOptDesc describes one argument that may be accepted by the program.
MutableInteger A MutableInteger is like an Integer but mutable, to avoid the excess object creation involved in c = new Integer(c.getInt()+1) which can get expensive if done a lot.
StringFormat Bare-minimum "String formatter": format a string to a given maximum length with left, centre, or right justification.
StringUtil Miscellaneous string utilities: arrayToCommaList - print an array with commas, "and"; subst - simple substitute (like 1-4's String.subst but not RE-based) .
SysDep Some things that are System Dependent.
 

Annotation Types Summary
Implements This is the same as the Override annotation but requires that the method it applies to implements a method in one of the class' interfaces.
 

Package com.darwinsys.lang Description

Classes for dealing with standard features of Java. Includes GetOpt for dealing with command-line arguments in the way that Java's runtime hands them to your main program.

For a more comprehensive set of tools for dealing with standard features of java, see the Jakarta Commons Lang Component.



Copyright © 1996-2004 Ian F. Darwin. See license.html for usage license.