Skip to main content
summaryrefslogtreecommitdiffstats
blob: 99aff354b02af2da68a450ddafdd34030b2e2d39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.eclipse.cdt.internal.ui.text.util;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
 
import org.eclipse.jface.text.rules.IWhitespaceDetector;


/**
 * A C aware white space detector.
 */
public class CWhitespaceDetector implements IWhitespaceDetector {

	/**
	 * @see IWhitespaceDetector#isWhitespace
	 */
	public boolean isWhitespace(char c) {
		return Character.isWhitespace(c);
	}
}

Back to the top