2 * Copyright (c) 2002-2004 Widespace, OU and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * Igor Malinin - initial contribution
11 * $Id: EntityRule.java,v 1.1 2004-09-02 18:28:03 jsurfer Exp $
14 package net.sourceforge.phpeclipse.xml.ui.internal.text;
16 import org.eclipse.jface.text.rules.ICharacterScanner;
17 import org.eclipse.jface.text.rules.IRule;
18 import org.eclipse.jface.text.rules.IToken;
19 import org.eclipse.jface.text.rules.Token;
22 * Rule detecting XML or DTD entities.
24 * @author Igor Malinin
26 public class EntityRule implements IRule {
28 private static NameDetector detector = new NameDetector();
34 public EntityRule(char start, IToken token) {
39 public IToken evaluate(ICharacterScanner scanner) {
40 int ch = scanner.read();
44 if (ch == ICharacterScanner.EOF) {
51 if (!detector.isWordStart((char) ch)) {
58 if (ch == ICharacterScanner.EOF) {
65 if (!detector.isWordPart((char) ch)) {
73 return Token.UNDEFINED;