Bug 440351, update win32_buildPlatform for move from pacifica-vm to patrocles clones
[mozilla-1.9.git] / xpcom / ds / nsIPersistentProperties2.idl
blobcc0120d0135d4e66e0e4b999b315e0da61889e2d
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
24 * Alternatively, the contents of this file may be used under the terms of
25 * either of the GNU General Public License Version 2 or later (the "GPL"),
26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 #include "nsISupports.idl"
39 #include "nsIProperties.idl"
40 #include "nsISimpleEnumerator.idl"
42 interface nsIInputStream;
43 interface nsIOutputStream;
45 [scriptable, uuid(283EE646-1AEF-11D4-98B3-00C04fA0CE9A)]
46 interface nsIPropertyElement : nsISupports {
47 attribute AUTF8String key;
48 attribute AString value;
51 [scriptable, uuid(1A180F60-93B2-11d2-9B8B-00805F8A16D9)]
52 interface nsIPersistentProperties : nsIProperties
54 /**
55 * load a set of name/value pairs from the input stream
56 * names and values should be in UTF8
58 void load(in nsIInputStream input);
60 /**
61 * output the values to the stream - results will be in UTF8
63 void save(in nsIOutputStream output, in AUTF8String header);
65 /**
66 * call subclass() to make future calls to load() set the properties
67 * in this "superclass" instead
69 void subclass(in nsIPersistentProperties superclass);
71 /**
72 * get an enumeration of nsIPropertyElement objects,
73 * which are read-only (i.e. setting properties on the element will
74 * not make changes back into the source nsIPersistentProperties
76 nsISimpleEnumerator enumerate();
78 /**
79 * shortcut to nsIProperty's get() which retrieves a string value
80 * directly (and thus faster)
82 AString getStringProperty(in AUTF8String key);
84 /**
85 * shortcut to nsIProperty's set() which sets a string value
86 * directly (and thus faster). If the given property already exists,
87 * then the old value will be returned
89 AString setStringProperty(in AUTF8String key, in AString value);
93 %{C++
95 #define NS_IPERSISTENTPROPERTIES_CID \
96 { 0x2245e573, 0x9464, 0x11d2, \
97 { 0x9b, 0x8b, 0x0, 0x80, 0x5f, 0x8a, 0x16, 0xd9 } }
99 #define NS_PERSISTENTPROPERTIES_CONTRACTID "@mozilla.org/persistent-properties;1"
100 #define NS_PERSISTENTPROPERTIES_CLASSNAME "Persistent Properties"