1 | else if ( args[i].equals( "--format" ) ) {↵ | | 1 | else if ( args[i].↵
|
2 | format = true↵ | | 2 | startsWith( "--properties=" ) ) {↵
|
3 | ;↵ | | 3 | propFile = args[i].substring( 13 );↵
|
4 | }↵ | | 4 | }↵
|
5 | else if ( args[i].startsWith( "--delimiter=" ) ) {↵ | | 5 | else if ( args[i].startsWith( "--config=" ) ) {↵
|
6 | delim = args[i].substring( 12 );↵ | | 6 | cfg.configure( args[i].substring( 9 ) );↵
|
7 | }↵ | | 7 | }↵
|
8 | else if ( args[i].startsWith( "--config=" ) ) {↵ | | 8 | else if ( args[i].startsWith( "--text" ) ) {↵
|
9 | cfg.configure( args[i].substring( 9 ) );↵ | | 9 | doUpdate = false;↵
|
10 | }↵ | | 10 | }↵
|
11 | else if ( args[i].startsWith( "--naming=" ) ) {↵ | | 11 | else if ( args[i].startsWith( "--naming=" ) ) {↵
|
12 | cfg.setNamingStrategy(↵ | | 12 | cfg.setNamingStrategy(↵
|
13 | ( NamingStrategy ) ReflectHelper.classForName( args[i].substring( 9 ) )↵ | | 13 | ( NamingStrategy ) ReflectHelper.classForName( args[i].substring( 9 ) )↵
|
14 | .newInstance()↵ | | 14 | .newInstance()↵
|
15 | | | 15 |
|