elemental2.dom.Console 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.base.Js;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsMethod;
import java.lang.Object;
import java.lang.String;
import jsinterop.annotations.JsType;
import jsinterop.annotations.JsPackage;
import elemental2.core.JsObject;
@JsType(isNative = true,namespace = JsPackage.GLOBAL)
public class Console{
@JsMethod(name = "assert")
public native void assert_(Object condition,Object... var_data);
public native void clear();
public native void count();
public native void count(String label);
public native void countReset();
public native void countReset(String label);
public native void debug(Object... var_data);
public native void dir(Object item);
public native void dirxml(Object... var_data);
public native void error(Object... var_data);
public native void group(Object... var_data);
public native void groupCollapsed(Object... var_data);
public native void groupEnd();
public native void info(Object... var_data);
public native void log(Object... var_data);
public native void table(JsObject tabularData,Object properties);
public native void table(JsObject tabularData);
@JsOverlay
public final void table(Object tabularData,Object properties){
table(Js.uncheckedCast(tabularData),properties);
}
@JsOverlay
public final void table(Object tabularData){
table(Js.uncheckedCast(tabularData));
}
public native void time(String label);
public native void timeEnd(String label);
public native void timeLog(String label,Object... data);
public native void trace(Object... var_data);
public native void warn(Object... var_data);
}