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

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DDirectoryHistoryReader.java60 * @author Chandan
61 * @author Lubos Kosco update for lucene 3.0.0
174 private void put(Date date, String author, String comment, String path) { argument
184 Map<String, SortedSet<String>> cf = ac.get(author);
187 ac.put(author, cf);
H A DHistoryEntry.java38 * @author Trond Norbye
44 private String author; field in class:HistoryEntry
66 * @param author the authors name and email-address (if available).
72 String author, String message, boolean active)
77 this.author = author;
85 return revision + " " + date + " " + author + " " + message + "\n";
97 log.log(Level.FINE, "HistoryEntry : author = {0}", author);
118 return author;
71 HistoryEntry(String revision, String oldRevision, Date date, String author, String message, boolean active) argument
148 setAuthor(String author) argument
[all...]
H A DSCCSHistoryParser.java55 private String author; field in class:SCCSHistoryParser
106 * rev date time author comments(s)
132 author = f[4];
136 author = null;
159 * @return get the author of current log record
163 return author;
H A DAnnotation.java36 * Class representing file annotation, i.e., revision and author for the last
87 * Gets the author who last modified the specified line.
90 * @return author, or an empty string if there is no information about the
95 return idx < 0 ? "" : infos.get(idx).author;
118 * Returns the widest author name in the file (used for pretty printing).
120 * @return number of characters in the widest author string
128 String author; // email aka author column in html view field in class:Annotation.RevInfo
130 public RevInfo(String rev, String author, Desc desc) { argument
132 this.author
145 addLine(String revision, String author) argument
[all...]
H A DSubversionRepository.java56 * @author Trond Norbye
282 String author; field in class:SubversionRepository.AnnotateHandler
298 author = null;
306 if ("author".equals(qname)) {
307 author = sb.toString();
309 annotation.addLine(rev, author);
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DNode.java92 * @author <a href="mailto:juanco@suigeneris.org">Juanco Anez</a>
108 protected String author = System.getProperty("user.name"); field in class:Node
153 this.author = other.author;
288 * Set the author of the node's revision.
289 * @param user A symbol that identifies the author.
293 author = user.intern();
682 if (author != null)
684 s.append(" " + author);
830 return author;
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DUtil.java334 * Get email address of the author.
336 * @param author
337 * string containing author and possibly email address.
341 public static String getEmail(String author) { argument
342 Matcher email_matcher = EMAIL_PATTERN.matcher(author);
343 String email = author;
/opengrok-jel/lib/
H A Djrcs.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/jrcs/ ...

Completed in 21 milliseconds