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

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

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

Element.getNode介绍

暂无

代码示例

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

  1. /**
  2. * Get the enabled state of the element.
  3. * <p>
  4. * Object may be enabled by itself by but if its ascendant is disabled then
  5. * it's considered as (implicitly) disabled.
  6. *
  7. *
  8. * @return {@code true} if node is enabled, {@code false} otherwise
  9. */
  10. public boolean isEnabled() {
  11. return getNode().isEnabled();
  12. }

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

  1. /**
  2. * Checks whether this element represents a text node.
  3. *
  4. * @return <code>true</code> if this element is a text node; otherwise
  5. * <code>false</code>
  6. */
  7. public boolean isTextNode() {
  8. return getStateProvider().isTextNode(getNode());
  9. }

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

  1. /**
  2. * Gets the element visibility value.
  3. *
  4. * @return {@code true} if the element is visible, {@code false} otherwise
  5. */
  6. public boolean isVisible() {
  7. return getStateProvider().isVisible(getNode());
  8. }

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

  1. /**
  2. * Gets the shadow root of the element, if any.
  3. *
  4. * @return an optional shadow root node, or an empty optional if no shadow
  5. * root has been attached
  6. */
  7. public Optional<ShadowRoot> getShadowRoot() {
  8. StateNode shadowRoot = getStateProvider().getShadowRoot(getNode());
  9. if (shadowRoot == null) {
  10. return Optional.empty();
  11. }
  12. return Optional.of(ShadowRoot.get(shadowRoot));
  13. }

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

  1. /**
  2. * Gets the style instance for managing element inline styles.
  3. *
  4. * @return the style object for the element
  5. */
  6. public Style getStyle() {
  7. return getStateProvider().getStyle(getNode());
  8. }

代码示例来源: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. @Override
  2. public void appendVirtualChild(StateNode node, Element child, String type,
  3. String payload) {
  4. if (node.hasFeature(VirtualChildrenList.class)) {
  5. node.getFeature(VirtualChildrenList.class).append(child.getNode(),
  6. type, payload);
  7. } else {
  8. throw new UnsupportedOperationException();
  9. }
  10. }

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

  1. private void setupTemplate(Element owner, SimpleValueRendering rendering,
  2. DataKeyMapper<SOURCE> keyMapper) {
  3. owner.getNode()
  4. .runWhenAttached(ui -> ui.getInternals().getStateTree()
  5. .beforeClientResponse(owner.getNode(),
  6. context -> setupTemplateWhenAttached(owner,
  7. rendering, keyMapper)));
  8. }

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

  1. /**
  2. * Runs the given action right before the next response during which this
  3. * element is attached.
  4. *
  5. * @param action
  6. * the action to run
  7. */
  8. private void runBeforeAttachedResponse(SerializableConsumer<UI> action) {
  9. getNode().runWhenAttached(
  10. ui -> ui.getInternals().getStateTree().beforeClientResponse(
  11. getNode(), context -> action.accept(context.getUI())));
  12. }

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

  1. /**
  2. * Sets the element visibility value.
  3. *
  4. * @param visible
  5. * the element visibility value
  6. * @return this element
  7. */
  8. public Element setVisible(boolean visible) {
  9. getStateProvider().setVisible(getNode(), visible);
  10. return getSelf();
  11. }

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

  1. @Override
  2. public void insertChild(StateNode node, int index, Element child) {
  3. assert index >= 0;
  4. assert index <= getChildCount(node); // == if adding as last
  5. getChildrenFeature(node).add(index, child.getNode());
  6. }

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

  1. private Element setRawProperty(String name, Serializable value) {
  2. verifySetPropertyName(name);
  3. if ("innerHTML".equals(name)) {
  4. removeAllChildren();
  5. }
  6. getStateProvider().setProperty(getNode(), name, value, true);
  7. return this;
  8. }

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

  1. /**
  2. * Creates an element using the given tag name.
  3. *
  4. * @param tag
  5. * the tag name of the element. Must be a non-empty string and
  6. * can contain letters, numbers and dashes ({@literal -})
  7. */
  8. public Element(String tag) {
  9. super(createStateNode(tag), BasicElementStateProvider.get());
  10. assert getNode() != null;
  11. assert getStateProvider() != null;
  12. }

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

  1. private void runBeforeClientResponse(SerializableConsumer<UI> command) {
  2. getElement().getNode().runWhenAttached(ui -> ui
  3. .beforeClientResponse(this, context -> command.accept(ui)));
  4. }
  5. }

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

  1. private void attachComponentTemplate() {
  2. deferredJob = new AttachComponentTemplate();
  3. getElement().getNode().runWhenAttached(ui -> ui
  4. .beforeClientResponse(this, context -> deferredJob.accept(ui)));
  5. }
  6. }

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

  1. private void ensureAttached() {
  2. if (getElement().getNode().getParent() == null) {
  3. UI ui = getCurrentUI();
  4. ui.beforeClientResponse(ui, context -> {
  5. ui.add(this);
  6. autoAddedToTheUi = true;
  7. });
  8. }
  9. }
  10. }

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

  1. private void showTab(String tabUrl) {
  2. Div tab = tabComponents.get(tabUrl);
  3. if (tab != null) {
  4. container.removeAll();
  5. container.add(tab);
  6. navBar.setActive(getTabUrl(tabUrl));
  7. tab.getElement().getNode().runWhenAttached(ui -> ui.getPage()
  8. .executeJavaScript("Prism.highlightAll();"));
  9. }
  10. }

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

  1. @Override
  2. protected void onAttach(AttachEvent attachEvent) {
  3. getElement().getNode().runWhenAttached(ui -> ui.beforeClientResponse(
  4. this,
  5. context -> ui.getPage().executeJavaScript(
  6. "$0.addEventListener('items-changed', "
  7. + "function(){ this.$server.updateSelectedTab(true); });",
  8. getElement())));
  9. }

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

  1. private static void execJS(Component component, String js) {
  2. StateNode node = component.getElement().getNode();
  3. node.runWhenAttached(ui -> ui.getInternals().getStateTree()
  4. .beforeClientResponse(node, context -> ui.getPage()
  5. .executeJavaScript(js, component.getElement())));
  6. }

相关文章