1 28 package org.eclipse.swt.internal.mozilla; 29 30 public class nsIWebBrowserChromeFocus extends nsISupports { 31 32 static final int LAST_METHOD_ID = nsISupports.LAST_METHOD_ID + 2; 33 34 public static final String NS_IWEBBROWSERCHROMEFOCUS_IID_STR = 35 "d2206418-1dd1-11b2-8e55-acddcd2bcfb8"; 36 37 public static final nsID NS_IWEBBROWSERCHROMEFOCUS_IID = 38 new nsID(NS_IWEBBROWSERCHROMEFOCUS_IID_STR); 39 40 public nsIWebBrowserChromeFocus(int address) { 41 super(address); 42 } 43 44 public int FocusNextElement() { 45 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress()); 46 } 47 48 public int FocusPrevElement() { 49 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress()); 50 } 51 } | Popular Tags |