| Utility class that supports parsing of Java method declarations. For
example, public static int myMethod(java.lang.String, int value,
java.lang.String... extra) .
The parser is fairly lenient. It doesn't care if the set of modifiers is
illegal, and it doesn't require that arguments have variable names assigned.
A semi-colon may appear at the end of the signature.
At most one variable argument is supported (at the end), and all class
names must be fully qualified.
author: Brian S O'Neill |