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

org.ioc.commons.impl.gwt.client.ui.NativeUtil Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package org.ioc.commons.impl.gwt.client.ui;

public class NativeUtil {
	public native static double extractLengthValue(String s) /*-{
		if (s == "auto" || s == "inherit" || s == "") {
			return 0;
		} else {
			return parseFloat(s);
		}
	}-*/;

	public static native int getScreenWidth() /*-{
		return $wnd.screen.width;
	}-*/;

	public static native int getScreenHeight() /*-{
		return $wnd.screen.height;
	}-*/;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy