blob: 1b5bc9514ef006e9e7ff515f279d1775c11972ee [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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 API and implementation
*******************************************************************************/
package org.eclipse.ui.examples.javaeditor.util;
import org.eclipse.jface.text.rules.IWhitespaceDetector;
/**
* A java aware white space detector.
*/
public class JavaWhitespaceDetector implements IWhitespaceDetector {
/* (non-Javadoc)
* Method declared on IWhitespaceDetector
*/
public boolean isWhitespace(char character) {
return Character.isWhitespace(character);
}
}