1 /**********************************************************************
2 Copyright (c) 2000, 2003 IBM Corp. 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://www.eclipse.org/legal/cpl-v10.html
9 IBM Corporation - Initial implementation
10 **********************************************************************/
11 package net.sourceforge.phpeclipse.phpeditor;
13 import net.sourceforge.phpdt.internal.ui.text.IPHPPartitions;
14 import net.sourceforge.phpdt.ui.text.JavaTextTools;
15 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
17 import org.eclipse.jface.text.IDocument;
18 import org.eclipse.ui.editors.text.StorageDocumentProvider;
23 public class JavaStorageDocumentProvider extends StorageDocumentProvider {
25 public JavaStorageDocumentProvider() {
30 * @see org.eclipse.ui.editors.text.StorageDocumentProvider#setupDocument(java.lang.Object,
31 * org.eclipse.jface.text.IDocument)
33 protected void setupDocument(Object element, IDocument document) {
35 if (document != null) {
36 JavaTextTools tools = PHPeclipsePlugin.getDefault()
38 tools.setupJavaDocumentPartitioner(document,
39 IPHPPartitions.PHP_PARTITIONING);
41 // tools.setupJavaDocumentPartitioner(document,
42 // IDocument.DEFAULT_CONTENT_TYPE, element); //IPHPPartitions.HTML,