1 28 package org.eclipse.swt.internal.mozilla; 29 30 public class nsICookieManager extends nsISupports { 31 32 static final int LAST_METHOD_ID = nsISupports.LAST_METHOD_ID + 3; 33 34 public static final String NS_ICOOKIEMANAGER_IID_STR = 35 "aaab6710-0f2c-11d5-a53b-0010a401eb10"; 36 37 public static final nsID NS_ICOOKIEMANAGER_IID = 38 new nsID(NS_ICOOKIEMANAGER_IID_STR); 39 40 public nsICookieManager(int address) { 41 super(address); 42 } 43 44 public int RemoveAll() { 45 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress()); 46 } 47 48 public int GetEnumerator(int [] aEnumerator) { 49 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress(), aEnumerator); 50 } 51 52 public int Remove(int aDomain, int aName, int aPath, boolean aBlocked) { 53 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 3, getAddress(), aDomain, aName, aPath, aBlocked); 54 } 55 } 56 | Popular Tags |