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

/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DDeltaText.java15 private boolean annotate; field in class:DeltaText
22 DeltaText(Node root, Node prev, boolean annotate) argument
26 this.annotate = annotate;
40 if (!annotate)
H A DLines.java134 public Object[] textToArray(boolean annotate) argument
143 if (annotate)
158 public String toString(boolean annotate) argument
160 return Diff.arrayToString(this.textToArray(annotate));
H A DPath.java147 * @param annotate if true, then each text line is a
152 public List patch(boolean annotate) argument
157 return patch(new Lines(), annotate);
186 * @param annotate if true, then each text line is a
191 public List patch(List lines, boolean annotate) argument
200 head.patch0(lines, annotate);
206 n.patch(lines, annotate);
211 public List newpatch(List lines, boolean annotate) argument
215 if (!annotate)
228 else // annotate
[all...]
H A DTrunkNode.java174 * @param annotate True if the lines should be annotated with version numbers.
176 protected void patch0(List original, boolean annotate) argument
H A DArchive.java832 * Set annotate to true to have the lines be annotated with the
834 * @param annotate set to true to have the text be annotated
841 public Object[] getRevision(boolean annotate) argument
884 * Set annotate to true to have the lines be annotated with the
887 * @param annotate set to true to have the text be annotated
894 public Object[] getRevision(String vernum, boolean annotate) argument
900 return getRevision(new Version(vernum), annotate);
925 * Set annotate to true to have the lines be annotated with the
928 * @param annotate set to true to have the text be annotated
934 public Object[] getRevision(Version vernum, boolean annotate) argument
[all...]
H A DNode.java531 * @param annotate set to true to have each text line be a
538 public void patch(List original, boolean annotate) argument
582 void newpatch(List original, boolean annotate, Node root) throws InvalidFileFormatException argument
584 DeltaText dt = new DeltaText(root, this.child, annotate);
/opengrok/src/org/opensolaris/opengrok/history/
H A DRepoRepository.java119 Annotation annotate(File file, String revision) { method in class:RepoRepository
H A DRCSRepository.java78 Annotation annotate(File file, String revision) throws IOException { method in class:RCSRepository
80 return rcsFile == null ? null : annotate(file, revision, rcsFile);
83 static Annotation annotate(File file, String revision, File rcsFile) method in class:RCSRepository
H A DPerforceRepository.java69 public Annotation annotate(File file, String rev) throws IOException { method in class:PerforceRepository
83 cmd.add("annotate");
H A DAccuRevRepository.java91 public Annotation annotate(File file, String rev) throws IOException { method in class:AccuRevRepository
105 cmd.add("annotate");
H A DClearCaseRepository.java204 * @param file file to annotate
205 * @param revision revision to annotate
210 public Annotation annotate(File file, String revision) throws IOException { method in class:ClearCaseRepository
215 argv.add("annotate");
H A DSCCSRepository.java144 * @param file file to annotate
145 * @param revision revision to annotate
150 public Annotation annotate(File file, String revision) throws IOException { method in class:SCCSRepository
H A DMonotoneRepository.java149 * Pattern used to extract author/revision from hg annotate.
157 * @param file file to annotate
158 * @param revision revision to annotate
163 public Annotation annotate(File file, String revision) throws IOException { method in class:MonotoneRepository
167 cmd.add("annotate");
H A DSSCMRepository.java271 // which indicates that annotate will work
291 * @param file file to annotate
292 * @param revision revision to annotate
296 Annotation annotate(File file, String revision) throws IOException { method in class:SSCMRepository
301 argv.add("annotate");
320 "Failed annotate for: {2} \"{0}\" Exit code: {1}",
H A DBazaarRepository.java156 * @param file file to annotate
157 * @param revision revision to annotate
162 public Annotation annotate(File file, String revision) throws IOException { method in class:BazaarRepository
H A DCVSRepository.java64 * Pattern used to extract author/revision from cvs annotate.
274 Annotation annotate(File file, String revision) throws IOException { method in class:CVSRepository
278 cmd.add("annotate");
H A DHistoryGuru.java130 * @param file the file to annotate
131 * @param rev the revision to annotate (<code>null</code> means BASE)
136 public Annotation annotate(File file, String rev) throws IOException { method in class:HistoryGuru
141 ret = repo.annotate(file, rev);
290 * Check if we can annotate the specified file.
H A DRazorRepository.java76 * that other SCMS support like 'log' and 'annotate'. Also, Razor check-outs
253 Annotation annotate(File file, String revision) method in class:RazorRepository
258 return RCSRepository.annotate(file, revision, rcsFile);
264 return (new SCCSRepository()).annotate(sccsFile, revision);
H A DSubversionRepository.java359 public Annotation annotate(File file, String revision) throws IOException { method in class:SubversionRepository
372 argv.add("annotate");
H A DGitRepository.java306 * @param file file to annotate
307 * @param revision revision to annotate
312 public Annotation annotate(File file, String revision) throws IOException { method in class:GitRepository
H A DMercurialRepository.java107 * Pattern used to extract author/revision from hg annotate.
408 * @param file file to annotate
409 * @param revision revision to annotate
414 public Annotation annotate(File file, String revision) throws IOException { method in class:MercurialRepository
418 argv.add("annotate");
442 // stored in history index while annotate only needs the
H A DRepository.java174 * Checks whether this parser can annotate files.
254 * @param file the file to annotate
260 abstract Annotation annotate(File file, String revision) throws IOException; method in class:Repository
263 * Return revision for annotate view.
/opengrok/src/org/opensolaris/opengrok/web/
H A DPageConfig.java110 private Boolean annotate; field in class:PageConfig
625 public boolean annotate() { method in class:PageConfig
626 if (annotate == null) {
627 annotate = hasAnnotations()
630 return annotate;
640 if (isDir() || getResourcePath().equals("/") || !annotate()) {
648 annotation = HistoryGuru.getInstance().annotate(resourceFile, rev.isEmpty() ? null : rev);

Completed in 40 milliseconds