package org.jmeld.util; import java.util.List; public interface Tokenizer { List<String> getTokens(String text); }