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

/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DArchive.java21 * 3. The end-user documentation included with the redistribution, if
336 /** Add a user name to the list of archive users.
337 * @param name The user name.
368 * @param user The user that locks the revision.
371 public void addLock(String user, Version vernum) argument
375 addUser(user);
377 node.setLocker(user);
378 if (user == null)
H A DNode.java21 * 3. The end-user documentation included with the redistribution, if
106 protected String author = System.getProperty("user.name");
265 * @param user A symbol that identifies the locker.
267 public void setLocker(String user) argument
269 locker = user.intern();
274 * @param user A symbol that identifies the author.
276 public void setAuthor(String user) argument
278 author = user.intern();

Completed in 35 milliseconds