android.webkit.CookieManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.webkit;
public class CookieManager
{
CookieManager() { throw new RuntimeException("Stub!"); }
protected java.lang.Object clone() throws java.lang.CloneNotSupportedException { throw new RuntimeException("Stub!"); }
public static synchronized android.webkit.CookieManager getInstance() { throw new RuntimeException("Stub!"); }
public synchronized void setAcceptCookie(boolean accept) { throw new RuntimeException("Stub!"); }
public synchronized boolean acceptCookie() { throw new RuntimeException("Stub!"); }
public void setCookie(java.lang.String url, java.lang.String value) { throw new RuntimeException("Stub!"); }
public java.lang.String getCookie(java.lang.String url) { throw new RuntimeException("Stub!"); }
public void removeSessionCookie() { throw new RuntimeException("Stub!"); }
public void removeAllCookie() { throw new RuntimeException("Stub!"); }
public synchronized boolean hasCookies() { throw new RuntimeException("Stub!"); }
public void removeExpiredCookie() { throw new RuntimeException("Stub!"); }
public static boolean allowFileSchemeCookies() { throw new RuntimeException("Stub!"); }
public static void setAcceptFileSchemeCookies(boolean accept) { throw new RuntimeException("Stub!"); }
}