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

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

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

Element.getText介绍

[英]Gets the text content of this element. This includes only the text from any immediate child text nodes, but ignores text inside child elements. Use #getTextRecursively() to get the full text that recursively includes the text content of the entire element tree.
[中]获取此元素的文本内容。这仅包括来自任何直接子文本节点的文本,但忽略子元素内的文本。使用#getExtracurisly()获取递归包含整个元素树的文本内容的全文。

代码示例

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

  1. /**
  2. * Gets the text content of this component. This method only considers the
  3. * text of the actual component. The text contents of any child components
  4. * or elements are not considered.
  5. *
  6. * @return the text content of this component, not <code>null</code>
  7. */
  8. default String getText() {
  9. return getElement().getText();
  10. }
  11. }

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

  1. /**
  2. * Gets the label of this tab.
  3. *
  4. * @return the label
  5. */
  6. public final String getLabel() {
  7. return getElement().getText();
  8. }

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

  1. /**
  2. * Get the current label text.
  3. *
  4. * @return the current label text
  5. */
  6. public String getLabel() {
  7. return getElement().getText();
  8. }

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

  1. /**
  2. * Gets the text of the component.
  3. *
  4. * @return the text of the component, not <code>null</code>
  5. */
  6. @Override
  7. public String getText() {
  8. return getElement().getText();
  9. }

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

  1. /**
  2. * Gets the text content of this button.
  3. * <p>
  4. * If an icon has been set for this button, this method returns the text
  5. * content wrapped in a <code>span</code>-element. Otherwise this method
  6. * returns the text in this button without considering the text in any child
  7. * components or elements.
  8. *
  9. * @return the text content of this component, not <code>null</code>
  10. */
  11. @Override
  12. public String getText() {
  13. if (span == null) {
  14. return super.getText();
  15. } else {
  16. return span.getText();
  17. }
  18. }

代码示例来源: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: appreciated/vaadin-app-layout

  1. @Override
  2. public String getText() {
  3. return item != null
  4. ? item.getText()
  5. : getElement().getText();
  6. }

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

  1. return new TextNode(element.getText(), document.baseUri());

代码示例来源:origin: appreciated/vaadin-app-layout

  1. public void setIcon(String icon) {
  2. if (item == null) {
  3. item = new AppMenuIconItem();
  4. item.setText(getElement().getText());
  5. getElement().setText(null);
  6. add(item);
  7. }
  8. item.setIcon(icon);
  9. }

相关文章