refactory: added UI removed from core plugin.
[phpeclipse.git] / net.sourceforge.phpeclipse.ui / src / net / sourceforge / phpeclipse / phpeditor / util / PHPWordDetector.java
1 /**********************************************************************
2  Copyright (c) 2000, 2002 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
7
8  Contributors:
9  IBM Corporation - Initial implementation
10  www.phpeclipse.de
11  **********************************************************************/
12 package net.sourceforge.phpeclipse.phpeditor.util;
13
14 import net.sourceforge.phpdt.internal.compiler.parser.Scanner;
15
16 import org.eclipse.jface.text.rules.IWordDetector;
17
18 /**
19  * A PHP aware word detector.
20  */
21 public class PHPWordDetector implements IWordDetector {
22
23         /*
24          * (non-Javadoc) Method declared on IWordDetector.
25          */
26         public boolean isWordPart(char character) {
27                 return Scanner.isPHPIdentifierPart(character);
28         }
29
30         /*
31          * (non-Javadoc) Method declared on IWordDetector.
32          */
33         public boolean isWordStart(char character) {
34                 return Scanner.isPHPIdentOrVarStart(character);
35         }
36 }