This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Can I read information from java vector list in stylesheet?


> > > Can I read information from java vector list in stylesheet?

All the Java processors provide this capability, though the syntax
varies slightly. Here's an example in Saxon:

<xsl:stylesheet ...
  xmlns:List="java:java.util.List">

<xsl:param name="vector"/>

<xsl:template ...
  <xsl:value-of select="List:get($vector, 1)"/>

Michael Kay
Software AG
home: Michael.H.Kay@ntlworld.com
work: Michael.Kay@softwareag.com 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]