blob: 39a9e161300583f1b3211ba221e6945b9fac8086 [file] [log] [blame]
package org.eclipse.jface.text.rules;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Defines the interface by which <code>WordRule</code>
* determines whether a given character is valid as part
* of a word in the current context.
*/
public interface IWordDetector {
/**
* Returns whether the specified character is
* valid as a subsequent character in a word.
*/
boolean isWordPart(char c);
/**
* Returns whether the specified character is
* valid as the first character in a word.
*/
boolean isWordStart(char c);
}