diff options
author | gandalf <gandalf@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-23 15:19:26 +0000 |
---|---|---|
committer | gandalf <gandalf@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-23 15:19:26 +0000 |
commit | 5c7411981584e487ac41794feb98a66df9fd6fcb (patch) | |
tree | febe3d4d4c0c994db223fee8e819bde6582494c9 /libjava/java/io/Console.h | |
parent | 112dfe9f689af01c2dd00e0f153fc25d69095b6c (diff) | |
download | ppe42-gcc-5c7411981584e487ac41794feb98a66df9fd6fcb.tar.gz ppe42-gcc-5c7411981584e487ac41794feb98a66df9fd6fcb.zip |
Merge GNU Classpath 0.99 into libjava.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@185741 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/io/Console.h')
-rw-r--r-- | libjava/java/io/Console.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/libjava/java/io/Console.h b/libjava/java/io/Console.h new file mode 100644 index 00000000000..65a30723395 --- /dev/null +++ b/libjava/java/io/Console.h @@ -0,0 +1,36 @@ + +// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- + +#ifndef __java_io_Console__ +#define __java_io_Console__ + +#pragma interface + +#include <java/lang/Object.h> +#include <gcj/array.h> + + +class java::io::Console : public ::java::lang::Object +{ + +public: + static ::java::io::Console * console(); +private: + Console(); +public: + ::java::io::PrintWriter * writer(); + ::java::io::Reader * reader(); + ::java::io::Console * format(::java::lang::String *, JArray< ::java::lang::Object * > *); + ::java::io::Console * printf(::java::lang::String *, JArray< ::java::lang::Object * > *); + ::java::lang::String * readLine(::java::lang::String *, JArray< ::java::lang::Object * > *); + ::java::lang::String * readLine(); + JArray< jchar > * readPassword(::java::lang::String *, JArray< ::java::lang::Object * > *); + JArray< jchar > * readPassword(); + void flush(); +private: + static ::java::io::Console * console__; +public: + static ::java::lang::Class class$; +}; + +#endif // __java_io_Console__ |