00001 /* ***** BEGIN LICENSE BLOCK ***** 00002 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 00003 * 00004 * The contents of this file are subject to the Mozilla Public License Version 00005 * 1.1 (the "License"); you may not use this file except in compliance with 00006 * the License. You may obtain a copy of the License at 00007 * http://www.mozilla.org/MPL/ 00008 * 00009 * Software distributed under the License is distributed on an "AS IS" basis, 00010 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 00011 * for the specific language governing rights and limitations under the 00012 * License. 00013 * 00014 * The Original Code is mozilla.org property bag support. 00015 * 00016 * The Initial Developer of the Original Code is 00017 * Christian Biesinger <cbiesinger@web.de>. 00018 * Portions created by the Initial Developer are Copyright (C) 2005 00019 * the Initial Developer. All Rights Reserved. 00020 * 00021 * Contributor(s): 00022 * Darin Fisher <darin@meer.net> 00023 * 00024 * Alternatively, the contents of this file may be used under the terms of 00025 * either the GNU General Public License Version 2 or later (the "GPL"), or 00026 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 00027 * in which case the provisions of the GPL or the LGPL are applicable instead 00028 * of those above. If you wish to allow use of your version of this file only 00029 * under the terms of either the GPL or the LGPL, and not to allow others to 00030 * use your version of this file under the terms of the MPL, indicate your 00031 * decision by deleting the provisions above and replace them with the notice 00032 * and other provisions required by the GPL or the LGPL. If you do not delete 00033 * the provisions above, a recipient may use your version of this file under 00034 * the terms of any one of the MPL, the GPL or the LGPL. 00035 * 00036 * ***** END LICENSE BLOCK ***** */ 00037 00038 /* nsIVariant based Property Bag support. */ 00039 00040 #include "nsIPropertyBag.idl" 00041 00042 [scriptable, uuid(625cfd1e-da1e-4417-9ee9-dbc8e0b3fd79)] 00043 interface nsIPropertyBag2 : nsIPropertyBag 00044 { 00045 // Accessing a property as a different type may attempt conversion to the 00046 // requested value 00047 00048 PRUint16 getPropertyAsUint16 (in AString prop); 00049 PRInt32 getPropertyAsInt32 (in AString prop); 00050 PRUint32 getPropertyAsUint32 (in AString prop); 00051 PRInt64 getPropertyAsInt64 (in AString prop); 00052 PRUint64 getPropertyAsUint64 (in AString prop); 00053 double getPropertyAsDouble (in AString prop); 00054 float getPropertyAsFloat (in AString prop); 00055 AString getPropertyAsAString (in AString prop); 00056 ACString getPropertyAsACString (in AString prop); 00057 AUTF8String getPropertyAsAUTF8String (in AString prop); 00058 boolean getPropertyAsBool (in AString prop); 00059 00063 void getPropertyAsInterface (in AString prop, 00064 in nsIIDRef iid, 00065 [iid_is(iid), retval] out nsQIResult result); 00066 00071 nsIVariant get (in AString prop); 00072 00076 PRBool hasKey (in AString prop); 00077 };
1.4.4