Searched defs:filePath (Results 1 - 2 of 2) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/management/client/
H A DConfigurationsFrame.java68 private String filePath = ""; field in class:ConfigurationsFrame
120 filePath = (String)con.getMBeanServerConnection().getAttribute(this.managementObjectName, "FileLogPath");
121 this.logFilePathField.setText(filePath);
762 if (!filePath.equals(this.logFilePathField.getText())) {
765 filePath = this.logFilePathField.getText();
/opengrok/src/org/opensolaris/opengrok/history/
H A DJDBCHistoryCache.java446 String filePath = toUnixPath(file);
448 return getRelativePath(filePath, rootPath);
454 * @param filePath the canonical path of the file to get the relative path
459 private static String getRelativePath(String filePath, String rootPath) { argument
460 assert filePath.startsWith(rootPath);
461 return filePath.substring(rootPath.length());
615 final String filePath = getSourceRootRelativePath(file);
627 ps.setString(2, filePath);
633 ps.setString(2, getParentPath(filePath));
634 ps.setString(3, getBaseName(filePath));
[all...]

Completed in 13 milliseconds