diff options
author | Tomas O'Connor <toconnor@openoffice.org> | 2003-02-25 15:46:18 +0000 |
---|---|---|
committer | Tomas O'Connor <toconnor@openoffice.org> | 2003-02-25 15:46:18 +0000 |
commit | 4f6559bdde6ec5f0be77a1aeb0decba25c3d12a3 (patch) | |
tree | 06f126eaaf2ce225d6b7f0d45cd6d5941f527843 /scripting/java | |
parent | 9b6ccc75b7ec62f698a8c14ea2544c751b4eb82d (diff) |
Update usage message
Diffstat (limited to 'scripting/java')
-rw-r--r-- | scripting/java/org/openoffice/idesupport/CommandLineTools.java | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/scripting/java/org/openoffice/idesupport/CommandLineTools.java b/scripting/java/org/openoffice/idesupport/CommandLineTools.java index a4a0779d6c77..599c9bd627b8 100644 --- a/scripting/java/org/openoffice/idesupport/CommandLineTools.java +++ b/scripting/java/org/openoffice/idesupport/CommandLineTools.java @@ -2,9 +2,9 @@ * * $RCSfile: CommandLineTools.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: toconnor $ $Date: 2003-02-21 10:56:31 $ + * last change: $Author: toconnor $ $Date: 2003-02-25 16:46:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -95,11 +95,15 @@ public class CommandLineTools { } private void printUsage() { - System.out.println("java " + getClass().getName() + " -g " + - "[parcel root directory]"); System.out.println("java " + getClass().getName() + " -d " + "<script parcel zip file> " + "<destination document or directory>"); + System.out.println("java " + getClass().getName() + " -g " + + "[parcel root directory] [options]"); + System.out.println("options:"); + System.out.println("\t[-l language[=supported extensions]]"); + System.out.println("\t[-p name=value]"); + System.out.println("\t[-v]"); } private void fatal(String message) { |