blob: 2f46e41ddcc6fe55786c3612df6d3873b8e3cc5d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.html.core.internal.parser;
import java.io.Reader;
public final class NameValidator {
private static HTMLNames nameChecker = null;
/**
* Returns <code>true</code> if <code>name</code> is valid HTML name
* according to XML 1.0 rules with allowances for scripting language
* templates, <code>false</code> otherwise
*
* @param name
* name is the string to test
* @return true if valid name according to our rules, false otherwise.
*/
public synchronized static final boolean isValid(String name) {
if (nameChecker == null) {
nameChecker = initializeScanner();
}
return nameChecker.isAllowedName(name);
}
private static HTMLNames initializeScanner() {
return new HTMLNames((Reader) null);
}
/**
* Not intended to be instantiated.
*/
private NameValidator() {
super();
}
}