1 28 package org.eclipse.swt.internal.mozilla; 29 30 public class nsIWebNavigationInfo extends nsISupports { 31 32 static final int LAST_METHOD_ID = nsISupports.LAST_METHOD_ID + 1; 33 34 public static final String NS_IWEBNAVIGATIONINFO_IID_STR = 35 "62a93afb-93a1-465c-84c8-0432264229de"; 36 37 public static final nsID NS_IWEBNAVIGATIONINFO_IID = 38 new nsID(NS_IWEBNAVIGATIONINFO_IID_STR); 39 40 public nsIWebNavigationInfo(int address) { 41 super(address); 42 } 43 44 public static final int UNSUPPORTED = 0; 45 46 public static final int IMAGE = 1; 47 48 public static final int PLUGIN = 2; 49 50 public static final int OTHER = 32768; 51 52 public int IsTypeSupported(int aType, int aWebNav, int[] _retval) { 53 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), aType, aWebNav, _retval); 54 } 55 } | Popular Tags |