/* * @(#)$Id: NameType.java,v 1.15 2002/11/07 16:49:29 kk122374 Exp $ * * Copyright 2001 Sun Microsystems, Inc. All Rights Reserved. * * This software is the proprietary information of Sun Microsystems, Inc. * Use is subject to license terms. * */ package com.sun.msv.datatype.xsd; import org.relaxng.datatype.ValidationContext; /** * "Name" type. * * type of the value object is <code>java.lang.String</code>. * See http://www.w3.org/TR/xmlschema-2/#Name for the spec * * @author <a href="mailto:kohsuke.kawaguchi@eng.sun.com">Kohsuke KAWAGUCHI</a> */ public class NameType extends TokenType { public static final NameType theInstance = new NameType(); private NameType() { super("Name",false); } final public XSDatatype getBaseType() { return TokenType.theInstance; } public Object _createValue( String content, ValidationContext context ) { if(XmlNames.isName(content)) return content; else return null; } }