Removed UI.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / util / HTMLWordDetector.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/util/HTMLWordDetector.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/util/HTMLWordDetector.java
deleted file mode 100644 (file)
index 839c350..0000000
+++ /dev/null
@@ -1,34 +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
-    Klaus Hartlage - www.eclipseproject.de
-**********************************************************************/
-package net.sourceforge.phpeclipse.phpeditor.util;
-
-import org.eclipse.jface.text.rules.IWordDetector;
-
-/**
- * A Java aware word detector.
- */
-public class HTMLWordDetector implements IWordDetector {
-
-       /* (non-Javadoc)
-        * Method declared on IWordDetector.
-        */
-       public boolean isWordPart(char character) {
-               return Character.isJavaIdentifierPart(character)||(character=='/')||(character=='>');
-       }
-       
-       /* (non-Javadoc)
-        * Method declared on IWordDetector.
-        */
-       public boolean isWordStart(char character) {
-               return character=='<';
-       }
-}