7239d1bddbf65935dde3322fb31d129c45190fee
[scannotation] / src / main / java / org / scannotation / classpath / DirectoryIteratorFactory.java
1 package org.scannotation.classpath;
2
3 import java.io.IOException;
4 import java.net.URL;
5
6 /**
7  * @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
8  * @version $Revision: 1 $
9  */
10 public interface DirectoryIteratorFactory
11 {
12    StreamIterator create(URL url, Filter filter) throws IOException;
13 }