blob: 35142f49483607eab1e933429477d8a18c8be192 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.text;
import org.eclipse.jface.text.rules.IWordDetector;
/**
* A Java aware word detector.
*/
public class JavaWordDetector implements IWordDetector {
/*
* @see IWordDetector#isWordStart
*/
public boolean isWordStart(char c) {
return Character.isJavaIdentifierStart(c);
}
/*
* @see IWordDetector#isWordPart
*/
public boolean isWordPart(char c) {
return Character.isJavaIdentifierPart(c);
}
}