nsIRDFXMLParser.idl 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2. *
  3. * This Source Code Form is subject to the terms of the Mozilla Public
  4. * License, v. 2.0. If a copy of the MPL was not distributed with this
  5. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  6. #include "nsISupports.idl"
  7. #include "nsIRDFDataSource.idl"
  8. #include "nsIStreamListener.idl"
  9. #include "nsIURI.idl"
  10. [scriptable, uuid(1831dd2e-1dd2-11b2-bdb3-86b7b50b70b5)]
  11. interface nsIRDFXMLParser : nsISupports
  12. {
  13. /**
  14. * Create a stream listener that can be used to asynchronously
  15. * parse RDF/XML.
  16. * @param aSink the RDF datasource the will receive the data
  17. * @param aBaseURI the base URI used to resolve relative
  18. * references in the RDF/XML
  19. * @return an nsIStreamListener object to handle the data
  20. */
  21. nsIStreamListener parseAsync(in nsIRDFDataSource aSink, in nsIURI aBaseURI);
  22. /**
  23. * Parse a string of RDF/XML
  24. * @param aSink the RDF datasource that will receive the data
  25. * @param aBaseURI the base URI used to resolve relative
  26. * references in the RDF/XML
  27. * @param aSource a UTF8 string containing RDF/XML data.
  28. */
  29. void parseString(in nsIRDFDataSource aSink, in nsIURI aBaseURI, in AUTF8String aSource);
  30. };