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

xyz.jsinterop.client.dom.IDBDatabase Maven / Gradle / Ivy

The newest version!
package xyz.jsinterop.client.dom;

/*
 * #%L
 * jsinterop
 * %%
 * Copyright (C) 2016 Norbert Sándor
 * %%
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 * #L%
 */

import jsinterop.annotations.JsMethod;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;

@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public interface IDBDatabase extends EventTarget {
	@JsProperty
	public abstract String getName();

	@JsProperty
	public abstract void setName(final String value);

	@JsProperty
	public abstract DOMStringList getObjectStoreNames();

	@JsProperty
	public abstract void setObjectStoreNames(final DOMStringList value);

	@JsProperty
	public abstract EventListener getOnabort();

	@JsProperty
	public abstract void setOnabort(final EventListener value);

	@JsProperty
	public abstract EventListener getOnerror();

	@JsProperty
	public abstract void setOnerror(final EventListener value);

	@JsProperty
	public abstract int getVersion();

	@JsProperty
	public abstract void setVersion(final int value);

	@JsMethod
	public abstract void close();

	@JsMethod
	public abstract IDBObjectStore createObjectStore(final String name);

	@JsMethod
	public abstract IDBObjectStore createObjectStore(final String name,
			final IDBObjectStoreParameters optionalParameters);

	@JsMethod
	public abstract void deleteObjectStore(final String name);

	@JsMethod
	public abstract IDBTransaction transaction(final Object storeNames);

	@JsMethod
	public abstract IDBTransaction transaction(final Object storeNames, final String mode);

	@JsOverlay
	public default void addEventListenerAbort(final EventListener listener) {
		addEventListener("abort", listener);
	}

	@JsOverlay
	public default void addEventListenerAbort(final EventListener listener, final boolean useCapture) {
		addEventListener("abort", listener, useCapture);
	}

	@JsOverlay
	public default void addEventListenerError(final EventListener listener) {
		addEventListener("error", listener);
	}

	@JsOverlay
	public default void addEventListenerError(final EventListener listener, final boolean useCapture) {
		addEventListener("error", listener, useCapture);
	}

	@JsMethod
	public abstract void addEventListener(final String type, final EventListener listener);

	@JsMethod
	public abstract void addEventListener(final String type, final EventListenerObject listener);

	@JsMethod
	public abstract void addEventListener(final String type, final EventListener listener, final boolean useCapture);

	@JsMethod
	public abstract void addEventListener(final String type, final EventListenerObject listener,
			final boolean useCapture);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy