Hi,
I updated my sources and noticed Eclipse is reporting an error in CustomXmlDataStorage.java. Any ideas why eclipse/jdk 1.6.0_13 is reporting:
The method setTextContent(String) is undefined for the type Node
?
The interface and method certainly seem to exist in the rt.jar.
public boolean setNodeValueAtXPath(String xpath, String value, String prefixMappings) throws Docx4JException {
try {
getNamespaceContext().registerPrefixMappings(prefixMappings);
Node n = (Node)xPath.evaluate(xpath, doc, XPathConstants.NODE );
if (n==null) {
log.debug("xpath returned null");
return false;
}
// *** ...