org.apache.abdera.model
Interface TextValue


public interface TextValue

A text value. Returned by the Abdera XPath implementation when querying for text nodes (e.g. xpath.selectNodes("//text()"); ...). There should be very little reason why an application would use this. It is provided to keep applications from having to deal directly with the underlying parser impl


Method Summary
 void discard()
          Delete this node
 javax.activation.DataHandler getDataHandler()
          A DataHandler for Base64 encoded binary data
 InputStream getInputStream()
          An InputStream used to read the text content
<T extends Base>
T
getParentElement()
          The parent element
 String getText()
          Return the text value
 

Method Detail

getDataHandler

javax.activation.DataHandler getDataHandler()
A DataHandler for Base64 encoded binary data


getInputStream

InputStream getInputStream()
An InputStream used to read the text content


getText

String getText()
Return the text value


getParentElement

<T extends Base> T getParentElement()
The parent element


discard

void discard()
Delete this node



Copyright © 2006-2010 Apache Software Foundation. All Rights Reserved.