aboutsummaryrefslogtreecommitdiff
path: root/libjava/javax/sound/sampled/DataLine.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@gcc.gnu.org>2007-01-09 19:58:05 +0000
committerTom Tromey <tromey@gcc.gnu.org>2007-01-09 19:58:05 +0000
commit97b8365cafc3a344a22d3980b8ed885f5c6d8357 (patch)
tree996a5f57d4a68c53473382e45cb22f574cb3e4db /libjava/javax/sound/sampled/DataLine.h
parentc648dedbde727ca3f883bb5fd773aa4af70d3369 (diff)
downloadgcc-97b8365cafc3a344a22d3980b8ed885f5c6d8357.zip
gcc-97b8365cafc3a344a22d3980b8ed885f5c6d8357.tar.gz
gcc-97b8365cafc3a344a22d3980b8ed885f5c6d8357.tar.bz2
Merged gcj-eclipse branch to trunk.
From-SVN: r120621
Diffstat (limited to 'libjava/javax/sound/sampled/DataLine.h')
-rw-r--r--libjava/javax/sound/sampled/DataLine.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/libjava/javax/sound/sampled/DataLine.h b/libjava/javax/sound/sampled/DataLine.h
new file mode 100644
index 0000000..257fd9b
--- /dev/null
+++ b/libjava/javax/sound/sampled/DataLine.h
@@ -0,0 +1,60 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __javax_sound_sampled_DataLine__
+#define __javax_sound_sampled_DataLine__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace javax
+ {
+ namespace sound
+ {
+ namespace sampled
+ {
+ class AudioFormat;
+ class Control;
+ class Control$Type;
+ class DataLine;
+ class Line$Info;
+ class LineListener;
+ }
+ }
+ }
+}
+
+class javax::sound::sampled::DataLine : public ::java::lang::Object
+{
+
+public:
+ virtual jint available() = 0;
+ virtual void drain() = 0;
+ virtual void flush() = 0;
+ virtual jint getBufferSize() = 0;
+ virtual ::javax::sound::sampled::AudioFormat * getFormat() = 0;
+ virtual jint getFramePosition() = 0;
+ virtual jfloat getLevel() = 0;
+ virtual jlong getLongFramePosition() = 0;
+ virtual jlong getMicrosecondPosition() = 0;
+ virtual jboolean isActive() = 0;
+ virtual jboolean isRunning() = 0;
+ virtual void start() = 0;
+ virtual void stop() = 0;
+ virtual void addLineListener(::javax::sound::sampled::LineListener *) = 0;
+ virtual void close() = 0;
+ virtual ::javax::sound::sampled::Control * getControl(::javax::sound::sampled::Control$Type *) = 0;
+ virtual JArray< ::javax::sound::sampled::Control * > * getControls() = 0;
+ virtual ::javax::sound::sampled::Line$Info * getLineInfo() = 0;
+ virtual jboolean isControlSupported(::javax::sound::sampled::Control$Type *) = 0;
+ virtual jboolean isOpen() = 0;
+ virtual void open() = 0;
+ virtual void removeLineListener(::javax::sound::sampled::LineListener *) = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __javax_sound_sampled_DataLine__