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

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

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

Element.hasAttribute介绍

[英]Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise.
[中]当在此元素上指定了具有给定名称的属性或具有默认值时,返回true,否则返回false

代码示例

代码示例来源:origin: spring-projects/spring-framework

  1. @Override
  2. protected String getBeanClassName(Element element) {
  3. if (element.hasAttribute(WEAVER_CLASS_ATTRIBUTE)) {
  4. return element.getAttribute(WEAVER_CLASS_ATTRIBUTE);
  5. }
  6. return DEFAULT_LOAD_TIME_WEAVER_CLASS_NAME;
  7. }

代码示例来源:origin: marytts/marytts

  1. public short acceptNode(Node n) {
  2. if (!(n instanceof Element))
  3. return NodeFilter.FILTER_SKIP;
  4. Element e = (Element) n;
  5. if (e.getTagName().equals(MaryXML.TOKEN) && e.hasAttribute("ending"))
  6. return NodeFilter.FILTER_ACCEPT;
  7. return NodeFilter.FILTER_SKIP;
  8. }
  9. }, true);

代码示例来源:origin: marytts/marytts

  1. protected void setPh(Element t, String ph) {
  2. if (!t.getTagName().equals(MaryXML.TOKEN))
  3. throw new DOMException(DOMException.INVALID_ACCESS_ERR, "Only t elements allowed, received " + t.getTagName() + ".");
  4. if (t.hasAttribute("ph")) {
  5. String prevPh = t.getAttribute("ph");
  6. // In previous sampa, replace star with sampa:
  7. String newPh = prevPh.replaceFirst("\\*", ph);
  8. t.setAttribute("ph", newPh);
  9. } else {
  10. t.setAttribute("ph", ph);
  11. }
  12. }

代码示例来源:origin: ehcache/ehcache3

  1. @Override
  2. public ServiceCreationConfiguration<Jsr107Service> parseServiceCreationConfiguration(final Element fragment, ClassLoader classLoader) {
  3. boolean jsr107CompliantAtomics = true;
  4. ConfigurationElementState enableManagementAll = ConfigurationElementState.UNSPECIFIED;
  5. ConfigurationElementState enableStatisticsAll = ConfigurationElementState.UNSPECIFIED;
  6. if (fragment.hasAttribute(JSR_107_COMPLIANT_ATOMICS_ATTRIBUTE)) {
  7. jsr107CompliantAtomics = parseBoolean(fragment.getAttribute(JSR_107_COMPLIANT_ATOMICS_ATTRIBUTE));
  8. }
  9. if (fragment.hasAttribute(ENABLE_MANAGEMENT_ALL_ATTRIBUTE)) {
  10. enableManagementAll = parseBoolean(fragment.getAttribute(ENABLE_MANAGEMENT_ALL_ATTRIBUTE)) ? ConfigurationElementState.ENABLED : ConfigurationElementState.DISABLED;
  11. }
  12. if (fragment.hasAttribute(ENABLE_STATISTICS_ALL_ATTRIBUTE)) {
  13. enableStatisticsAll = parseBoolean(fragment.getAttribute(ENABLE_STATISTICS_ALL_ATTRIBUTE)) ? ConfigurationElementState.ENABLED : ConfigurationElementState.DISABLED;
  14. }
  15. final String defaultTemplate = fragment.getAttribute(DEFAULT_TEMPLATE_ATTRIBUTE);
  16. final HashMap<String, String> templates = new HashMap<>();
  17. final NodeList childNodes = fragment.getChildNodes();
  18. for (int i = 0; i < childNodes.getLength(); i++) {
  19. final Node node = childNodes.item(i);
  20. if (node.getNodeType() == Node.ELEMENT_NODE) {
  21. final Element item = (Element)node;
  22. templates.put(item.getAttribute(CACHE_NAME_ATTRIBUTE), item.getAttribute(TEMPLATE_NAME_ATTRIBUTE));
  23. }
  24. }
  25. return new Jsr107Configuration(defaultTemplate, templates, jsr107CompliantAtomics, enableManagementAll, enableStatisticsAll);
  26. }

代码示例来源:origin: marytts/marytts

  1. private void createSubStructure(Element token, AllophoneSet allophoneSet) {
  2. String phone = token.getAttribute("ph");
  3. if (phone.equals(""))
  4. return; // nothing to do
  5. if (token.getElementsByTagName(MaryXML.SYLLABLE).getLength() > 0) {
  6. return; // there is already a substructure under this token; nothing to do
  7. String volumeString = prosody.getAttribute("volume");
  8. int volume = -1;
  9. try {
  10. if (token.hasAttribute("accent")) {
  11. syllable.setAttribute("accent", token.getAttribute("accent"));

代码示例来源:origin: alibaba/cobar

  1. private void loadSchemas(Element root) {
  2. NodeList list = root.getElementsByTagName("schema");
  3. for (int i = 0, n = list.getLength(); i < n; i++) {
  4. Element schemaElement = (Element) list.item(i);
  5. String name = schemaElement.getAttribute("name");
  6. String dataNode = schemaElement.getAttribute("dataNode");
  7. // 在非空的情况下检查dataNode是否存在
  8. if (dataNode != null && dataNode.length() != 0) {
  9. checkDataNodeExists(dataNode);
  10. } else {
  11. dataNode = "";// 确保非空
  12. }
  13. String group = "default";
  14. if (schemaElement.hasAttribute("group")) {
  15. group = schemaElement.getAttribute("group").trim();
  16. }
  17. Map<String, TableConfig> tables = loadTables(schemaElement);
  18. if (schemas.containsKey(name)) {
  19. throw new ConfigException("schema " + name + " duplicated!");
  20. }
  21. boolean keepSqlSchema = false;
  22. if (schemaElement.hasAttribute("keepSqlSchema")) {
  23. keepSqlSchema = Boolean.parseBoolean(schemaElement.getAttribute("keepSqlSchema").trim());
  24. }
  25. schemas.put(name, new SchemaConfig(name, dataNode, group, keepSqlSchema, tables));
  26. }
  27. }

代码示例来源:origin: marytts/marytts

  1. protected void setPh(Element t, String ph) {
  2. if (!t.getTagName().equals(MaryXML.TOKEN))
  3. throw new DOMException(DOMException.INVALID_ACCESS_ERR, "Only t elements allowed, received " + t.getTagName() + ".");
  4. if (t.hasAttribute("ph")) {
  5. String prevPh = t.getAttribute("ph");
  6. // In previous sampa, replace star with sampa:
  7. String newPh = prevPh.replaceFirst("\\*", ph);
  8. t.setAttribute("ph", newPh);
  9. } else {
  10. t.setAttribute("ph", ph);
  11. }
  12. }

代码示例来源:origin: spring-projects/spring-framework

  1. static String extractCacheManager(Element element) {
  2. return (element.hasAttribute(CacheNamespaceHandler.CACHE_MANAGER_ATTRIBUTE) ?
  3. element.getAttribute(CacheNamespaceHandler.CACHE_MANAGER_ATTRIBUTE) :
  4. CacheNamespaceHandler.DEFAULT_CACHE_MANAGER_BEAN_NAME);
  5. }

代码示例来源:origin: marytts/marytts

  1. boolean hasRateAttribute = e.hasAttribute("rate");
  2. boolean hasContourAttribute = e.hasAttribute("contour");
  3. boolean hasPitchAttribute = e.hasAttribute("pitch");
  4. if (nl.getLength() == 0) {
  5. continue;
  6. applySpeechRateSpecifications(nl, e.getAttribute("rate"));
  7. baseF0Contour = applyPitchSpecifications(nl, baseF0Contour, e.getAttribute("pitch"));
  8. baseF0Contour = applyContourSpecifications(nl, baseF0Contour, e.getAttribute("contour"));

代码示例来源:origin: marytts/marytts

  1. public short acceptNode(Node n) {
  2. if (!(n instanceof Element))
  3. return NodeFilter.FILTER_SKIP;
  4. Element e = (Element) n;
  5. if (e.getTagName().equals(MaryXML.TOKEN) && e.hasAttribute("ending"))
  6. return NodeFilter.FILTER_ACCEPT;
  7. return NodeFilter.FILTER_SKIP;
  8. }
  9. }, true);

代码示例来源:origin: pmd/pmd

  1. /**
  2. * Check whether the given ruleName is contained in the given ruleset.
  3. *
  4. * @param ruleSetReferenceId the ruleset to check
  5. * @param ruleName the rule name to search for
  6. *
  7. * @return {@code true} if the ruleName exists
  8. */
  9. private boolean containsRule(RuleSetReferenceId ruleSetReferenceId, String ruleName) {
  10. boolean found = false;
  11. try (InputStream ruleSet = ruleSetReferenceId.getInputStream(resourceLoader)) {
  12. DocumentBuilder builder = createDocumentBuilder();
  13. Document document = builder.parse(ruleSet);
  14. Element ruleSetElement = document.getDocumentElement();
  15. NodeList rules = ruleSetElement.getElementsByTagName("rule");
  16. for (int i = 0; i < rules.getLength(); i++) {
  17. Element rule = (Element) rules.item(i);
  18. if (rule.hasAttribute("name") && rule.getAttribute("name").equals(ruleName)) {
  19. found = true;
  20. break;
  21. }
  22. }
  23. } catch (Exception e) {
  24. throw new RuntimeException(e);
  25. }
  26. return found;
  27. }

代码示例来源:origin: marytts/marytts

  1. protected void setPh(Element t, String ph) {
  2. if (!t.getTagName().equals(MaryXML.TOKEN))
  3. throw new DOMException(DOMException.INVALID_ACCESS_ERR, "Only t elements allowed, received " + t.getTagName() + ".");
  4. if (t.hasAttribute("ph")) {
  5. String prevPh = t.getAttribute("ph");
  6. // In previous sampa, replace star with sampa:
  7. String newPh = prevPh.replaceFirst("\\*", ph);
  8. t.setAttribute("ph", newPh);
  9. } else {
  10. t.setAttribute("ph", ph);
  11. }
  12. }

代码示例来源:origin: spring-projects/spring-framework

  1. static String getTransactionManagerName(Element element) {
  2. return (element.hasAttribute(TRANSACTION_MANAGER_ATTRIBUTE) ?
  3. element.getAttribute(TRANSACTION_MANAGER_ATTRIBUTE) : DEFAULT_TRANSACTION_MANAGER_BEAN_NAME);
  4. }

代码示例来源:origin: marytts/marytts

  1. boolean hasRateAttribute = e.hasAttribute("rate");
  2. boolean hasContourAttribute = e.hasAttribute("contour");
  3. boolean hasPitchAttribute = e.hasAttribute("pitch");
  4. if (nl.getLength() == 0) {
  5. continue;
  6. applySpeechRateSpecifications(nl, e.getAttribute("rate"));
  7. baseF0Contour = applyPitchSpecifications(nl, baseF0Contour, e.getAttribute("pitch"));
  8. baseF0Contour = applyContourSpecifications(nl, baseF0Contour, e.getAttribute("contour"));

代码示例来源:origin: marytts/marytts

  1. public Element getElement(Target target) {
  2. Element segment = target.getMaryxmlElement();
  3. if (segment == null)
  4. return null;
  5. Element sentence = (Element) MaryDomUtils.getAncestor(segment, MaryXML.SENTENCE);
  6. if (sentence == null)
  7. return null;
  8. TreeWalker tw = MaryDomUtils.createTreeWalker(sentence, MaryXML.TOKEN);
  9. Element lastWord = null;
  10. Element lastToken = (Element) tw.lastChild();
  11. // The last word is the lastToken which has a "ph" attribute:
  12. while (lastToken != null) {
  13. if (lastToken.hasAttribute("ph")) {
  14. lastWord = lastToken;
  15. break;
  16. }
  17. lastToken = (Element) tw.previousNode();
  18. }
  19. if (lastWord != null) {
  20. assert lastWord.getTagName().equals(MaryXML.TOKEN) : "Unexpected tag name: expected " + MaryXML.TOKEN + ", got "
  21. + lastWord.getTagName();
  22. }
  23. return lastWord;
  24. }
  25. }

代码示例来源:origin: marytts/marytts

  1. for (int i = 0; i < nl.getLength(); i++) {
  2. Element e = (Element) nl.item(i);
  3. if (!e.hasAttribute("d")) {
  4. continue;
  5. double durAttribute = new Double(e.getAttribute("d")).doubleValue();
  6. double newDurAttribute = durAttribute + (incriment * percentage * durAttribute / 100);
  7. e.setAttribute("d", newDurAttribute + "");
  8. Element e = (Element) nl.item(0);
  9. for (int i = 0; (nd = (Element) nit.nextNode()) != null; i++) {
  10. if ("boundary".equals(nd.getNodeName())) {
  11. if (nd.hasAttribute("duration")) {
  12. duration += new Double(nd.getAttribute("duration")).doubleValue();
  13. if (nd.hasAttribute("d")) {
  14. duration += new Double(nd.getAttribute("d")).doubleValue();

代码示例来源:origin: marytts/marytts

  1. protected void setPh(Element t, String ph) {
  2. if (!t.getTagName().equals(MaryXML.TOKEN))
  3. throw new DOMException(DOMException.INVALID_ACCESS_ERR, "Only t elements allowed, received " + t.getTagName() + ".");
  4. if (t.hasAttribute("ph")) {
  5. String prevPh = t.getAttribute("ph");
  6. // In previous sampa, replace star with sampa:
  7. String newPh = prevPh.replaceFirst("\\*", ph);
  8. t.setAttribute("ph", newPh);
  9. } else {
  10. t.setAttribute("ph", ph);
  11. }
  12. }

代码示例来源:origin: spring-projects/spring-framework

  1. @Nullable
  2. private RuntimeBeanReference getMessageCodesResolver(Element element) {
  3. if (element.hasAttribute("message-codes-resolver")) {
  4. return new RuntimeBeanReference(element.getAttribute("message-codes-resolver"));
  5. }
  6. else {
  7. return null;
  8. }
  9. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. eRoot.getElementsByTagName(NODE_WORD).getLength() == 0) {
  2. String posStr = getPOS(eRoot);
  3. posStr = treeNormalizer.normalizeNonterminal(posStr);
  4. boolean isMWE = rootLabel.equals("w") && eRoot.hasAttribute(ATTR_POS);
  5. if(isMWE)
  6. rootLabel = eRoot.getAttribute(ATTR_POS).trim();

代码示例来源:origin: marytts/marytts

  1. public Element getElement(Target target) {
  2. Element segment = target.getMaryxmlElement();
  3. if (segment == null)
  4. return null;
  5. Element sentence = (Element) MaryDomUtils.getAncestor(segment, MaryXML.SENTENCE);
  6. if (sentence == null)
  7. return null;
  8. TreeWalker tw = MaryDomUtils.createTreeWalker(sentence, MaryXML.TOKEN);
  9. Element lastWord = null;
  10. Element lastToken = (Element) tw.lastChild();
  11. // The last word is the lastToken which has a "ph" attribute:
  12. while (lastToken != null) {
  13. if (lastToken.hasAttribute("ph")) {
  14. lastWord = lastToken;
  15. break;
  16. }
  17. lastToken = (Element) tw.previousNode();
  18. }
  19. if (lastWord != null) {
  20. assert lastWord.getTagName().equals(MaryXML.TOKEN) : "Unexpected tag name: expected " + MaryXML.TOKEN + ", got "
  21. + lastWord.getTagName();
  22. }
  23. return lastWord;
  24. }
  25. }

相关文章