X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/xml/ui/internal/text/NmtokenDetector.java b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/xml/ui/internal/text/NmtokenDetector.java deleted file mode 100644 index 4a3278a..0000000 --- a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/xml/ui/internal/text/NmtokenDetector.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) 2002-2004 Widespace, OU 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: - * Igor Malinin - initial contribution - * - * $Id: NmtokenDetector.java,v 1.2 2006-10-21 23:14:13 pombredanne Exp $ - */ - -package net.sourceforge.phpeclipse.xml.ui.internal.text; - -import org.eclipse.jface.text.rules.IWordDetector; - -/** - * XML Nmtoken detector. - * - * @author Igor Malinin - */ -public class NmtokenDetector implements IWordDetector { - - /** - * @see IWordDetector#isWordPart(char) - */ - public boolean isWordPart(char ch) { - if (Character.isUnicodeIdentifierPart(ch)) { - return true; - } - switch (ch) { - case '.': - case '-': - case '_': - case ':': - return false; - } - return false; - } - - /** - * @see IWordDetector#isWordStart(char) - */ - public boolean isWordStart(char ch) { - return isWordPart(ch); - } -}