AbstractBorder.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __javax_swing_border_AbstractBorder__
  3. #define __javax_swing_border_AbstractBorder__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace awt
  11. {
  12. class Component;
  13. class Graphics;
  14. class Insets;
  15. class Rectangle;
  16. }
  17. }
  18. namespace javax
  19. {
  20. namespace swing
  21. {
  22. namespace border
  23. {
  24. class AbstractBorder;
  25. class Border;
  26. }
  27. }
  28. }
  29. }
  30. class javax::swing::border::AbstractBorder : public ::java::lang::Object
  31. {
  32. public:
  33. AbstractBorder();
  34. virtual void paintBorder(::java::awt::Component *, ::java::awt::Graphics *, jint, jint, jint, jint);
  35. virtual ::java::awt::Insets * getBorderInsets(::java::awt::Component *);
  36. virtual ::java::awt::Insets * getBorderInsets(::java::awt::Component *, ::java::awt::Insets *);
  37. virtual jboolean isBorderOpaque();
  38. virtual ::java::awt::Rectangle * getInteriorRectangle(::java::awt::Component *, jint, jint, jint, jint);
  39. static ::java::awt::Rectangle * getInteriorRectangle(::java::awt::Component *, ::javax::swing::border::Border *, jint, jint, jint, jint);
  40. public: // actually package-private
  41. static const jlong serialVersionUID = -545885975315191844LL;
  42. public:
  43. static ::java::lang::Class class$;
  44. };
  45. #endif // __javax_swing_border_AbstractBorder__