All Downloads are FREE. Search and download functionalities are using the official Maven repository.

elemental2.dom.HTMLElement Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2018 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package elemental2.dom;

import elemental2.core.JsArray;
import elemental2.core.JsObject;
import jsinterop.annotations.JsFunction;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
import jsinterop.base.Js;
import jsinterop.base.JsPropertyMap;

@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class HTMLElement extends Element {
  @JsFunction
  public interface AttachedCallbackFn {
    Object onInvoke();
  }

  @JsFunction
  public interface ConnectedCallbackFn {
    Object onInvoke();
  }

  @JsFunction
  public interface CreatedCallbackFn {
    Object onInvoke();
  }

  @JsFunction
  public interface DetachedCallbackFn {
    Object onInvoke();
  }

  @JsFunction
  public interface DisconnectedCallbackFn {
    Object onInvoke();
  }

  @JsFunction
  public interface FormResetCallbackFn {
    Object onInvoke();
  }

  @JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
  public interface FormStateRestoreCallbackStateArrayArrayUnionType {
    @JsOverlay
    static HTMLElement.FormStateRestoreCallbackStateArrayArrayUnionType of(Object o) {
      return Js.cast(o);
    }

    @JsOverlay
    default File asFile() {
      return Js.cast(this);
    }

    @JsOverlay
    default String asString() {
      return Js.asString(this);
    }

    @JsOverlay
    default boolean isFile() {
      return (Object) this instanceof File;
    }

    @JsOverlay
    default boolean isString() {
      return (Object) this instanceof String;
    }
  }

  @JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
  public interface FormStateRestoreCallbackStateUnionType {
    @JsOverlay
    static HTMLElement.FormStateRestoreCallbackStateUnionType of(Object o) {
      return Js.cast(o);
    }

    @JsOverlay
    default File asFile() {
      return Js.cast(this);
    }

    @JsOverlay
    default JsArray>
        asJsArray() {
      return Js.cast(this);
    }

    @JsOverlay
    default String asString() {
      return Js.asString(this);
    }

    @JsOverlay
    default boolean isFile() {
      return (Object) this instanceof File;
    }

    @JsOverlay
    default boolean isJsArray() {
      return (Object) this instanceof JsArray;
    }

    @JsOverlay
    default boolean isString() {
      return (Object) this instanceof String;
    }
  }

  public static boolean formAssociated;
  public static JsArray observedAttributes;
  public HTMLElement.AttachedCallbackFn attachedCallback;
  public String className;
  public HTMLElement.ConnectedCallbackFn connectedCallback;
  public Element contextMenu;
  public HTMLElement.CreatedCallbackFn createdCallback;
  public JsPropertyMap dataset;
  public HTMLElement.DetachedCallbackFn detachedCallback;
  public String dir;
  public HTMLElement.DisconnectedCallbackFn disconnectedCallback;
  public boolean draggable;
  public JsObject dropzone;
  public HTMLElement.FormResetCallbackFn formResetCallback;
  public boolean hidden;
  public boolean inert;
  public String lang;
  public String nonce;
  public int offsetHeight;
  public int offsetLeft;
  public Element offsetParent;
  public int offsetTop;
  public int offsetWidth;
  public ShadowRoot shadowRoot;
  public boolean spellcheck;
  public CSSStyleDeclaration style;
  public int tabIndex;
  public String title;

  public native Object adoptedCallback(Document oldDocument, Document newDocument);

  public native ElementInternals attachInternals();

  public native ShadowRoot attachShadow(ShadowRootInit options);

  public native Object attributeChangedCallback(
      String attributeName, String oldValue, String newValue, String namespace);

  public native void click();

  public native ShadowRoot createShadowRoot();

  public native Object formAssociatedCallback(HTMLFormElement form);

  public native Object formDisabledCallback(boolean disabled);

  @JsOverlay
  public final Object formStateRestoreCallback(File state, String reason) {
    return formStateRestoreCallback(
        Js.uncheckedCast(state), reason);
  }

  @JsOverlay
  public final Object formStateRestoreCallback(
      HTMLElement.FormStateRestoreCallbackStateArrayArrayUnionType[][] state, String reason) {
    return formStateRestoreCallback(
        Js
            .>>
                uncheckedCast(state),
        reason);
  }

  public native Object formStateRestoreCallback(
      HTMLElement.FormStateRestoreCallbackStateUnionType state, String reason);

  @JsOverlay
  public final Object formStateRestoreCallback(
      JsArray> state,
      String reason) {
    return formStateRestoreCallback(
        Js.uncheckedCast(state), reason);
  }

  @JsOverlay
  public final Object formStateRestoreCallback(String state, String reason) {
    return formStateRestoreCallback(
        Js.uncheckedCast(state), reason);
  }

  public native NodeList getDestinationInsertionPoints();

  public native ShadowRoot webkitCreateShadowRoot();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy