Time.h 958 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_sql_Time__
  3. #define __java_sql_Time__
  4. #pragma interface
  5. #include <java/util/Date.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace sql
  11. {
  12. class Time;
  13. }
  14. namespace text
  15. {
  16. class SimpleDateFormat;
  17. }
  18. }
  19. }
  20. class java::sql::Time : public ::java::util::Date
  21. {
  22. public:
  23. virtual jint getDate();
  24. virtual jint getDay();
  25. virtual jint getMonth();
  26. virtual jint getYear();
  27. virtual void setDate(jint);
  28. virtual void setMonth(jint);
  29. virtual void setYear(jint);
  30. static ::java::sql::Time * valueOf(::java::lang::String *);
  31. Time(jint, jint, jint);
  32. Time(jlong);
  33. virtual ::java::lang::String * toString();
  34. public: // actually package-private
  35. static const jlong serialVersionUID = 8397324403548013681LL;
  36. private:
  37. static ::java::text::SimpleDateFormat * sdf;
  38. public:
  39. static ::java::lang::Class class$;
  40. };
  41. #endif // __java_sql_Time__