return valueScanner;
}
protected RuleBasedScanner getCommentScanner() {
if (commentScanner == null) {
commentScanner = new ParameterCommentScanner(colorProvider);
TextAttribute ta = new TextAttribute(colorProvider.getColor(ParameterFileColorProvider.COMMENT));
commentScanner.setDefaultReturnToken(new Token(ta));
}
return commentScanner;
}