The Source for Java Technology Collaboration
User: Password:



Evan Summers

Evan Summers's Blog

Hyper Text Processor

Posted 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.


Code Snippet

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: del.icio.us del.icio.us Digg Digg DZone DZone Furl Furl Reddit Reddit
Comments
Comments are listed in date ascending order (oldest first) | Post Comment





Powered by
Movable Type 3.01D
 Feed java.net RSS Feeds