1 /**2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html3 */4 package net.sourceforge.pmd.cpd;5 6 import java.io.IOException ;7 8 public interface Tokenizer {9 void tokenize(SourceCode tokens, Tokens tokenEntries) throws IOException ;10 }11