elemental2.dom.NavigatorUserMediaError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jacline-elemental2-dom Show documentation
Show all versions of jacline-elemental2-dom Show documentation
Thin Java abstractions for the standard built-in objects for
Javascript.
The newest version!
package elemental2.dom;
import jsinterop.annotations.JsProperty;
import java.lang.Deprecated;
import java.lang.String;
import jsinterop.annotations.JsType;
import jsinterop.annotations.JsPackage;
@JsType(isNative = true,namespace = JsPackage.GLOBAL)
public interface NavigatorUserMediaError{
@Deprecated
@JsProperty
double getCode();
@JsProperty
String getConstraintName();
@JsProperty
String getMessage();
@JsProperty
String getName();
@Deprecated
@JsProperty(name = "PERMISSION_DENIED")
double getPERMISSION_DENIED();
@Deprecated
@JsProperty
void setCode(double code);
@JsProperty
void setConstraintName(String constraintName);
@JsProperty
void setMessage(String message);
@JsProperty
void setName(String name);
}