XPath 中的工厂模式
我正在尝试实现一个访问 TextExtractor 的 toString() 方法的 XSL 样式表。我使用的解析器是 Saxon9HE。
简单类图:
AbstractText +toString() : String
Factory +load(String uri) : AbstractText // Returns a instance of a subclass
有谁知道如何在 xsl 文件中调用 toString() 吗?
谢谢, 约翰
I'm trying to implement an XSL-Stylesheet that accesses a toString()-Method of a TextExtractor. The parser I'm using is Saxon9HE.
Simple Classdiagram:
AbstractText +toString() : String
Factory +load(String uri) : AbstractText // Returns a instance of a subclass
Has anyone a clue how to call toString() within a xsl-file?
Thanks,
John
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您说的是从 XSLT 调用 Java,对吧?其规则取决于您使用的 XSLT 处理器,但您没有告诉我们。
You're talking about calling Java from XSLT, right? The rules for that depend on which XSLT processor you are using, which you haven't told us.