Java com.google.gwt.user.client Cookies fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.user.client Cookies fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.user.client Cookies.

The text is from its open source code.

Method

StringgetCookie(String name)
Gets the cookie associated with the given name.
CollectiongetCookieNames()
Gets the names of all cookies in this page's domain.
booleanisCookieEnabled()
Checks whether or not cookies are enabled or disabled.
voidremoveCookie(String name)
Removes the cookie associated with the given name.
voidremoveCookie(String name, String path)
Removes the cookie associated with the given name.
voidsetCookie(String name, String value, Date expires, String domain, String path, boolean secure)
Sets a cookie.
voidsetCookie(String name, String value, Date expires)
Sets a cookie.
voidsetCookie(String name, String value)
Sets a cookie.