01: /** 02: * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 03: */package net.sourceforge.pmd.cpd; 04: 05: import java.io.IOException; 06: 07: public interface Tokenizer { 08: void tokenize(SourceCode tokens, Tokens tokenEntries) 09: throws IOException; 10: }