txIEXSLTRegExFunctions.idl 887 B

12345678910111213141516171819202122
  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 "nsISupports.idl"
  6. interface txIFunctionEvaluationContext;
  7. interface txINodeSet;
  8. [scriptable, uuid(c180e993-aced-4839-95a0-ecd5ff138be9)]
  9. interface txIEXSLTRegExFunctions : nsISupports
  10. {
  11. txINodeSet match(in txIFunctionEvaluationContext aContext,
  12. in DOMString aString, in DOMString aRegEx,
  13. in DOMString aFlags);
  14. DOMString replace(in DOMString aString, in DOMString aRegEx,
  15. in DOMString aFlags, in DOMString aReplace);
  16. boolean test(in DOMString aString, in DOMString aRegEx,
  17. in DOMString aFlags);
  18. };