Package com.google.eclipse.protobuf.ui.preferences.editor.numerictag

Examples of com.google.eclipse.protobuf.ui.preferences.editor.numerictag.NumericTagPreferences


  private void updateIndexInCommentOfParent(EObject target, long index, IXtextDocument document) {
    EObject parent = target.eContainer();
    if (parent == null) {
      return;
    }
    NumericTagPreferences preferences = new NumericTagPreferences(storeAccess);
    for (String pattern : preferences.patterns()) {
      Pair<INode, Matcher> match = commentNodesFinder.matchingCommentNode(parent, pattern);
      if (match == null) {
        return;
      }
      String original = match.getSecond().group();
View Full Code Here

TOP

Related Classes of com.google.eclipse.protobuf.ui.preferences.editor.numerictag.NumericTagPreferences

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.