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

/opengrok/src/org/opensolaris/opengrok/history/
H A DDirectoryHistoryReader.java64 * @author Chandan
65 * @author Lubos Kosco update for lucene 4.x
72 // It maps date -> author -> (comment, revision) -> [ list of files ]
188 private void put(Date date, String revision, String author, String comment, String path) { argument
198 Map<List<String>, SortedSet<String>> cf = ac.get(author);
201 ac.put(author, cf);
H A DAnnotation.java45 * Class representing file annotation, i.e., revision and author for the last
93 * Gets the author who last modified the specified line.
96 * @return author, or an empty string if there is no information about the
101 return lines.get(line-1).author;
141 * Returns the widest author name in the file (used for pretty printing).
143 * @return number of characters in the widest author string
153 * @param author author name
155 void addLine(String revision, String author, boolean enabled) { argument
156 final Line line = new Line(revision, author, enable
197 final String author; field in class:Annotation.Line
[all...]
H A DHistoryEntry.java40 * @author Trond Norbye
48 private String author; field in class:HistoryEntry
69 this.author = that.author;
77 public HistoryEntry(String revision, Date date, String author, argument
81 this.author = author;
90 return revision + " " + date + " " + author + " " + message + "\n";
98 LOGGER.log(Level.FINE, "HistoryEntry : author = {0}", author);
142 setAuthor(String author) argument
[all...]
H A DSCCSHistoryParser.java59 private String author; field in class:SCCSHistoryParser
110 * rev date time author comments(s)
135 author = f[4];
139 author = null;
162 * @return get the author of current log record
166 return author;
H A DSubversionRepository.java61 * @author Trond Norbye
312 String author; field in class:SubversionRepository.AnnotateHandler
329 author = null;
342 case "author":
343 author = sb.toString();
346 annotation.addLine(rev, author, true);
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DNode.java93 * @author <a href="mailto:juanco@suigeneris.org">Juanco Anez</a>
106 protected String author = System.getProperty("user.name"); field in class:Node
138 this.author = other.author;
273 * Set the author of the node's revision.
274 * @param user A symbol that identifies the author.
278 author = user.intern();
664 if (author != null)
666 s.append(" " + author);
807 return author;
[all...]
/opengrok/src/org/opensolaris/opengrok/web/
H A DUtil.java336 * Get email address of the author.
338 * @param author string containing author and possibly email address.
339 * @return email address of the author or full author string if the author
342 public static String getEmail(String author) { argument
343 Matcher emailMatcher = EMAIL_PATTERN.matcher(author);
344 String email = author;

Completed in 35 milliseconds