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

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

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

Element.createText介绍

[英]Creates a text node with the given text.
[中]使用给定文本创建文本节点。

代码示例

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

  1. /**
  2. * Creates an instance using the given text.
  3. *
  4. * @param text
  5. * the text to show
  6. */
  7. public Text(String text) {
  8. super(Element.createText(text));
  9. }

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

  1. IconComponent(String text) {
  2. super(Element.createText(text));
  3. }
  4. }

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

  1. private void reportException(Exception exception, String path,
  2. String exceptionText) {
  3. getElement().appendChild(Element.createText(exceptionText));
  4. VaadinService vaadinService = VaadinService.getCurrent();
  5. // Check that we have a vaadinService as else we will fail on a NPE and
  6. // the stacktrace we actually got will disappear and getting a NPE is
  7. // confusing.
  8. boolean productionMode = vaadinService != null && vaadinService
  9. .getDeploymentConfiguration().isProductionMode();
  10. if (!productionMode) {
  11. checkLogBinding();
  12. printStacktrace(exception);
  13. }
  14. getLogger().error(
  15. "There was an exception while trying to navigate to '{}'", path,
  16. exception);
  17. }

代码示例来源: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. span.setText(text);
  2. } else if (iconComponent == null) {
  3. getElement().appendChild(Element.createText(text));
  4. } else {
  5. span = ElementFactory.createSpan(text);

相关文章