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

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

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

Element.<init>介绍

[英]Private constructor for initializing with an existing node and state provider.
[中]用于使用现有节点和状态提供程序初始化的专用构造函数。

代码示例

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

  1. /**
  2. * Creates a {@code &lt;div>} element.
  3. *
  4. * @return a {@code &lt;div>} element.
  5. */
  6. static Element createDiv() {
  7. return new Element(Tag.DIV);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;li>} element.
  3. *
  4. * @return an {@code &lt;li>} element.
  5. */
  6. static Element createListItem() {
  7. return new Element(Tag.LI);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;label>} element.
  3. *
  4. * @return an {@code &lt;label>} element.
  5. */
  6. static Element createLabel() {
  7. return new Element(Tag.LABEL);
  8. }

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

  1. /**
  2. * Creates a {@code &lt;select>} element.
  3. *
  4. * @return a {@code &lt;select>} element.
  5. */
  6. static Element createSelect() {
  7. return new Element(Tag.SELECT);
  8. }

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

  1. /**
  2. * Creates a {@code &lt;strong>} element.
  3. *
  4. * @return a {@code &lt;strong>} element.
  5. */
  6. static Element createStrong() {
  7. return new Element(Tag.STRONG);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;h1>} element.
  3. *
  4. * @return an {@code &lt;h1>} element.
  5. */
  6. static Element createHeading1() {
  7. return new Element(Tag.H1);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;h2>} element.
  3. *
  4. * @return an {@code &lt;h2>} element.
  5. */
  6. static Element createHeading2() {
  7. return new Element(Tag.H2);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;h3>} element.
  3. *
  4. * @return an {@code &lt;h3>} element.
  5. */
  6. static Element createHeading3() {
  7. return new Element(Tag.H3);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;h5>} element.
  3. *
  4. * @return an {@code &lt;h5>} element.
  5. */
  6. static Element createHeading5() {
  7. return new Element(Tag.H5);
  8. }

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

  1. /**
  2. * Creates a {@code &lt;ul>} element.
  3. *
  4. * @return a {@code &lt;ul>} element.
  5. */
  6. static Element createUnorderedList() {
  7. return new Element(Tag.UL);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;em>} element.
  3. *
  4. * @return an {@code &lt;em>} element.
  5. */
  6. static Element createEmphasis() {
  7. return new Element(Tag.EM);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;a>} element.
  3. *
  4. * @return an {@code &lt;a>} element.
  5. */
  6. static Element createAnchor() {
  7. return new Element(Tag.A);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;h4>} element.
  3. *
  4. * @return an {@code &lt;h4>} element.
  5. */
  6. static Element createHeading4() {
  7. return new Element(Tag.H4);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;h6>} element.
  3. *
  4. * @return an {@code &lt;h6>} element.
  5. */
  6. static Element createHeading6() {
  7. return new Element(Tag.H6);
  8. }

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

  1. /**
  2. * Creates an {@code &lt;input>} element.
  3. *
  4. * @return an {@code &lt;input>} element.
  5. */
  6. static Element createInput() {
  7. return new Element(Tag.INPUT);
  8. }

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

  1. /**
  2. * Creates a {@code &lt;p>} element.
  3. *
  4. * @return a {@code &lt;p>} element.
  5. */
  6. static Element createParagraph() {
  7. return new Element(Tag.P);
  8. }

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

  1. /**
  2. * Creates a {@code &lt;pre>} element.
  3. *
  4. * @return a {@code &lt;pre>} element.
  5. */
  6. static Element createPreformatted() {
  7. return new Element(Tag.PRE);
  8. }

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

  1. /**
  2. * Creates a {@code &lt;span>} element.
  3. *
  4. * @return a {@code &lt;span>} element.
  5. */
  6. static Element createSpan() {
  7. return new Element(Tag.SPAN);
  8. }

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

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

相关文章