Home | History | Annotate | Download | only in config

Lines Matching refs:subPath

154      * @param subPath where to look for configuration. Can be null.
157 public static Set<String> getConfigNamesFromDirs(String subPath, List<File> dirs) {
158 Set<File> res = getConfigNamesFileFromDirs(subPath, dirs);
170 * @param subPath The location where to look for configuration. Can be null.
174 public static Set<File> getConfigNamesFileFromDirs(String subPath, List<File> dirs) {
178 return getConfigNamesFileFromDirs(subPath, dirs, patterns);
184 * @param subPath The location where to look for configuration. Can be null.
190 String subPath, List<File> dirs, List<String> configNamePatterns) {
193 if (subPath != null) {
194 dir = new File(dir, subPath);