X-Git-Url: http://secure.phpeclipse.com 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 index 1e467e0..517c1c7 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/util/HTMLWordDetector.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/util/HTMLWordDetector.java @@ -1,16 +1,16 @@ package net.sourceforge.phpeclipse.phpeditor.util; /********************************************************************** -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 + 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 -**********************************************************************/ + Contributors: + IBM Corporation - Initial implementation + www.phpeclipse.de + **********************************************************************/ import net.sourceforge.phpdt.internal.compiler.parser.Scanner; @@ -21,17 +21,18 @@ import org.eclipse.jface.text.rules.IWordDetector; */ public class HTMLWordDetector implements IWordDetector { - /* (non-Javadoc) - * Method declared on IWordDetector. + /* + * (non-Javadoc) Method declared on IWordDetector. */ public boolean isWordPart(char character) { - return Scanner.isPHPIdentifierPart(character)||(character=='/')||(character=='>'); + return Scanner.isPHPIdentifierPart(character) || (character == '/') + || (character == '>'); } - - /* (non-Javadoc) - * Method declared on IWordDetector. + + /* + * (non-Javadoc) Method declared on IWordDetector. */ public boolean isWordStart(char character) { - return character=='<'; + return character == '<'; } }