/* * Created on May 14, 2003 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package CDBuilder.couplingSyntaxEditor; import org.eclipse.jface.text.rules.IWhitespaceDetector; /** * Detects white space by using Java's white space * detector. * * @author Sherwin Sim and Lucie Zhao * @version 1 May - August 2003 * */ public class cseWhitespaceDetector implements IWhitespaceDetector { /** * * @param character the character that's being scanned * @return true if the character is a white space * */ public boolean isWhitespace(char character) { return Character.isWhitespace(character); } }