*/
 package net.sourceforge.phpeclipse.phpeditor.php;
 
-import org.eclipse.jface.text.*;
+import net.sourceforge.phpdt.internal.ui.text.*;
+
+import org.eclipse.jface.text.IDocument;
 
 /**
  * @author slanger
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.4 $
  */
 public class PHPPartition extends Partition
 {
         super(
             document,
             new char[] { '<', '>' },
-            IPHPPartitionScannerConstants.PHP,
+            IPHPPartitions.PHP_PARTITIONING,
             parentPartition);
     }
 
      */
     protected boolean allowedPartition(String type)
     {
-        if(type.equals(IPHPPartitionScannerConstants.PHP_MULTILINE_COMMENT))
+        if(type.equals(IPHPPartitions.PHP_PHPDOC_COMMENT))
                return true;
                
         return false;