Package fitedit.editors

Source Code of fitedit.editors.FitDocumentProvider

package fitedit.editors;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IDocumentPartitioner;
import org.eclipse.jface.text.rules.FastPartitioner;
import org.eclipse.ui.editors.text.FileDocumentProvider;

import fitedit.editors.syntaxrules.FitSourcePartitionScanner;

public class FitDocumentProvider extends FileDocumentProvider {

  protected IDocument createDocument(Object element) throws CoreException {
    IDocument document = super.createDocument(element);
    if (document != null) {
      IDocumentPartitioner partitioner =
        new FastPartitioner(
          new FitSourcePartitionScanner(),
          new String[] {
            IDocument.DEFAULT_CONTENT_TYPE,
            FitSourcePartitionScanner.FIT_COMMENT });
      partitioner.connect(document);
      document.setDocumentPartitioner(partitioner);
    }
    return document;
 
 
}
TOP

Related Classes of fitedit.editors.FitDocumentProvider

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.