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.6 2006-10-21 23:18:33 pombredanne 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 public static final String[] LEGAL_TYPES = { PHP_TEMPLATE_DATA,
38 public PHPDocumentPartitioner(IPartitionTokenScanner scanner) {
42 protected FlatNode createNode(String type, int offset, int length) {
43 if (type.equals(PHPPartitionScanner.PHP_SCRIPTING_AREA)) {
45 Assert.isTrue(offset >= 0);
47 ViewNode node = new ViewNode(type);
53 return super.createNode(type, offset, length);
57 * @see net.sf.solareclipse.text.rules.DocumentViewPartitioner#createPartitioner(String)
59 protected IDocumentPartitioner createPartitioner(String contentType) {
60 if (contentType == null) {
61 // return JavaTextTools.createHTMLPartitioner();
62 return PHPeclipsePlugin.getDefault().getJavaTextTools()
63 .getXMLTextTools().createPHPXMLPartitioner();
66 if (contentType.equals(PHPPartitionScanner.PHP_SCRIPTING_AREA)) {
67 return PHPeclipsePlugin.getDefault().getJavaTextTools()
68 .createPHPPartitioner();
74 * @see net.sf.solareclipse.text.rules.DocumentViewPartitioner#getContentType(String,
77 protected String getContentType(String parent, String view) {
79 if (view == IDocument.DEFAULT_CONTENT_TYPE) {
80 return PHP_TEMPLATE_DATA;
83 if (view == IDocument.DEFAULT_CONTENT_TYPE) {
84 return PHP_SCRIPT_CODE;
88 return super.getContentType(parent, view);
91 public String[] getLegalContentTypes() {