OSDN Git Service

Merged gcj-eclipse branch to trunk.
[pf3gnuchains/gcc-fork.git] / libjava / java / net / PasswordAuthentication.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __java_net_PasswordAuthentication__
5 #define __java_net_PasswordAuthentication__
6
7 #pragma interface
8
9 #include <java/lang/Object.h>
10 #include <gcj/array.h>
11
12 extern "Java"
13 {
14   namespace java
15   {
16     namespace net
17     {
18         class PasswordAuthentication;
19     }
20   }
21 }
22
23 class java::net::PasswordAuthentication : public ::java::lang::Object
24 {
25
26 public:
27   PasswordAuthentication(::java::lang::String *, JArray< jchar > *);
28   ::java::lang::String * getUserName();
29   JArray< jchar > * getPassword();
30 private:
31   ::java::lang::String * __attribute__((aligned(__alignof__( ::java::lang::Object)))) username;
32   JArray< jchar > * password;
33 public:
34   static ::java::lang::Class class$;
35 };
36
37 #endif // __java_net_PasswordAuthentication__