155156157158159160161162163164165
throw new IllegalArgumentException("No such webapps resource "+r); if (!r.isDirectory()) throw new IllegalArgumentException("Not directory webapps resource "+r); String[] files=r.list(); files: for (int f=0; files!=null&&f<files.length; f++) { String context=files[f];
11681169117011711172117311741175117611771178
if (resource!=null && resource.exists()) { if (!path.endsWith(URIUtil.SLASH)) path=path+URIUtil.SLASH; String[] l=resource.list(); if (l!=null) { HashSet set = new HashSet(); for(int i=0;i<l.length;i++) set.add(path+l[i]);
11691170117111721173117411751176117711781179