Generates a stop file for the specified class and port. @param clazz class name @param port port @return stop file
(final Class<?> clazz, final int port)
| 38 | * @return stop file |
| 39 | */ |
| 40 | protected static IOFile stopFile(final Class<?> clazz, final int port) { |
| 41 | final String file = Util.className(clazz).toLowerCase(Locale.ENGLISH) + "stop-" + port + ".tmp"; |
| 42 | return new IOFile(new IOFile(Prop.TEMPDIR, Prop.PROJECT), file); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Returns a header string for command-line information. |
no test coverage detected