protected void configureSourceViewerDecorationSupport(
SourceViewerDecorationSupport support) {
support.setMatchingCharacterPainterPreferenceKeys(PreferenceConstants.EDITOR_MATCHING_BRACKETS, PreferenceConstants.EDITOR_MATCHING_BRACKETS_COLOR);
support.setCharacterPairMatcher(new JavaPairMatcher(new char[]{ '{', '}', '(', ')', '[', ']', '<', '>' }));
super.configureSourceViewerDecorationSupport(support);
}