* Create a new title formatter class using the specified format and the default data provider
*
* @param format The formatting string to use when doing the formatting
*/
public TitleFormat(String format) {
parser = new TitleFormatParser(new AttributeDataProvider(), new CommonTokenStream(new TitleFormatLexer(new ANTLRStringStream(format))));
}