GatheringByteChannel.h 894 B

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