Examples of PresentationReconciler


Examples of org.eclipse.jface.text.presentation.PresentationReconciler

    return scanner;
  }

  public IPresentationReconciler getPresentationReconciler(
      ISourceViewer sourceViewer) {
    PresentationReconciler reconciler = new PresentationReconciler();

    DefaultDamagerRepairer dr = new DefaultDamagerRepairer(getQvtScanner());
    reconciler.setDamager(dr, IDocument.DEFAULT_CONTENT_TYPE);
    reconciler.setRepairer(dr, IDocument.DEFAULT_CONTENT_TYPE);
    NonRuleBasedDamagerRepairer ndr = new NonRuleBasedDamagerRepairer(
        new TextAttribute(colorManager
            .getColor(IQVTColorConstants.QVT_COMMENT)));
    reconciler.setDamager(ndr, QVTPartitionScanner.MM_DECLARATION);
    reconciler.setRepairer(ndr, QVTPartitionScanner.MM_DECLARATION);
    return reconciler;
  }
View Full Code Here

Examples of org.eclipse.jface.text.presentation.PresentationReconciler

    }
    return tagScanner;
  }

  public IPresentationReconciler getPresentationReconciler(ISourceViewer sourceViewer) {
    PresentationReconciler reconciler = new PresentationReconciler();

    DefaultDamagerRepairer dr =
      new DefaultDamagerRepairer(getGherkinTagScanner());
    reconciler.setDamager(dr, GherkinPartitionScanner.GHERKIN_TAG);
    reconciler.setRepairer(dr, GherkinPartitionScanner.GHERKIN_TAG);

    dr = new GherkinDamagerRepairer(getGherkinScanner());
    reconciler.setDamager(dr, IDocument.DEFAULT_CONTENT_TYPE);
    reconciler.setRepairer(dr, IDocument.DEFAULT_CONTENT_TYPE);

    NonRuleBasedDamagerRepairer ndr =
      new NonRuleBasedDamagerRepairer(
        new TextAttribute(
          colorManager.getColor(IGherkinColorConstants.GHERKIN_COMMENT)));
    reconciler.setDamager(ndr, GherkinPartitionScanner.GHERKIN_COMMENT);
    reconciler.setRepairer(ndr, GherkinPartitionScanner.GHERKIN_COMMENT);

    return reconciler;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.