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

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

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

Element.getParentNode介绍

暂无

代码示例

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

  1. /**
  2. * Gets the parent element.
  3. * <p>
  4. * The method may return {@code null} if the parent is not an element but a
  5. * {@link Node}.
  6. *
  7. * @see #getParentNode()
  8. *
  9. * @return the parent element or null if this element does not have a parent
  10. * or the parent is not an element
  11. */
  12. public Element getParent() {
  13. Node<?> parent = getParentNode();
  14. if (parent instanceof Element) {
  15. return (Element) parent;
  16. }
  17. return null;
  18. }

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

  1. /**
  2. * Ensures that the {@code child} has the correct parent.
  3. * <p>
  4. * Default implementation doesn't do anything. Subclasses may override the
  5. * method to implement their own behavior.
  6. *
  7. * @param child
  8. * the element to check for its parent
  9. * @param internalCheck
  10. * whether to use assertions or throw an exception on failure
  11. */
  12. protected void ensureChildHasParent(Element child, boolean internalCheck) {
  13. if (!Objects.equals(this, child.getParentNode())) {
  14. if (internalCheck) {
  15. assert false : "Child should have this element as a parent";
  16. } else {
  17. throw new IllegalArgumentException(
  18. "Child should have this element as a parent");
  19. }
  20. }
  21. }

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

  1. /**
  2. * Removes this element from its parent.
  3. * <p>
  4. * Has no effect if the element does not have a parent
  5. *
  6. * @return this element
  7. */
  8. public Element removeFromParent() {
  9. Node<?> parent = getParentNode();
  10. if (parent != null) {
  11. parent.removeChild(this);
  12. }
  13. return this;
  14. }

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

  1. /**
  2. * Gets the UI this component is attached to.
  3. *
  4. * @return an optional UI component, or an empty optional if this component
  5. * is not attached to a UI
  6. */
  7. public Optional<UI> getUI() {
  8. Optional<Component> parent = getParent();
  9. if (parent.isPresent()) {
  10. return parent.flatMap(Component::getUI);
  11. } else if (getElement().getParentNode() instanceof ShadowRoot) {
  12. parent = ComponentUtil.findParentComponent(
  13. ((ShadowRoot) getElement().getParentNode()).getHost());
  14. return parent.flatMap(Component::getUI);
  15. }
  16. return Optional.empty();
  17. }

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

  1. /**
  2. * Returns the index of the specified {@code child} in the children list, or
  3. * -1 if this list does not contain the {@code child}.
  4. *
  5. * @param child
  6. * the child element
  7. * @return index of the {@code child} or -1 if it's not a child
  8. */
  9. public int indexOfChild(Element child) {
  10. if (child == null) {
  11. throw new IllegalArgumentException(
  12. "Child parameter cannot be null");
  13. }
  14. if (!equals(child.getParentNode())) {
  15. return -1;
  16. }
  17. for (int i = 0; i < getChildCount(); i++) {
  18. Element element = getChild(i);
  19. if (element.equals(child)) {
  20. return i;
  21. }
  22. }
  23. return -1;
  24. }

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

  1. "Element to insert must not be null");
  2. Node<?> parentNode = child.getParentNode();
  3. if (parentNode != null) {
  4. throw new IllegalArgumentException(

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

  1. "Element to insert must not be null");
  2. if (equals(child.getParentNode())) {
  3. int childIndex = indexOfChild(child);
  4. if (childIndex == insertIndex) {

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

  1. /**
  2. * Assigns the tooltip to a specific component.
  3. * <p>
  4. * The tooltip is removed from the parent after the component that the tooltip is
  5. * attached is detached.
  6. *
  7. * @param component the tooltip is attached to this component
  8. * @param appended <code>true</code> the tooltip is automatically appended
  9. * to the component's father.<code>false</code>,
  10. * it is not appended. It should be added to a layout manually.
  11. */
  12. public void attachToComponent(Component component, boolean appended) {
  13. Objects.requireNonNull(component);
  14. getElement().getNode().runWhenAttached(ui -> {
  15. ui.getPage().executeJavaScript("$0.targetElement = $1;",
  16. getElement(), component.getElement()
  17. );
  18. });
  19. if ( appended ){
  20. component.getElement().getNode().runWhenAttached(ui -> {
  21. component.getElement().getParentNode().appendChild(getElement());
  22. });
  23. }
  24. if ( detachedRegistration != null ){
  25. detachedRegistration.remove();
  26. }
  27. detachedRegistration = component.addDetachListener(event -> {
  28. this.getElement().removeFromParent();
  29. });
  30. }

相关文章