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 "nsIPropertyBag2.idl" 00041 00042 [scriptable, uuid(9cfd1587-360e-4957-a58f-4c2b1c5e7ed9)] 00043 interface nsIWritablePropertyBag2 : nsIPropertyBag2 00044 { 00045 void setPropertyAsUint16 (in AString prop, in PRUint16 value); 00046 void setPropertyAsInt32 (in AString prop, in PRInt32 value); 00047 void setPropertyAsUint32 (in AString prop, in PRUint32 value); 00048 void setPropertyAsInt64 (in AString prop, in PRInt64 value); 00049 void setPropertyAsUint64 (in AString prop, in PRUint64 value); 00050 void setPropertyAsDouble (in AString prop, in double value); 00051 void setPropertyAsFloat (in AString prop, in float value); 00052 void setPropertyAsAString (in AString prop, in AString value); 00053 void setPropertyAsACString (in AString prop, in ACString value); 00054 void setPropertyAsAUTF8String (in AString prop, in AUTF8String value); 00055 void setPropertyAsBool (in AString prop, in boolean value); 00056 void setPropertyAsInterface (in AString prop, in nsISupports value); 00057 };
1.4.4