Package org.eclipse.jdt.internal.ui.text

Examples of org.eclipse.jdt.internal.ui.text.JavaPairMatcher


 
 
  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);   
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.ui.text.JavaPairMatcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.