1 /**********************************************************************
2 Copyright (c) 2002 Widespace, OU and others.
3 All rights reserved. This program and the accompanying materials
4 are made available under the terms of the Common Public License v1.0
5 which accompanies this distribution, and is available at
6 http://solareclipse.sourceforge.net/legal/cpl-v10.html
9 Igor Malinin - initial contribution
11 $Id: PHPDocumentPartitioner.java,v 1.2 2004-11-12 20:17:10 axelcl Exp $
12 **********************************************************************/
13 package net.sourceforge.phpeclipse.phpeditor.php;
15 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
16 import net.sourceforge.phpeclipse.ui.text.rules.FlatNode;
17 import net.sourceforge.phpeclipse.ui.text.rules.MultiViewPartitioner;
18 import net.sourceforge.phpeclipse.ui.text.rules.ViewNode;
20 import org.eclipse.jface.text.Assert;
21 import org.eclipse.jface.text.IDocument;
22 import org.eclipse.jface.text.IDocumentPartitioner;
23 import org.eclipse.jface.text.rules.IPartitionTokenScanner;
28 * @author Igor Malinin
30 public class PHPDocumentPartitioner extends MultiViewPartitioner {
31 public static final String PHP_TEMPLATE_DATA = "__php_template_data";
33 public static final String PHP_SCRIPT_CODE = "__php_script_code";
35 private IPartitionTokenScanner scriptScanner;
37 public PHPDocumentPartitioner(IPartitionTokenScanner scanner, IPartitionTokenScanner scriptScanner) {
40 this.scriptScanner = scriptScanner;
43 protected FlatNode createNode(String type, int offset, int length) {
44 if (type.equals(PHPPartitionScanner.PHP_SCRIPTING_AREA)) {
46 Assert.isTrue(offset >= 0);
48 ViewNode node = new ViewNode(type);
54 return super.createNode(type, offset, length);
58 * @see net.sf.solareclipse.text.rules.DocumentViewPartitioner#createPartitioner(String)
60 protected IDocumentPartitioner createPartitioner(String contentType) {
61 if (contentType == null) {
62 // return JavaTextTools.createHTMLPartitioner();
63 return PHPeclipsePlugin.getDefault().getJavaTextTools().getXMLTextTools().createXMLPartitioner();
66 if (contentType.equals(PHPPartitionScanner.PHP_SCRIPTING_AREA)) {
67 return PHPeclipsePlugin.getDefault().getJavaTextTools().createPHPPartitioner();
73 * @see net.sf.solareclipse.text.rules.DocumentViewPartitioner#getContentType(String, String)
75 protected String getContentType(String parent, String view) {
77 if (view == IDocument.DEFAULT_CONTENT_TYPE) {
78 return PHP_TEMPLATE_DATA;
81 if (view == IDocument.DEFAULT_CONTENT_TYPE) {
82 return PHP_SCRIPT_CODE;
86 return super.getContentType(parent, view);