1 28 package org.eclipse.swt.internal.mozilla; 29 30 public class nsIController extends nsISupports { 31 32 static final int LAST_METHOD_ID = nsISupports.LAST_METHOD_ID + 4; 33 34 public static final String NS_ICONTROLLER_IID_STRING = 35 "D5B61B82-1DA4-11d3-BF87-00105A1B0627"; 36 37 public static final nsID NS_ICONTROLLER_IID = 38 new nsID(NS_ICONTROLLER_IID_STRING); 39 40 public nsIController(int address) { 41 super(address); 42 } 43 44 public int IsCommandEnabled(byte[] command, boolean[] _retval) { 45 return XPCOM.VtblCall(super.LAST_METHOD_ID + 1, getAddress(), command, _retval); 46 } 47 48 public int SupportsCommand(byte[] command, boolean[] _retval) { 49 return XPCOM.VtblCall(super.LAST_METHOD_ID + 2, getAddress(), command, _retval); 50 } 51 52 public int DoCommand(byte[] command) { 53 return XPCOM.VtblCall(super.LAST_METHOD_ID + 3, getAddress(), command); 54 } 55 56 public int OnEvent(byte[] eventName) { 57 return XPCOM.VtblCall(super.LAST_METHOD_ID + 4, getAddress(), eventName); 58 } 59 } | Popular Tags |