* resource/gnu/classpath/tools/native2ascii/messages.properties

(Native2ASCII.ReversedHelpCompat): New.
	* tools/gnu/classpath/tools/native2ascii/Native2ASCII.java
	(createParser): Add -reverse.  Update -reversed.

From-SVN: r131801
This commit is contained in:
Tom Tromey
2008-01-24 18:31:50 +00:00
committed by Tom Tromey
parent 3b30368313
commit c496dbb3c1
4 changed files with 21 additions and 3 deletions
@@ -1,5 +1,5 @@
/* Native2ASCII.java - native2ascii program
Copyright (C) 2003, 2007 Free Software Foundation, Inc.
Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -101,7 +101,17 @@ public class Native2ASCII
encoding = argument;
}
});
result.add(new Option("reversed", Messages.getString("Native2ASCII.ReversedHelp")) //$NON-NLS-1$ //$NON-NLS-2$
result.add(new Option("reverse", Messages.getString("Native2ASCII.ReversedHelp")) //$NON-NLS-1$ //$NON-NLS-2$
{
public void parsed(String argument) throws OptionException
{
reversed = true;
}
});
// We mistakenly added the extra "d" in "reversed"; now we don't
// want to remove it, for backward compatibility.
result.add(new Option("reversed", Messages.getString("Native2ASCII.ReversedHelpCompat")) //$NON-NLS-1$ //$NON-NLS-2$
{
public void parsed(String argument) throws OptionException
{