本文整理汇总了Java中org.intellij.lang.xpath.xslt.psi.XsltFunction类的典型用法代码示例。如果您正苦于以下问题:Java XsltFunction类的具体用法?Java XsltFunction怎么用?Java XsltFunction使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
XsltFunction类属于org.intellij.lang.xpath.xslt.psi包,在下文中一共展示了XsltFunction类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getTypeForTag
import org.intellij.lang.xpath.xslt.psi.XsltFunction; //导入依赖的package包/类
@Override
protected XPathType getTypeForTag(XmlTag tag, String attribute) {
if ("select".equals(attribute)) {
final String tagName = tag.getLocalName();
if ("sequence".equals(tagName)) {
final XPathType declaredType = XsltCodeInsightUtil.getDeclaredType(tag);
if (declaredType != null) {
return declaredType;
}
if (XsltSupport.isFunction(tag.getParentTag())) {
final XsltFunction func = XsltElementFactory.getInstance().wrapElement(tag.getParentTag(), XsltFunction.class);
return func.getReturnType();
}
return XPath2Type.SEQUENCE;
} else if ("value-of".equals(tagName) || "copy-of".equals(tagName) || "for-each".equals(tagName)) {
return XPath2Type.SEQUENCE;
}
} else if ("group-by".equals(attribute)) {
return XPath2Type.ITEM;
}
return super.getTypeForTag(tag, attribute);
}