blob: 4c19fe397a3fdabb8d57b5fededb892c400287d7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Mukul Gandhi, and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Mukul Gandhi - initial API and implementation
* Mukul Gandhi - bug 334842 - improving support for the data types Name, NCName, ENTITY,
* ID, IDREF and NMTOKEN.
*******************************************************************************/
package org.eclipse.wst.xml.xpath2.processor.internal.types;
import org.apache.xerces.util.XMLChar;
import org.eclipse.wst.xml.xpath2.api.ResultBuffer;
import org.eclipse.wst.xml.xpath2.api.ResultSequence;
import org.eclipse.wst.xml.xpath2.api.typesystem.TypeDefinition;
import org.eclipse.wst.xml.xpath2.processor.DynamicError;
import org.eclipse.wst.xml.xpath2.processor.internal.types.builtin.BuiltinTypeLibrary;
/**
* A representation of the Name datatype
*/
public class XSName extends XSToken {
private static final String XS_NAME = "xs:Name";
/**
* Initialises using the supplied String
*
* @param x
* String to be stored
*/
public XSName(String x) {
super(x);
}
/**
* Initialises to null
*/
public XSName() {
this(null);
}
/**
* Retrieves the datatype's full pathname
*
* @return "xs:Name" which is the datatype's full pathname
*/
public String string_type() {
return XS_NAME;
}
/**
* Retrieves the datatype's name
*
* @return "Name" which is the datatype's name
*/
public String type_name() {
return "Name";
}
/**
* Creates a new ResultSequence consisting of the extractable Name within
* the supplied ResultSequence
*
* @param arg
* The ResultSequence from which to extract the Name
* @return New ResultSequence consisting of the Name supplied
* @throws DynamicError
*/
public ResultSequence constructor(ResultSequence arg) throws DynamicError {
if (arg.empty())
return ResultBuffer.EMPTY;
AnyAtomicType aat = (AnyAtomicType) arg.first();
String strValue = aat.getStringValue();
if (!XMLChar.isValidName(strValue)) {
// invalid input
DynamicError.throw_type_error();
}
return new XSName(strValue);
}
public TypeDefinition getTypeDefinition() {
return BuiltinTypeLibrary.XS_NAME;
}
}