1 28 package org.eclipse.swt.internal.mozilla; 29 30 public class nsIProfileChangeStatus extends nsISupports { 31 32 static final int LAST_METHOD_ID = nsISupports.LAST_METHOD_ID + 2; 33 34 public static final String NS_IPROFILECHANGESTATUS_IID_STRING = 35 "2f977d43-5485-11d4-87e2-0010a4e75ef2"; 36 37 public static final nsID NS_IPROFILECHANGESTATUS_IID = 38 new nsID(NS_IPROFILECHANGESTATUS_IID_STRING); 39 40 public nsIProfileChangeStatus(int address) { 41 super(address); 42 } 43 44 public int VetoChange() { 45 return XPCOM.VtblCall(super.LAST_METHOD_ID + 1, getAddress()); 46 } 47 48 public int ChangeFailed() { 49 return XPCOM.VtblCall(super.LAST_METHOD_ID + 2, getAddress()); 50 } 51 } | Popular Tags |