txINodeSet.idl 633 B

1234567891011121314151617
  1. /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #include "domstubs.idl"
  6. [scriptable, uuid(15d424c0-6b47-11d9-9791-000a95dc234c)]
  7. interface txINodeSet : nsISupports
  8. {
  9. nsIDOMNode item(in unsigned long index);
  10. double itemAsNumber(in unsigned long index);
  11. DOMString itemAsString(in unsigned long index);
  12. readonly attribute unsigned long length;
  13. void add(in nsIDOMNode node);
  14. };