MathContext.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_math_MathContext__
  3. #define __java_math_MathContext__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace math
  11. {
  12. class MathContext;
  13. class RoundingMode;
  14. }
  15. }
  16. }
  17. class java::math::MathContext : public ::java::lang::Object
  18. {
  19. public:
  20. MathContext(jint);
  21. MathContext(jint, ::java::math::RoundingMode *);
  22. MathContext(::java::lang::String *);
  23. jboolean equals(::java::lang::Object *);
  24. jint getPrecision();
  25. ::java::math::RoundingMode * getRoundingMode();
  26. ::java::lang::String * toString();
  27. jint hashCode();
  28. static ::java::math::MathContext * UNLIMITED;
  29. static ::java::math::MathContext * DECIMAL32;
  30. static ::java::math::MathContext * DECIMAL64;
  31. static ::java::math::MathContext * DECIMAL128;
  32. private:
  33. static const jlong serialVersionUID = 5579720004786848255LL;
  34. jint __attribute__((aligned(__alignof__( ::java::lang::Object)))) precision;
  35. ::java::math::RoundingMode * roundMode;
  36. public:
  37. static ::java::lang::Class class$;
  38. };
  39. #endif // __java_math_MathContext__