Package com.cuubez.visualizer.scanner.reader

Examples of com.cuubez.visualizer.scanner.reader.FileReader


public class ConfigurationScanner extends FileScanner {

    public InputStream scan(String applicationPath) throws IOException {

        URL resource = findResources(applicationPath);
        FileReader itr = getFileReader(resource, new XmlFileFilter());


        return itr.next();

    }
View Full Code Here


    public List<Class<?>> scan(String applicationPath) throws IOException {

            List<Class<?>> classes = new ArrayList<Class<?>>();

            URL resource = findResources(applicationPath);
            FileReader itr = getFileReader(resource, new ClassFileFilter());

            InputStream is;
            while ((is = itr.next()) != null) {
                // make a data input stream
                DataInputStream dstream = new DataInputStream(
                        new BufferedInputStream(is));

                try {
View Full Code Here

TOP

Related Classes of com.cuubez.visualizer.scanner.reader.FileReader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.