Searched defs:clazzName (Results 1 - 1 of 1) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java292 * @param clazzName name of the targeting class
295 public String getRepoCmd(String clazzName) { argument
296 return cmds.get(clazzName);
302 * @param clazzName name of the targeting class. If {@code null} this method
305 * entry for the given clazzName get removed.
308 public String setRepoCmd(String clazzName, String cmd) { argument
309 if (clazzName == null) {
313 return cmds.remove(clazzName);
315 return cmds.put(clazzName, cmd);

Completed in 108 milliseconds