org.oddjob.arooa.utils.ArooaTokenizerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arooa Show documentation
Show all versions of arooa Show documentation
A Rip Off Of Ant - A drag and drop component framework.
package org.oddjob.arooa.utils;
/**
* Something capable of providing an {@link ArooaTokenizer}.
*
* @author rob
*
*/
public interface ArooaTokenizerFactory {
/**
* Provide a tokenizer.
*
* @return
*/
public ArooaTokenizer newTokenizer();
}