*/
public void print(final String desc, final String usage, String header,
final Options options, String footer)
{
if (usage == null) {
throw new NullArgumentException("usage");
}
if (options == null) {
throw new NullArgumentException("options");
}
if (desc != null) {
out.println(desc);
out.println();