Lines Matching refs:descPath

74     public DescEntry[] getDescriptionFor(String job, String descPath,  in getDescriptionFor()  argument
90 DescEntry entry = getDescriptionForSingleJob(job, descPath, in getDescriptionFor()
109 DescEntry entry = getDescriptionForSingleJob(partjob, descPath, in getDescriptionFor()
143 String[] scenario = createScenario(descPath, job, debug); in getDescriptionFor()
152 scenario[i].substring(3).trim(), descPath, debug); in getDescriptionFor()
169 return getScenario(job, descPath, debug); in getDescriptionFor()
181 (String) subs.get(i), descPath, debug); in getDescriptionFor()
192 protected DescEntry getDescriptionForSingleJob(String job, String descPath, in getDescriptionForSingleJob() argument
220 if (descPath != null) in getDescriptionForSingleJob()
224 System.out.println("## reading from File " + descPath); in getDescriptionForSingleJob()
227 entry = getFromDirectory(descPath, job, debug); in getDescriptionForSingleJob()
651 protected static DescEntry getFromDirectory(String descPath, String entry, in getFromDirectory() argument
685 System.out.println("Parsing Description Path: " + descPath); in getFromDirectory()
690 File modPath = new File(descPath + fs + module); in getFromDirectory()
717 String aUrl = descPath + fs + module + fs + found; in getFromDirectory()
769 protected String[] createScenario(String descPath, String job, in createScenario() argument
774 if (descPath != null) in createScenario()
778 System.out.println("## reading from File " + descPath); in createScenario()
781 scenario = getScenarioFromDirectory(descPath, job, debug); in createScenario()
796 protected String[] getScenarioFromDirectory(String descPath, String job, in getScenarioFromDirectory() argument
811 File dirs = new File(descPath); in getScenarioFromDirectory()
827 … File moduleDir = new File(descPath + System.getProperty("file.separator") + modules[i]); in getScenarioFromDirectory()