DataTruncation.h 932 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_sql_DataTruncation__
  3. #define __java_sql_DataTruncation__
  4. #pragma interface
  5. #include <java/sql/SQLWarning.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace sql
  11. {
  12. class DataTruncation;
  13. }
  14. }
  15. }
  16. class java::sql::DataTruncation : public ::java::sql::SQLWarning
  17. {
  18. public:
  19. DataTruncation(jint, jboolean, jboolean, jint, jint);
  20. virtual jint getIndex();
  21. virtual jboolean getParameter();
  22. virtual jboolean getRead();
  23. virtual jint getDataSize();
  24. virtual jint getTransferSize();
  25. public: // actually package-private
  26. static const jlong serialVersionUID = 6464298989504059473LL;
  27. private:
  28. jint __attribute__((aligned(__alignof__( ::java::sql::SQLWarning)))) dataSize;
  29. jint index;
  30. jboolean parameter;
  31. jboolean read;
  32. jint transferSize;
  33. public:
  34. static ::java::lang::Class class$;
  35. };
  36. #endif // __java_sql_DataTruncation__