Searched defs:filename (Results 1 - 11 of 11) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DCtags.java67 * Set the filename, which should be passed to ctag's --options=... switch.
68 * @param filename filename to use. If {@code null}, ctags gets called
72 public void setOptionsFile(String filename) { argument
73 optionsFile = filename;
/opengrok-jel/src/org/opensolaris/opengrok/management/
H A DManagementMBean.java48 * @param filename String name with full path of configurationfile
50 public void setConfigurationFile(String filename); argument
H A DManagement.java352 public void setConfigurationFile(String filename) { argument
353 configurationFile = filename;
/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DHit.java35 * Holds value of property filename.
37 private String filename; field in class:Hit
79 * @param filename The name of the file this hit represents
85 public Hit(String filename, String line, String lineno, boolean binary, boolean alt) { argument
86 if (filename != null) {
87 File file = new File(filename);
88 this.path = filename;
89 this.filename = file.getName();
102 * Getter for property filename.
104 * @return Value of property filename
133 setFilename(String filename) argument
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DHistoryContext.java85 * Obtain the history for the source file <var>filename</var> and append
88 * @param filename the source file for which the history should be fetched
94 public boolean getContext(String filename, String path, List<Hit> hits) argument
100 File f = new File(filename);
106 * Obtain the history for the source file <var>parent/filename</var> and
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DAnnotation.java46 private final String filename; field in class:Annotation
51 * @param filename the basename of the associated file.
53 public Annotation(String filename) { argument
54 this.filename = filename;
278 * @return a filename
282 return filename;
291 .append("{\"uri\":\"").append(Util.uriEncodePath(filename))
H A DSubversionRepository.java185 String filename = "";
187 filename = abs.substring(directoryName.length() + 1);
209 cmd.add(escapeFileName(filename));
224 String filename = (new File(parent, basename)).getAbsolutePath()
236 cmd.add(escapeFileName(filename));
286 AnnotateHandler(String filename) { argument
287 annotation = new Annotation(filename);
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DArchive.java180 protected String filename = "__unknown__,v"; field in class:Archive
244 this.filename = fname;
256 this.filename = new File(path).getPath();
257 ArchiveParser.load(this, this.filename);
275 this.filename = path;
290 * Save the archive to a file and the the Archives filename
302 this.filename = new File(path).getPath();
1170 filename,
1171 new File(filename).getName(),
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DUtil.java933 * @param filename the basename of the file to dump.
939 public static boolean dump(Writer out, File dir, String filename, argument
942 return dump(out, new File(dir, filename), compressed);
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java1207 * @return {@code null} if not set, the options filename otherwise.
1216 * @param filename the options filename to use. Might be {@code null}.
1218 public void setCtagsOptionsFile(String filename) { argument
1219 this.ctagsOptionsFile = filename;
/opengrok-jel/lib/
H A Djrcs.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/jrcs/ ...

Completed in 44 milliseconds