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

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

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

Element.setText介绍

[英]Sets the text content of this element, replacing any existing children.
[中]设置此元素的文本内容,替换任何现有子元素。

代码示例

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

  1. /**
  2. * Creates a {@code <div>} with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return a {@code <div>} element.
  7. */
  8. static Element createDiv(String textContent) {
  9. return createDiv().setText(textContent);
  10. }

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

  1. /**
  2. * Creates an {@code <label>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return an {@code <label>} element.
  7. */
  8. static Element createLabel(String textContent) {
  9. return createLabel().setText(textContent);
  10. }

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

  1. /**
  2. * Creates an {@code <li>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return an {@code <li>} element.
  7. */
  8. static Element createListItem(String textContent) {
  9. return createListItem().setText(textContent);
  10. }

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

  1. /**
  2. * Creates a {@code <pre>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return a {@code <pre>} element.
  7. */
  8. static Element createPreformatted(String textContent) {
  9. return createPreformatted().setText(textContent);
  10. }

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

  1. /**
  2. * Creates an {@code <em>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return an {@code <em>} element.
  7. */
  8. static Element createEmphasis(String textContent) {
  9. return createEmphasis().setText(textContent);
  10. }

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

  1. /**
  2. * Set the current label text of this checkbox.
  3. *
  4. * @param label
  5. * the label text to set
  6. */
  7. public void setLabel(String label) {
  8. getElement().setText(label);
  9. }

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

  1. /**
  2. * Creates a {@code <h6>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return an {@code <h6>} element.
  7. */
  8. static Element createHeading6(String textContent) {
  9. return createHeading6().setText(textContent);
  10. }

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

  1. /**
  2. * Creates an {@code <option>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return an {@code <option>} element.
  7. */
  8. static Element createOption(String textContent) {
  9. return createOption().setText(textContent);
  10. }

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

  1. /**
  2. * Creates a {@code <p>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return a {@code <p>} element.
  7. */
  8. static Element createParagraph(String textContent) {
  9. return new Element(Tag.P).setText(textContent);
  10. }

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

  1. /**
  2. * Sets the label of this tab.
  3. *
  4. * @param label
  5. * the label to display
  6. */
  7. public final void setLabel(String label) {
  8. getElement().setText(label);
  9. }

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

  1. /**
  2. * Creates a {@code <h4>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return an {@code <h4>} element.
  7. */
  8. static Element createHeading4(String textContent) {
  9. return createHeading4().setText(textContent);
  10. }

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

  1. /**
  2. * Creates a {@code <h5>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return an {@code <h5>} element.
  7. */
  8. static Element createHeading5(String textContent) {
  9. return createHeading5().setText(textContent);
  10. }

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

  1. /**
  2. * Creates a {@code <strong>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return a {@code <strong>} element
  7. */
  8. static Element createStrong(String textContent) {
  9. return createStrong().setText(textContent);
  10. }

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

  1. /**
  2. * Creates a {@code <button>} with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return a {@code <button>} element.
  7. */
  8. static Element createButton(String textContent) {
  9. return createButton().setText(textContent);
  10. }

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

  1. /**
  2. * Creates a {@code <h1>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return an {@code <h1>} element.
  7. */
  8. static Element createHeading1(String textContent) {
  9. return createHeading1().setText(textContent);
  10. }

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

  1. /**
  2. * Creates a {@code <h2>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return an {@code <h2>} element.
  7. */
  8. static Element createHeading2(String textContent) {
  9. return createHeading2().setText(textContent);
  10. }

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

  1. /**
  2. * Creates a {@code <h3>} element with the given text content.
  3. *
  4. * @param textContent
  5. * the text content of the element
  6. * @return an {@code <h3>} element.
  7. */
  8. static Element createHeading3(String textContent) {
  9. return createHeading3().setText(textContent);
  10. }

代码示例来源:origin: vaadin/spring

  1. @Override
  2. public int setErrorParameter(BeforeEnterEvent event,
  3. ErrorParameter<NullPointerException> parameter) {
  4. getElement().setText("NPE is thrown");
  5. setId("npe-handle");
  6. return HttpServletResponse.SC_INTERNAL_SERVER_ERROR;
  7. }

代码示例来源: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/flow-component-demo-helpers

  1. private void addSourceCodeBlock(String text, String className) {
  2. Element pre = new Element("pre");
  3. Element code = new Element("code");
  4. pre.appendChild(code);
  5. code.setAttribute("spellcheck", "false");
  6. code.getClassList().add(className);
  7. code.setText(text);
  8. getElement().appendChild(pre);
  9. }
  10. }

相关文章