Lines Matching defs:path
34 private String path;
55 * Get the path (relative from source root) where this project is located
56 * @return the relative path
59 return path;
67 return path;
89 * Set the path (relative from source root) this project is located
90 * It seems that you should ALWAYS prefix the path with current file.separator , current environment should always have it set up
91 * @param path the relative path from source sroot where this project is
94 public void setPath(String path) {
95 this.path = path;
120 * @param path the file to lookup (relative from source root)
124 public static Project getProject(String path) {
126 String lpath=path;
128 lpath = path.replace(File.separatorChar, '/');