blob: a58bf356bacd927254dd4107fdf8198738c62573 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2009 Andrea Bittau, University College London, 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:
* Andrea Bittau - initial API and implementation from the PsychoPath XPath 2.0
* Jesper Moller- bug 275610 - Avoid big time and memory overhead for externals
* David Carver - bug 281186 - implementation of fn:id and fn:idref
*******************************************************************************/
package org.eclipse.wst.xml.xpath2.processor.internal.types;
import org.w3c.dom.*;
import org.eclipse.wst.xml.xpath2.processor.ResultSequence;
import org.eclipse.wst.xml.xpath2.processor.ResultSequenceFactory;
/**
* A representation of the TextType datatype
*/
public class TextType extends NodeType {
private static final String TEXT = "text";
private Text _value;
/**
* Initialises using the supplied parameters
*
* @param v
* The value of the TextType node
*/
public TextType(Text v) {
super(v);
_value = v;
}
/**
* Retrieves the datatype's name
*
* @return "text" which is the datatype's name
*/
@Override
public String string_type() {
return TEXT;
}
/**
* Retrieves a String representation of the actual value stored
*
* @return String representation of the actual value stored
*/
@Override
public String string_value() {
return _value.getNodeValue();
}
/**
* Creates a new ResultSequence consisting of the Text value stored
*
* @return New ResultSequence consisting of the Text value stored
*/
@Override
public ResultSequence typed_value() {
ResultSequence rs = ResultSequenceFactory.create_new();
rs.add(new XSUntypedAtomic(_value.getData()));
return rs;
}
/**
* Unsupported method for this nodetype.
*
* @return null (no user defined name for this node gets defined)
*/
@Override
public QName node_name() {
return null;
}
/**
* Will always return false;
* @since 1.1
*/
@Override
public boolean isID() {
return false;
}
/**
*
* @since 1.1
*/
@Override
public boolean isIDREF() {
return false;
}
}