Home | History | Annotate | Download | only in runner

Lines Matching full:path

25     /** scanned class path */
39 * Constructs a TestCaseLoader. It scans the class path
43 this(System.getProperty("java.class.path"));
47 * Constructs a TestCaseLoader. It scans the class path
56 String separator= System.getProperty("path.separator");
113 String path= (String) fPathItems.elementAt(i);
115 if (isJar(path)) {
116 data= loadJarData(path, fileName);
118 data= loadFileData(path, fileName);
132 private byte[] loadFileData(String path, String fileName) {
133 File file= new File(path, fileName);
157 private byte[] loadJarData(String path, String fileName) {
160 File archive= new File(path);
216 String path= p.getProperty(key);
217 path= path.trim();
218 if (path.endsWith("*"))
219 path= path.substring(0, path.length()-1);
220 if (path.length() > 0)
221 fExcluded.addElement(path);