michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- michael@0: * vim: sw=2 ts=2 sts=2 et michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: interface mozIStorageBindingParams; michael@0: michael@0: [scriptable, uuid(67eea5c3-4881-41ff-b0fe-09f2356aeadb)] michael@0: interface mozIStorageBindingParamsArray : nsISupports { michael@0: /** michael@0: * Creates a new mozIStorageBindingParams object that can be added to this michael@0: * array. michael@0: * michael@0: * @return a mozIStorageBindingParams object that can be used to specify michael@0: * parameters that need to be bound. michael@0: */ michael@0: mozIStorageBindingParams newBindingParams(); michael@0: michael@0: /** michael@0: * Adds the parameters to the end of this array. michael@0: * michael@0: * @param aParameters michael@0: * The parameters to add to this array. michael@0: */ michael@0: void addParams(in mozIStorageBindingParams aParameters); michael@0: michael@0: /** michael@0: * The number of mozIStorageBindingParams this object contains. michael@0: */ michael@0: readonly attribute unsigned long length; michael@0: };