00001 /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 00002 * 00003 * ***** BEGIN LICENSE BLOCK ***** 00004 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 00005 * 00006 * The contents of this file are subject to the Mozilla Public License Version 00007 * 1.1 (the "License"); you may not use this file except in compliance with 00008 * the License. You may obtain a copy of the License at 00009 * http://www.mozilla.org/MPL/ 00010 * 00011 * Software distributed under the License is distributed on an "AS IS" basis, 00012 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 00013 * for the specific language governing rights and limitations under the 00014 * License. 00015 * 00016 * The Original Code is mozilla.org code. 00017 * 00018 * The Initial Developer of the Original Code is 00019 * Netscape Communications Corporation. 00020 * Portions created by the Initial Developer are Copyright (C) 1998 00021 * the Initial Developer. All Rights Reserved. 00022 * 00023 * Contributor(s): 00024 * John Bandhauer <jband@netscape.com> 00025 * 00026 * Alternatively, the contents of this file may be used under the terms of 00027 * either of the GNU General Public License Version 2 or later (the "GPL"), 00028 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 00029 * in which case the provisions of the GPL or the LGPL are applicable instead 00030 * of those above. If you wish to allow use of your version of this file only 00031 * under the terms of either the GPL or the LGPL, and not to allow others to 00032 * use your version of this file under the terms of the MPL, indicate your 00033 * decision by deleting the provisions above and replace them with the notice 00034 * and other provisions required by the GPL or the LGPL. If you do not delete 00035 * the provisions above, a recipient may use your version of this file under 00036 * the terms of any one of the MPL, the GPL or the LGPL. 00037 * 00038 * ***** END LICENSE BLOCK ***** */ 00039 00040 /* nsIVariant based writable Property Bag support. */ 00041 00042 #include "nsIPropertyBag.idl" 00043 00044 [scriptable, uuid(96fc4671-eeb4-4823-9421-e50fb70ad353)] 00045 interface nsIWritablePropertyBag : nsIPropertyBag 00046 { 00052 void setProperty(in AString name, in nsIVariant value); 00053 00059 void deleteProperty(in AString name); 00060 };
1.4.4