public void process(final WriteableCommandLine commandLine,
final ListIterator arguments) throws OptionException {
final String arg = (String) arguments.next();
if (!canProcess(commandLine, arg)) {
throw new OptionException(this,
ResourceConstants.UNEXPECTED_TOKEN, arg);
}
ArrayList properties = new ArrayList();
String next = "";