ReadableByteChannel.h 720 B

123456789101112131415161718192021222324252627282930313233343536
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_nio_channels_ReadableByteChannel__
  3. #define __java_nio_channels_ReadableByteChannel__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace nio
  11. {
  12. class ByteBuffer;
  13. namespace channels
  14. {
  15. class ReadableByteChannel;
  16. }
  17. }
  18. }
  19. }
  20. class java::nio::channels::ReadableByteChannel : public ::java::lang::Object
  21. {
  22. public:
  23. virtual jint read(::java::nio::ByteBuffer *) = 0;
  24. virtual jboolean isOpen() = 0;
  25. virtual void close() = 0;
  26. static ::java::lang::Class class$;
  27. } __attribute__ ((java_interface));
  28. #endif // __java_nio_channels_ReadableByteChannel__