com.vaadin.flow.dom.Element类的使用及代码示例

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

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

Element介绍

[英]A class representing an element in the DOM.

Contains methods for updating and querying various parts of the element, such as attributes.
[中]表示DOM中元素的类。
包含更新和查询元素各个部分(如属性)的方法。

代码示例

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

  1. /**
  2. * Selects a tab based on its zero-based index.
  3. *
  4. * @param selectedIndex
  5. * the zero-based index of the selected tab, -1 to unselect all
  6. */
  7. public void setSelectedIndex(int selectedIndex) {
  8. getElement().setProperty(SELECTED, selectedIndex);
  9. }

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

  1. /**
  2. * Gets the value of the given property as a string.
  3. *
  4. * @param name
  5. * the property name, not <code>null</code>
  6. * @return the property value, or <code>null</code> if no value is set
  7. */
  8. public String getProperty(String name) {
  9. return getProperty(name, null);
  10. }

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

  1. /**
  2. * Sets the content of the toolbar.
  3. * Any content with the attribute `new-button` triggers a new item creation.
  4. *
  5. * @param components the content to be set
  6. */
  7. public void setToolbar(Component... components) {
  8. final Element[] existingToolbarElements = getElement().getChildren()
  9. .filter(e -> TOOLBAR_SLOT_NAME.equals(e.getAttribute(SLOT_KEY)))
  10. .toArray(Element[]::new);
  11. getElement().removeChild(existingToolbarElements);
  12. final Element[] newToolbarElements = Arrays.stream(components)
  13. .map(Component::getElement)
  14. .map(e -> e.setAttribute(SLOT_KEY, TOOLBAR_SLOT_NAME))
  15. .toArray(Element[]::new);
  16. getElement().appendChild(newToolbarElements);
  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/flow-server

  1. /**
  2. * Creates an {@code &lt;input>} element with the given type.
  3. *
  4. * @param type
  5. * the type attribute for the element
  6. * @return an {@code &lt;input>} element
  7. */
  8. static Element createInput(String type) {
  9. return new Element(Tag.INPUT).setAttribute("type", type);
  10. }

代码示例来源: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-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. }

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

  1. /**
  2. * Removes all contents from this component, this includes child components,
  3. * text content as well as child elements that have been added directly to
  4. * this component using the {@link Element} API.
  5. */
  6. protected void removeAll() {
  7. getElement().getChildren()
  8. .forEach(child -> child.removeAttribute("slot"));
  9. getElement().removeAllChildren();
  10. }
  11. }

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

  1. /**
  2. * Sets the grid
  3. *
  4. * @param grid the grid
  5. */
  6. public void setGrid(Grid<E> grid) {
  7. Objects.requireNonNull(grid, "Grid cannot be null");
  8. if (this.grid != null && this.grid.getElement().getParent() == getElement()) {
  9. this.grid.getElement().removeFromParent();
  10. }
  11. this.grid = grid;
  12. grid.getElement().setAttribute(SLOT_KEY, GRID_SLOT_NAME);
  13. // It might already have a parent e.g when injected from a template
  14. if (grid.getElement().getParent() == null) {
  15. getElement().appendChild(grid.getElement());
  16. }
  17. }

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

  1. /**
  2. * <p>
  3. * Description copied from corresponding location in WebComponent:
  4. * </p>
  5. * <p>
  6. * Opens the dropdown.
  7. * </p>
  8. */
  9. protected void open() {
  10. getElement().callFunction("open");
  11. }

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

  1. public AppMenuItem() {
  2. getElement().getClassList().add("app-menu-item");
  3. getElement().setAttribute("href", "javascript:void(0)");
  4. getElement().getStyle().set("position", "relative")
  5. .set("padding", "var(--app-layout-menu-button-padding)")
  6. .set("margin", "var(--app-layout-menu-button-margin)")
  7. .set("border-radius", "var(--app-layout-menu-button-border-radius)")
  8. .set("--lumo-primary-text-color", "var(--app-layout-app-color)")
  9. .set("text-decoration", "none");
  10. getElement().appendChild(new PaperRipple().getElement());
  11. }

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

  1. /**
  2. * Sets the element into branding area
  3. *
  4. * @param branding {@link Element} to set into branding area
  5. */
  6. public void setBranding(Element branding) {
  7. Objects.requireNonNull(branding, "Branding cannot be null");
  8. removeBranding();
  9. this.branding = branding;
  10. branding.setAttribute("slot", "branding");
  11. getElement().appendChild(branding);
  12. }

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

  1. VaadinItem(String key, T item) {
  2. this.item = item;
  3. getElement().setProperty("value", key);
  4. getElement().setAttribute("value", key);
  5. }

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

  1. @Override
  2. public void accept(UI ui) {
  3. if (this == deferredJob) {
  4. String appId = ui.getInternals().getAppId();
  5. int nodeId = container.getNode().getId();
  6. String template = String.format(
  7. "<flow-component-renderer appid=\"%s\" nodeid=\"%s\"></flow-component-renderer>",
  8. appId, nodeId);
  9. templateElement.setProperty("innerHTML", template);
  10. }
  11. }
  12. }

代码示例来源:origin: com.vaadin/flow-component-demo-helpers

  1. /**
  2. * Default constructor. Creates an empty navigation bar.
  3. */
  4. public DemoNavigationBar() {
  5. getElement().appendChild(list);
  6. }

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

  1. private void wrapTextInSpan() {
  2. String text = getText();
  3. getElement().removeChild(getTextNodes());
  4. span = ElementFactory.createSpan(text);
  5. if (iconAfterText) {
  6. getElement().insertChild(0, span);
  7. } else {
  8. getElement().appendChild(span);
  9. }
  10. }

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

  1. private void registerValidation() {
  2. if (validationRegistration != null) {
  3. validationRegistration.remove();
  4. }
  5. validationRegistration = getElement().addPropertyChangeListener(VALUE,
  6. validationListener);
  7. }

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

  1. /**
  2. * Creates a new empty router link.
  3. */
  4. public RouterLink() {
  5. getElement()
  6. .setAttribute(ApplicationConstants.ROUTER_LINK_ATTRIBUTE, "");
  7. }

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

  1. @Override
  2. public void removeChild(StateNode node, Element child) {
  3. ElementChildrenList childrenFeature = getChildrenFeature(node);
  4. int pos = childrenFeature.indexOf(child.getNode());
  5. if (pos == -1) {
  6. throw new IllegalArgumentException("Not in the list");
  7. }
  8. childrenFeature.remove(pos);
  9. }

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

  1. private void updateThemeAttribute() {
  2. if (themes.isEmpty()) {
  3. element.removeAttribute(THEME_ATTRIBUTE_NAME);
  4. } else {
  5. element.setAttribute(THEME_ATTRIBUTE_NAME, themes.stream()
  6. .collect(Collectors.joining(THEME_NAMES_DELIMITER)));
  7. }
  8. }

相关文章