Package elemental2.dom
Interface GeolocationPositionError
-
@JsType(isNative=true, namespace="<global>") public interface GeolocationPositionError
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static GeolocationPositionError
create()
double
getCode()
java.lang.String
getMessage()
double
getPERMISSION_DENIED()
double
getPOSITION_UNAVAILABLE()
double
getTIMEOUT()
double
getUNKNOWN_ERROR()
void
setCode(double code)
void
setMessage(java.lang.String message)
-
-
-
Method Detail
-
create
@JsOverlay static GeolocationPositionError create()
-
getCode
@JsProperty double getCode()
-
getMessage
@JsProperty java.lang.String getMessage()
-
getPERMISSION_DENIED
@JsProperty(name="PERMISSION_DENIED") double getPERMISSION_DENIED()
-
getPOSITION_UNAVAILABLE
@JsProperty(name="POSITION_UNAVAILABLE") double getPOSITION_UNAVAILABLE()
-
getTIMEOUT
@JsProperty(name="TIMEOUT") double getTIMEOUT()
-
getUNKNOWN_ERROR
@JsProperty(name="UNKNOWN_ERROR") double getUNKNOWN_ERROR()
-
setCode
@JsProperty void setCode(double code)
-
setMessage
@JsProperty void setMessage(java.lang.String message)
-
-