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