com.vaadin.flow.dom.Element.isTextNode()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(3.2k)|赞(0)|评价(0)|浏览(264)

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

Element.isTextNode介绍

[英]Checks whether this element represents a text node.
[中]检查此元素是否表示文本节点。

代码示例

代码示例来源:origin: com.vaadin/flow-server

  1. /**
  2. * Checks whether the given element is a <code>script</code> or not.
  3. *
  4. * @param element
  5. * the element to check
  6. * @return <code>true</code> if a script, <code>false</code> if not
  7. */
  8. public static boolean isScript(Element element) {
  9. return !element.isTextNode()
  10. && "script".equalsIgnoreCase(element.getTag());
  11. }

代码示例来源:origin: com.vaadin/flow-server

  1. /**
  2. * Checks whether the given element is a custom element or not.
  3. * <p>
  4. * Custom elements (Web Components) are recognized by having at least one
  5. * dash in the tag name.
  6. *
  7. * @param element
  8. * the element to check
  9. * @return <code>true</code> if a custom element, <code>false</code> if not
  10. */
  11. public static boolean isCustomElement(Element element) {
  12. return !element.isTextNode() && element.getTag().contains("-");
  13. }

代码示例来源:origin: com.vaadin/vaadin-button-flow

  1. private Element[] getNonTextNodes() {
  2. return getElement().getChildren()
  3. .filter(element -> !element.isTextNode())
  4. .toArray(Element[]::new);
  5. }

代码示例来源:origin: com.vaadin/flow-server

  1. private void appendTextContent(StringBuilder builder,
  2. Predicate<? super Element> childFilter) {
  3. if (isTextNode()) {
  4. builder.append(getText());
  5. } else {
  6. getChildren().filter(childFilter)
  7. .forEach(e -> e.appendTextContent(builder, childFilter));
  8. }
  9. }

代码示例来源:origin: com.vaadin/flow-server

  1. /**
  2. * Returns the text content for this element by including children matching
  3. * the given filter.
  4. *
  5. * @param childFilter
  6. * the filter used to decide whether to include a child or not
  7. * @return the text content for this element and any matching child nodes
  8. * recursively, never {@code null}
  9. */
  10. private String getTextContent(Predicate<? super Element> childFilter) {
  11. if (isTextNode()) {
  12. return getStateProvider().getTextContent(getNode());
  13. } else {
  14. StringBuilder builder = new StringBuilder();
  15. appendTextContent(builder, childFilter);
  16. return builder.toString();
  17. }
  18. }

代码示例来源:origin: com.vaadin/flow-server

  1. /**
  2. * Sets the text content of this element, replacing any existing children.
  3. *
  4. * @param textContent
  5. * the text content to set, <code>null</code> is interpreted as
  6. * an empty string
  7. * @return this element
  8. */
  9. public Element setText(String textContent) {
  10. if (textContent == null) {
  11. // Browsers work this way
  12. textContent = "";
  13. }
  14. if (isTextNode()) {
  15. getStateProvider().setTextContent(getNode(), textContent);
  16. } else {
  17. if (textContent.isEmpty()) {
  18. removeAllChildren();
  19. } else {
  20. setTextContent(textContent);
  21. }
  22. }
  23. return this;
  24. }

代码示例来源:origin: com.vaadin/flow-server

  1. if (element.isTextNode()) {
  2. return new TextNode(element.getText(), document.baseUri());

代码示例来源:origin: com.vaadin/flow-server

  1. private void setTextContent(String textContent) {
  2. Element child;
  3. if (getChildCount() == 1 && getChild(0).isTextNode()) {
  4. child = getChild(0).setText(textContent);
  5. } else {
  6. child = createText(textContent);
  7. }
  8. removeAllChildren();
  9. appendChild(child);
  10. }

代码示例来源:origin: com.vaadin/vaadin-button-flow

  1. if (icon != null && icon.getElement().isTextNode()) {
  2. throw new IllegalArgumentException(
  3. "Text node can't be used as an icon.");

相关文章