(final String[] args)
| 33 | private static String pathToConfigFile; |
| 34 | |
| 35 | public static void processArgs(final String[] args) { |
| 36 | // Set these as arguments so you don't have to keep path information in |
| 37 | // source files |
| 38 | if (args != null && args.length > 0) { |
| 39 | pathToConfigFile = args[0]; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | public static void main(final String[] args) throws Exception { |
| 44 | processArgs(args); |