01: /* ***** BEGIN LICENSE BLOCK *****
02: * Version: MPL 1.1
03: *
04: * The contents of this file are subject to the Mozilla Public License Version
05: * 1.1 (the "License"); you may not use this file except in compliance with
06: * the License. You may obtain a copy of the License at
07: * http://www.mozilla.org/MPL/
08: *
09: * Software distributed under the License is distributed on an "AS IS" basis,
10: * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11: * for the specific language governing rights and limitations under the
12: * License.
13: *
14: * The Original Code is Mozilla Communicator client code, released March 31, 1998.
15: *
16: * The Initial Developer of the Original Code is
17: * Netscape Communications Corporation.
18: * Portions created by Netscape are Copyright (C) 1998-1999
19: * Netscape Communications Corporation. All Rights Reserved.
20: *
21: * Contributor(s):
22: *
23: * IBM
24: * - Binding to permit interfacing between Mozilla and SWT
25: * - Copyright (C) 2003 IBM Corp. All Rights Reserved.
26: *
27: * ***** END LICENSE BLOCK ***** */
28: package org.eclipse.swt.internal.mozilla;
29:
30: public class nsIHelperAppLauncher_1_8 extends nsICancelable {
31:
32: static final int LAST_METHOD_ID = nsICancelable.LAST_METHOD_ID + 9;
33:
34: public static final String NS_IHELPERAPPLAUNCHER_IID_STR = "99a0882d-2ff9-4659-9952-9ac531ba5592";
35:
36: public static final nsID NS_IHELPERAPPLAUNCHER_IID = new nsID(
37: NS_IHELPERAPPLAUNCHER_IID_STR);
38:
39: public nsIHelperAppLauncher_1_8(int /*long*/address) {
40: super (address);
41: }
42:
43: public int GetMIMEInfo(int /*long*/[] aMIMEInfo) {
44: return XPCOM.VtblCall(nsICancelable.LAST_METHOD_ID + 1,
45: getAddress(), aMIMEInfo);
46: }
47:
48: public int GetSource(int /*long*/[] aSource) {
49: return XPCOM.VtblCall(nsICancelable.LAST_METHOD_ID + 2,
50: getAddress(), aSource);
51: }
52:
53: public int GetSuggestedFileName(int /*long*/aSuggestedFileName) {
54: return XPCOM.VtblCall(nsICancelable.LAST_METHOD_ID + 3,
55: getAddress(), aSuggestedFileName);
56: }
57:
58: public int SaveToDisk(int /*long*/aNewFileLocation,
59: boolean aRememberThisPreference) {
60: return XPCOM
61: .VtblCall(nsICancelable.LAST_METHOD_ID + 4,
62: getAddress(), aNewFileLocation,
63: aRememberThisPreference);
64: }
65:
66: public int LaunchWithApplication(int /*long*/aApplication,
67: boolean aRememberThisPreference) {
68: return XPCOM.VtblCall(nsICancelable.LAST_METHOD_ID + 5,
69: getAddress(), aApplication, aRememberThisPreference);
70: }
71:
72: public int SetWebProgressListener(int /*long*/aWebProgressListener) {
73: return XPCOM.VtblCall(nsICancelable.LAST_METHOD_ID + 6,
74: getAddress(), aWebProgressListener);
75: }
76:
77: public int CloseProgressWindow() {
78: return XPCOM.VtblCall(nsICancelable.LAST_METHOD_ID + 7,
79: getAddress());
80: }
81:
82: public int GetTargetFile(int /*long*/[] aTargetFile) {
83: return XPCOM.VtblCall(nsICancelable.LAST_METHOD_ID + 8,
84: getAddress(), aTargetFile);
85: }
86:
87: public int GetTimeDownloadStarted(int /*long*/aTimeDownloadStarted) {
88: return XPCOM.VtblCall(nsICancelable.LAST_METHOD_ID + 9,
89: getAddress(), aTimeDownloadStarted);
90: }
91: }
|