409410411412413414415
protected RichTextTokenizer tokenize(String xmlString) { return new RichTextTokenizerImpl<Node, Element, Text>(parseDocumentContents(xmlString)); } private Token token(RichTextTokenizer.Type type) { return new Token(type, null); }
413414415416417418419
private Token token(RichTextTokenizer.Type type) { return new Token(type, null); } private Token token(RichTextTokenizer.Type type, String data) { return new Token(type, data); }
307308309310311312313
} return mockTokenizer; } private static Token token(RichTextTokenizer.Type type, String data) { return new Token(type, data); }
311312313314315316317
private static Token token(RichTextTokenizer.Type type, String data) { return new Token(type, data); } private static Token token(RichTextTokenizer.Type type) { return new Token(type, null); }