ArithmeticExpr.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __gnu_xml_xpath_ArithmeticExpr__
  3. #define __gnu_xml_xpath_ArithmeticExpr__
  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 ArithmeticExpr;
  15. class Expr;
  16. }
  17. }
  18. }
  19. namespace javax
  20. {
  21. namespace xml
  22. {
  23. namespace namespace$
  24. {
  25. class QName;
  26. }
  27. }
  28. }
  29. namespace org
  30. {
  31. namespace w3c
  32. {
  33. namespace dom
  34. {
  35. class Node;
  36. }
  37. }
  38. }
  39. }
  40. class gnu::xml::xpath::ArithmeticExpr : public ::gnu::xml::xpath::Expr
  41. {
  42. public: // actually package-private
  43. ArithmeticExpr(::gnu::xml::xpath::Expr *, ::gnu::xml::xpath::Expr *, jint);
  44. public:
  45. ::java::lang::Object * evaluate(::org::w3c::dom::Node *, jint, jint);
  46. ::gnu::xml::xpath::Expr * clone(::java::lang::Object *);
  47. jboolean references(::javax::xml::namespace$::QName *);
  48. ::java::lang::String * toString();
  49. public: // actually package-private
  50. static const jint ADD = 0;
  51. static const jint SUBTRACT = 1;
  52. static const jint MULTIPLY = 2;
  53. static const jint DIVIDE = 3;
  54. static const jint MODULO = 4;
  55. ::gnu::xml::xpath::Expr * __attribute__((aligned(__alignof__( ::gnu::xml::xpath::Expr)))) lhs;
  56. ::gnu::xml::xpath::Expr * rhs;
  57. jint op;
  58. public:
  59. static ::java::lang::Class class$;
  60. };
  61. #endif // __gnu_xml_xpath_ArithmeticExpr__