|
|
|||||
Evan Summers's BlogHyper Text ProcessorPosted by evanx on March 22, 2007 at 09:19 AM | Comments (0)
In the HTML Builder prequel, we generated a HTML artifacts for QHyperTextProcessorProperties. So let's meet this QHyperTextProcessor itself, even if it's messy and not generally useful, but just a hack to serve the random purposes of this author, for this so-called trilogy.
QHyperTextProcessor processes a document in toto, given it's text.
public class QHyperTextProcessor { protected QHyperTextProcessorProperties properties = dependencyManager.getInstance(QHyperTextProcessorProperties.class); protected String text; protected QStringBuilder stringBuilder = new QStringBuilder(); protected QTextState state = noState; public QHyperTextProcessor(String text) { this.text = text; } ... public String processText() { for (String string : stringHelper.splitString(text, "\n")) { try { processTextLine(string); } catch (Throwable e) { throw new QWrappedRuntimeException(e, null, string); } } return stringBuilder.toString(); } } where we split the text up into lines, and invoke processTextLine() with each line of text in the file.
Bookmark blog post: CommentsComments are listed in date ascending order (oldest first) | Post Comment | |||||
|
|