Package org.jboss.ide.eclipse.freemarker.editor.partitions

Examples of org.jboss.ide.eclipse.freemarker.editor.partitions.PartitionScanner


  protected IDocument createDocument(Object element) throws CoreException {
    IDocument document = super.createDocument(element);
    if (document != null) {
      IDocumentPartitioner partitioner =
        new FastPartitioner(
          new PartitionScanner(),
          PartitionType.PARTITION_TYPES);
      partitioner.connect(document);
      document.setDocumentPartitioner(partitioner);
    }
    return document;
View Full Code Here

TOP

Related Classes of org.jboss.ide.eclipse.freemarker.editor.partitions.PartitionScanner

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.