Package org.evokit.ui.internal.text.scanners

Examples of org.evokit.ui.internal.text.scanners.ParameterCommentScanner


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

TOP

Related Classes of org.evokit.ui.internal.text.scanners.ParameterCommentScanner

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.