/******************************************************************************* * Copyright (c) 2010, 2011 Obeo. * 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: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.docs.intent.client.ui.editor.scanner; import org.eclipse.jface.text.rules.IWhitespaceDetector; /** * Determines whether a given character is to be considered whitespace in the current context. * * @author <a href="mailto:alex.lagarde@obeo.fr">Alex Lagarde</a> */ public class IntentWhiteSpaceDetector implements IWhitespaceDetector { /** * {@inheritDoc} * * @see org.eclipse.jface.text.rules.IWhitespaceDetector#isWhitespace(char) */ public boolean isWhitespace(char c) { return c == ' ' || c == '\t' || c == '\n' || c == '\r'; } }