comparison dwt/internal/mozilla/nsICategoryManager.d @ 125:5583f8eeee6c

Synced mozilla with dwt-linux
author Jacob Carlborg <doob@me.com>
date Fri, 16 Jan 2009 12:49:08 +0100
parents d8635bb48c7c
children
comparison
equal deleted inserted replaced
124:540fa4e9974a 125:5583f8eeee6c
1 /* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1
3 *
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
8 *
9 * 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 DWT
25 * - Copyright (C) 2003, 2008 IBM Corp. All Rights Reserved.
26 *
27 * ***** END LICENSE BLOCK ***** */
28 module dwt.internal.mozilla.nsICategoryManager; 1 module dwt.internal.mozilla.nsICategoryManager;
29 2
30 import dwt.dwthelper.utils; 3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6 import dwt.internal.mozilla.nsISimpleEnumerator;
31 7
32 public class nsICategoryManager extends nsISupports { 8 const char[] NS_ICATEGORYMANAGER_IID_STR = "3275b2cd-af6d-429a-80d7-f0c5120342ac";
33 9
34 static final int LAST_METHOD_ID = nsISupports.LAST_METHOD_ID + 6; 10 const nsIID NS_ICATEGORYMANAGER_IID=
11 {0x3275b2cd, 0xaf6d, 0x429a,
12 [ 0x80, 0xd7, 0xf0, 0xc5, 0x12, 0x03, 0x42, 0xac ]};
35 13
36 public static final String NS_ICATEGORYMANAGER_IID_STR = 14 interface nsICategoryManager : nsISupports {
37 "3275b2cd-af6d-429a-80d7-f0c5120342ac";
38 15
39 public static final nsID NS_ICATEGORYMANAGER_IID = 16 static const char[] IID_STR = NS_ICATEGORYMANAGER_IID_STR;
40 new nsID(NS_ICATEGORYMANAGER_IID_STR); 17 static const nsIID IID = NS_ICATEGORYMANAGER_IID;
41 18
42 public nsICategoryManager(int /*long*/ address) { 19 extern(System):
43 super(address); 20 nsresult GetCategoryEntry(char *aCategory, char *aEntry, char **_retval);
44 } 21 nsresult AddCategoryEntry(char *aCategory, char *aEntry, char *aValue, PRBool aPersist, PRBool aReplace, char **_retval);
22 nsresult DeleteCategoryEntry(char *aCategory, char *aEntry, PRBool aPersist);
23 nsresult DeleteCategory(char *aCategory);
24 nsresult EnumerateCategory(char *aCategory, nsISimpleEnumerator *_retval);
25 nsresult EnumerateCategories(nsISimpleEnumerator *_retval);
26 }
45 27
46 public int GetCategoryEntry(byte[] aCategory, byte[] aEntry, int /*long*/[] _retval) {
47 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), aCategory, aEntry, _retval);
48 }
49
50 public int AddCategoryEntry(byte[] aCategory, byte[] aEntry, byte[] aValue, int aPersist, int aReplace, int /*long*/[] _retval) {
51 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress(), aCategory, aEntry, aValue, aPersist, aReplace, _retval);
52 }
53
54 public int DeleteCategoryEntry(byte[] aCategory, byte[] aEntry, int aPersist) {
55 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 3, getAddress(), aCategory, aEntry, aPersist);
56 }
57
58 public int DeleteCategory(byte[] aCategory) {
59 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 4, getAddress(), aCategory);
60 }
61
62 public int EnumerateCategory(byte[] aCategory, int /*long*/[] _retval) {
63 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 5, getAddress(), aCategory, _retval);
64 }
65
66 public int EnumerateCategories(int /*long*/[] _retval) {
67 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 6, getAddress(), _retval);
68 }
69 }