[jdom-interest] stop jdom from escaping (creating dynamic xslstylesheet)

Jason Hunter jhunter at collab.net
Mon Jun 11 10:49:05 PDT 2001


> I can not do this because the xsl:value-of is interspersed in the text.
> 
> For example:
> You name is <xsl:value-of select="name"/>.  You are <xsl:value-of
> select="age"/> years old.

root.addContent("You are ");
root.addContent(xsl);
root.addContent(" years old");

In the object tree the value-of must be represented as an Element
object.

-jh-



More information about the jdom-interest mailing list