1 28 package org.eclipse.swt.internal.mozilla; 29 30 public class nsIWindowCreator2 extends nsIWindowCreator { 31 32 static final int LAST_METHOD_ID = nsIWindowCreator.LAST_METHOD_ID + 1; 33 34 public static final String NS_IWINDOWCREATOR2_IID_STR = 35 "f673ec81-a4b0-11d6-964b-eb5a2bf216fc"; 36 37 public static final nsID NS_IWINDOWCREATOR2_IID = 38 new nsID(NS_IWINDOWCREATOR2_IID_STR); 39 40 public nsIWindowCreator2(int address) { 41 super(address); 42 } 43 44 public static final int PARENT_IS_LOADING_OR_RUNNING_TIMEOUT = 1; 45 46 public int CreateChromeWindow2(int parent, int chromeFlags, int contextFlags, int uri, boolean[] cancel, int [] _retval) { 47 return XPCOM.VtblCall(nsIWindowCreator.LAST_METHOD_ID + 1, getAddress(), parent, chromeFlags, contextFlags, uri, cancel, _retval); 48 } 49 } 50 | Popular Tags |