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

/opengrok-jel/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;
42 if (!annotate)
H A DLines.java140 public Object[] textToArray(boolean annotate) argument
149 if (annotate)
165 public String toString(boolean annotate) argument
167 return Diff.arrayToString(this.textToArray(annotate));
H A DPath.java150 * @param annotate if true, then each text line is a
159 public List patch(boolean annotate) argument
164 return patch(new Lines(), annotate);
197 * @param annotate if true, then each text line is a
206 public List patch(List lines, boolean annotate) argument
215 head.patch0(lines, annotate);
221 n.patch(lines, annotate);
227 public List newpatch(List lines, boolean annotate) argument
231 if (!annotate)
244 else // annotate
[all...]
H A DTrunkNode.java171 * @param annotate True if the lines should be annotated with version numbers.
177 protected void patch0(List original, boolean annotate) argument
H A DArchive.java869 * Set annotate to true to have the lines be annotated with the
871 * @param annotate set to true to have the text be annotated
878 public Object[] getRevision(boolean annotate) argument
921 * Set annotate to true to have the lines be annotated with the
924 * @param annotate set to true to have the text be annotated
931 public Object[] getRevision(String vernum, boolean annotate) argument
937 return getRevision(new Version(vernum), annotate);
962 * Set annotate to true to have the lines be annotated with the
965 * @param annotate set to true to have the text be annotated
971 public Object[] getRevision(Version vernum, boolean annotate) argument
[all...]
H A DNode.java548 * @param annotate set to true to have each text line be a
555 public void patch(List original, boolean annotate) argument
599 void newpatch(List original, boolean annotate, Node root) throws InvalidFileFormatException argument
601 DeltaText dt = new DeltaText(root, this.child, annotate);
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DAccuRevRepository.java97 public Annotation annotate(File file, String rev) { method in class:AccuRevRepository
105 cmd.add("annotate");
131 logger.log(Level.FINE, "annotate", e);
H A DPerforceRepository.java72 public Annotation annotate(File file, String rev) throws IOException { method in class:PerforceRepository
86 cmd.add("annotate");
112 logger.log(Level.FINE, "annotate", e);
H A DRCSRepository.java94 protected Annotation annotate(File file, String revision) throws IOException { method in class:RCSRepository
96 return rcsFile == null ? null : annotate(file, revision, rcsFile);
99 static Annotation annotate(File file, String revision, File rcsFile) method in class:RCSRepository
H A DRepoRepository.java147 protected Annotation annotate(File file, String revision) { method in class:RepoRepository
H A DSCCSRepository.java146 public Annotation annotate(File file, String revision) throws IOException { method in class:SCCSRepository
H A DBazaarRepository.java156 * @param file file to annotate
157 * @param revision revision to annotate
161 public Annotation annotate(File file, String revision) throws IOException { method in class:BazaarRepository
H A DCVSRepository.java264 protected Annotation annotate(File file, String revision) throws IOException { method in class:CVSRepository
268 cmd.add("annotate");
286 /** Pattern used to extract author/revision from cvs annotate. */
H A DClearCaseRepository.java204 public Annotation annotate(File file, String revision) throws IOException { method in class:ClearCaseRepository
209 argv.add("annotate");
H A DGitRepository.java382 public Annotation annotate(File file, String revision) throws IOException { method in class:GitRepository
H A DMonotoneRepository.java152 /** Pattern used to extract author/revision from hg annotate. */
160 public Annotation annotate(File file, String revision) throws IOException { method in class:MonotoneRepository
164 cmd.add("annotate");
H A DRazorRepository.java70 * that other SCMS support like 'log' and 'annotate'. Also, Razor check-outs
273 protected Annotation annotate( File file, String revision) throws IOException { method in class:RazorRepository
277 return RCSRepository.annotate(file, revision, rcsFile);
283 return (new SCCSRepository()).annotate(sccsFile, revision);
H A DRepository.java179 * Checks whether this parser is able to annotate files. For performance
190 * @param file the file to annotate (canonical path incl. source root).
196 protected abstract Annotation annotate(File file, String revision) method in class:Repository
H A DHistoryGuru.java123 * @param file the file to annotate
124 * @param rev the revision to annotate (<code>null</code> means BASE)
129 public Annotation annotate(File file, String rev) throws IOException { method in class:HistoryGuru
134 ret = repos.annotate(file, rev);
153 // annotate
306 * Check if we can annotate the specified file. Doesn't hit the history DB
H A DMercurialRepository.java346 /** Pattern used to extract author/revision from hg annotate. */
354 public Annotation annotate(File file, String revision) throws IOException { method in class:MercurialRepository
358 argv.add("annotate");
383 // stored in history index while annotate only needs the
H A DSubversionRepository.java323 public Annotation annotate(File file, String revision) throws IOException { method in class:SubversionRepository
336 argv.add("annotate");
364 logger.log(Level.FINE, "annotate", e);
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DPageConfig.java98 private Boolean annotate; field in class:PageConfig
611 public boolean annotate() { method in class:PageConfig
612 if (annotate == null) {
613 annotate = Boolean.valueOf(hasAnnotations()
618 return annotate.booleanValue();
629 if (isDir() || getResourcePath().equals("/") || !annotate()) {
638 .annotate(resourceFile, rev.isEmpty() ? null : rev.substring(2));
/opengrok-jel/lib/
H A Djrcs.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/jrcs/ ...

Completed in 30 milliseconds