org.w3c.dom.Element.isSupported()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(157)

本文整理了Java中org.w3c.dom.Element.isSupported()方法的一些代码示例,展示了Element.isSupported()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Element.isSupported()方法的具体详情如下:
包路径:org.w3c.dom.Element
类名称:Element
方法名:isSupported

Element.isSupported介绍

暂无

代码示例

代码示例来源:origin: apache/servicemix-bundles

@Override
public boolean isSupported(String feature, String version) {
  return element.isSupported(feature, version);
}

代码示例来源:origin: xyz.cofe/common

@Override
public boolean isSupported(String feature, String version) {
  return element.isSupported(feature, version);
}

代码示例来源:origin: org.opensingular/singular-commons

/**
 * @see org.w3c.dom.Node#isSupported(String, String)
 */
@Override
public boolean isSupported(String arg0, String arg1) {
  return original.get().isSupported(arg0, arg1);
}

代码示例来源:origin: org.opensingular/singular-commons

/**
 * @see org.w3c.dom.Node#isSupported(String, String)
 */
public boolean isSupported(String arg0, String arg1) {
  return getCurrentInternal().isSupported(arg0, arg1);
}

代码示例来源:origin: org.opensingular/form-core

/**
 * @see org.w3c.dom.Node#isSupported(String, String)
 */
public boolean isSupported(String arg0, String arg1) {
  return getAtualInterno().isSupported(arg0, arg1);
}

代码示例来源:origin: org.opensingular/form-core

/**
 * @see org.w3c.dom.Node#isSupported(String, String)
 */
@Override
public boolean isSupported(String arg0, String arg1) {
  return original.get().isSupported(arg0, arg1);
}

代码示例来源:origin: Geomatys/geotoolkit

@Override
public boolean isSupported(String feature, String version) {
  final Element elem = getElement();
  return elem != null ? elem.isSupported(feature, version) : Boolean.FALSE;
}

代码示例来源:origin: org.apache.ws.commons.axiom/dom-testsuite

for (int indexN10063 = 0; indexN10063 < featuresXML.size(); indexN10063++) {
   featureXML = (String) featuresXML.get(indexN10063);
success = element.isSupported(featureXML, version);
 assertTrue("nodeissupported01_XML1", success);
 success = element.isSupported(featureXML, version1);
 assertTrue("nodeissupported01_XML2", success);
success = element.isSupported(featureCore, version);
 assertTrue("nodeissupported01_Core1", success);
 success = element.isSupported(featureCore, version1);
 success = element.isSupported(featureCore, version2);
 assertTrue("nodeissupported01_Core3", success);

相关文章

微信公众号

最新文章

更多