1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / JavaStorageDocumentProvider.java
index a5faee3..cbecbe3 100644 (file)
@@ -1,13 +1,13 @@
 /**********************************************************************
-Copyright (c) 2000, 2003 IBM Corp. and others.
-All rights reserved. This program and the accompanying materials
-are made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-
-Contributors:
-       IBM Corporation - Initial implementation
-**********************************************************************/
+ Copyright (c) 2000, 2003 IBM Corp. and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Common Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/cpl-v10.html
+
+ Contributors:
+ IBM Corporation - Initial implementation
+ **********************************************************************/
 package net.sourceforge.phpeclipse.phpeditor;
 
 import net.sourceforge.phpdt.internal.ui.text.IPHPPartitions;
@@ -21,19 +21,26 @@ import org.eclipse.ui.editors.text.StorageDocumentProvider;
  * @since 3.0
  */
 public class JavaStorageDocumentProvider extends StorageDocumentProvider {
-       
+
        public JavaStorageDocumentProvider() {
                super();
        }
-       
+
        /*
-        * @see org.eclipse.ui.editors.text.StorageDocumentProvider#setupDocument(java.lang.Object, org.eclipse.jface.text.IDocument)
+        * @see org.eclipse.ui.editors.text.StorageDocumentProvider#setupDocument(java.lang.Object,
+        *      org.eclipse.jface.text.IDocument)
         */
        protected void setupDocument(Object element, IDocument document) {
-               
+
                if (document != null) {
-                       JavaTextTools tools= PHPeclipsePlugin.getDefault().getJavaTextTools();
-                       tools.setupJavaDocumentPartitioner(document, IPHPPartitions.HTML, element);
+                       JavaTextTools tools = PHPeclipsePlugin.getDefault()
+                                       .getJavaTextTools();
+                       tools.setupJavaDocumentPartitioner(document,
+                                       IPHPPartitions.PHP_PARTITIONING);
+
+                       // tools.setupJavaDocumentPartitioner(document,
+                       // IDocument.DEFAULT_CONTENT_TYPE, element); //IPHPPartitions.HTML,
+                       // element);
                }
        }
 }