1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse.ui / src / net / sourceforge / phpeclipse / phpeditor / util / PHPWordDetector.java
diff --git a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/phpeditor/util/PHPWordDetector.java b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/phpeditor/util/PHPWordDetector.java
deleted file mode 100644 (file)
index c799309..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/**********************************************************************
- Copyright (c) 2000, 2002 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
- www.phpeclipse.de
- **********************************************************************/
-package net.sourceforge.phpeclipse.phpeditor.util;
-
-import net.sourceforge.phpdt.internal.compiler.parser.Scanner;
-
-import org.eclipse.jface.text.rules.IWordDetector;
-
-/**
- * A PHP aware word detector.
- */
-public class PHPWordDetector implements IWordDetector {
-
-       /*
-        * (non-Javadoc) Method declared on IWordDetector.
-        */
-       public boolean isWordPart(char character) {
-               return Scanner.isPHPIdentifierPart(character);
-       }
-
-       /*
-        * (non-Javadoc) Method declared on IWordDetector.
-        */
-       public boolean isWordStart(char character) {
-               return Scanner.isPHPIdentOrVarStart(character);
-       }
-}