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

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DAnnotation.java168 String user; field in class:Annotation.Desc
219 Desc(String changeset, String msg, String user, Date date) { argument
222 this.user = user;
230 + "user: " + encode(user, EOL) + EOL
241 + "<b>User</b>: " + encode(user, BR) + BR
253 void addDesc(String revision, String changeset, String msg, String user, argument
260 info.desc = new Desc(changeset, msg, user, date);
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DArchive.java21 * 3. The end-user documentation included with the redistribution, if
358 /** Add a user name to the list of archive users.
359 * @param name The user name.
394 * @param user The user that locks the revision.
400 public void addLock(String user, Version vernum) argument
404 addUser(user);
406 node.setLocker(user);
407 if (user == null)
H A DNode.java21 * 3. The end-user documentation included with the redistribution, if
108 protected String author = System.getProperty("user.name");
280 * @param user A symbol that identifies the locker.
282 public void setLocker(String user) argument
284 locker = user.intern();
289 * @param user A symbol that identifies the author.
291 public void setAuthor(String user) argument
293 author = user.intern();

Completed in 13 milliseconds