FunctionCall.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __gnu_xml_xpath_FunctionCall__
  3. #define __gnu_xml_xpath_FunctionCall__
  4. #pragma interface
  5. #include <gnu/xml/xpath/Expr.h>
  6. extern "Java"
  7. {
  8. namespace gnu
  9. {
  10. namespace xml
  11. {
  12. namespace xpath
  13. {
  14. class Expr;
  15. class FunctionCall;
  16. }
  17. }
  18. }
  19. namespace javax
  20. {
  21. namespace xml
  22. {
  23. namespace namespace$
  24. {
  25. class QName;
  26. }
  27. namespace xpath
  28. {
  29. class XPathFunctionResolver;
  30. }
  31. }
  32. }
  33. namespace org
  34. {
  35. namespace w3c
  36. {
  37. namespace dom
  38. {
  39. class Node;
  40. }
  41. }
  42. }
  43. }
  44. class gnu::xml::xpath::FunctionCall : public ::gnu::xml::xpath::Expr
  45. {
  46. public:
  47. FunctionCall(::javax::xml::xpath::XPathFunctionResolver *, ::java::lang::String *);
  48. FunctionCall(::javax::xml::xpath::XPathFunctionResolver *, ::java::lang::String *, ::java::util::List *);
  49. ::java::lang::Object * evaluate(::org::w3c::dom::Node *, jint, jint);
  50. ::gnu::xml::xpath::Expr * clone(::java::lang::Object *);
  51. jboolean references(::javax::xml::namespace$::QName *);
  52. ::java::lang::String * toString();
  53. public: // actually package-private
  54. ::javax::xml::xpath::XPathFunctionResolver * __attribute__((aligned(__alignof__( ::gnu::xml::xpath::Expr)))) resolver;
  55. ::java::lang::String * name;
  56. ::java::util::List * args;
  57. public:
  58. static ::java::lang::Class class$;
  59. };
  60. #endif // __gnu_xml_xpath_FunctionCall__