public static CodeContainer brush(String aText, Brush aBrush) {
Parser aParser = new SyntaxHighlighterParser(aBrush);
List<ParseResult> aResultList = aParser.parse(null, aText);
CodeContainer container = new CodeContainer();
int currentIndex = 0;
for (ParseResult parseResult : aResultList) {