Package org.kacprzak.eclipse.django_editor.editors

Source Code of org.kacprzak.eclipse.django_editor.editors.DjangoDocumentProvider

package org.kacprzak.eclipse.django_editor.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 org.kacprzak.eclipse.django_editor.IDjangoPartitions;

/**
* @author Zbigniew Kacprzak
*/
public class DjangoDocumentProvider extends FileDocumentProvider {

  protected IDocument createDocument(Object element) throws CoreException {
    IDocument document = super.createDocument(element);
    if (document != null) {
      IDocumentPartitioner partitioner = createPartitioner();
      partitioner.connect(document);
      document.setDocumentPartitioner(partitioner);
    }
    return document;
  }
  private FastPartitioner createPartitioner() {
    return new FastPartitioner( new DjangoPartitionScanner(), IDjangoPartitions.CONFIGURED_CONTENT_TYPES);
  }
}
TOP

Related Classes of org.kacprzak.eclipse.django_editor.editors.DjangoDocumentProvider

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.