1 28 package org.eclipse.swt.internal.mozilla; 29 30 public class nsISupportsWeakReference extends nsISupports { 31 32 static final int LAST_METHOD_ID = nsISupports.LAST_METHOD_ID + 1; 33 34 public static final String NS_ISUPPORTSWEAKREFERENCE_IID_STR = 35 "9188bc86-f92e-11d2-81ef-0060083a0bcf"; 36 37 public static final nsID NS_ISUPPORTSWEAKREFERENCE_IID = 38 new nsID(NS_ISUPPORTSWEAKREFERENCE_IID_STR); 39 40 public nsISupportsWeakReference(int address) { 41 super(address); 42 } 43 44 public int GetWeakReference(int [] _retval) { 45 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), _retval); 46 } 47 } | Popular Tags |