All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.reflections.scanners.ResourcesScanner Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.reflections.scanners;

import org.reflections.vfs.Vfs;

/** collects all resources that are not classes in a collection
 * 

key: value - {web.xml: WEB-INF/web.xml} */ public class ResourcesScanner extends AbstractScanner { public boolean acceptsInput(String file) { return !file.endsWith(".class"); //not a class } @Override public Object scan(Vfs.File file, Object classObject) { getStore().put(file.getName(), file.getRelativePath()); return classObject; } public void scan(Object cls) { throw new UnsupportedOperationException(); //shouldn't get here } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy