Merged gcj-eclipse branch to trunk.

From-SVN: r120621
This commit is contained in:
Tom Tromey
2007-01-09 19:58:05 +00:00
parent c648dedbde
commit 97b8365caf
17478 changed files with 606493 additions and 100744 deletions
+33
View File
@@ -0,0 +1,33 @@
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_interfaces_DSAKey__
#define __java_security_interfaces_DSAKey__
#pragma interface
#include <java/lang/Object.h>
extern "Java"
{
namespace java
{
namespace security
{
namespace interfaces
{
class DSAKey;
class DSAParams;
}
}
}
}
class java::security::interfaces::DSAKey : public ::java::lang::Object
{
public:
virtual ::java::security::interfaces::DSAParams * getParams() = 0;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_security_interfaces_DSAKey__
@@ -0,0 +1,35 @@
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_interfaces_DSAKeyPairGenerator__
#define __java_security_interfaces_DSAKeyPairGenerator__
#pragma interface
#include <java/lang/Object.h>
extern "Java"
{
namespace java
{
namespace security
{
class SecureRandom;
namespace interfaces
{
class DSAKeyPairGenerator;
class DSAParams;
}
}
}
}
class java::security::interfaces::DSAKeyPairGenerator : public ::java::lang::Object
{
public:
virtual void initialize(::java::security::interfaces::DSAParams *, ::java::security::SecureRandom *) = 0;
virtual void initialize(jint, jboolean, ::java::security::SecureRandom *) = 0;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_security_interfaces_DSAKeyPairGenerator__
@@ -0,0 +1,38 @@
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_interfaces_DSAParams__
#define __java_security_interfaces_DSAParams__
#pragma interface
#include <java/lang/Object.h>
extern "Java"
{
namespace java
{
namespace math
{
class BigInteger;
}
namespace security
{
namespace interfaces
{
class DSAParams;
}
}
}
}
class java::security::interfaces::DSAParams : public ::java::lang::Object
{
public:
virtual ::java::math::BigInteger * getG() = 0;
virtual ::java::math::BigInteger * getP() = 0;
virtual ::java::math::BigInteger * getQ() = 0;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_security_interfaces_DSAParams__
@@ -0,0 +1,44 @@
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_interfaces_DSAPrivateKey__
#define __java_security_interfaces_DSAPrivateKey__
#pragma interface
#include <java/lang/Object.h>
#include <gcj/array.h>
extern "Java"
{
namespace java
{
namespace math
{
class BigInteger;
}
namespace security
{
namespace interfaces
{
class DSAParams;
class DSAPrivateKey;
}
}
}
}
class java::security::interfaces::DSAPrivateKey : public ::java::lang::Object
{
public:
virtual ::java::math::BigInteger * getX() = 0;
virtual ::java::security::interfaces::DSAParams * getParams() = 0;
virtual ::java::lang::String * getAlgorithm() = 0;
virtual ::java::lang::String * getFormat() = 0;
virtual JArray< jbyte > * getEncoded() = 0;
static const jlong serialVersionUID = 7776497482533790279LL;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_security_interfaces_DSAPrivateKey__
@@ -0,0 +1,44 @@
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_interfaces_DSAPublicKey__
#define __java_security_interfaces_DSAPublicKey__
#pragma interface
#include <java/lang/Object.h>
#include <gcj/array.h>
extern "Java"
{
namespace java
{
namespace math
{
class BigInteger;
}
namespace security
{
namespace interfaces
{
class DSAParams;
class DSAPublicKey;
}
}
}
}
class java::security::interfaces::DSAPublicKey : public ::java::lang::Object
{
public:
virtual ::java::math::BigInteger * getY() = 0;
virtual ::java::security::interfaces::DSAParams * getParams() = 0;
virtual ::java::lang::String * getAlgorithm() = 0;
virtual ::java::lang::String * getFormat() = 0;
virtual JArray< jbyte > * getEncoded() = 0;
static const jlong serialVersionUID = 1234526332779022332LL;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_security_interfaces_DSAPublicKey__
+36
View File
@@ -0,0 +1,36 @@
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_interfaces_RSAKey__
#define __java_security_interfaces_RSAKey__
#pragma interface
#include <java/lang/Object.h>
extern "Java"
{
namespace java
{
namespace math
{
class BigInteger;
}
namespace security
{
namespace interfaces
{
class RSAKey;
}
}
}
}
class java::security::interfaces::RSAKey : public ::java::lang::Object
{
public:
virtual ::java::math::BigInteger * getModulus() = 0;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_security_interfaces_RSAKey__
@@ -0,0 +1,54 @@
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_interfaces_RSAMultiPrimePrivateCrtKey__
#define __java_security_interfaces_RSAMultiPrimePrivateCrtKey__
#pragma interface
#include <java/lang/Object.h>
#include <gcj/array.h>
extern "Java"
{
namespace java
{
namespace math
{
class BigInteger;
}
namespace security
{
namespace interfaces
{
class RSAMultiPrimePrivateCrtKey;
}
namespace spec
{
class RSAOtherPrimeInfo;
}
}
}
}
class java::security::interfaces::RSAMultiPrimePrivateCrtKey : public ::java::lang::Object
{
public:
virtual ::java::math::BigInteger * getPublicExponent() = 0;
virtual ::java::math::BigInteger * getPrimeP() = 0;
virtual ::java::math::BigInteger * getPrimeQ() = 0;
virtual ::java::math::BigInteger * getPrimeExponentP() = 0;
virtual ::java::math::BigInteger * getPrimeExponentQ() = 0;
virtual ::java::math::BigInteger * getCrtCoefficient() = 0;
virtual JArray< ::java::security::spec::RSAOtherPrimeInfo * > * getOtherPrimeInfo() = 0;
virtual ::java::math::BigInteger * getPrivateExponent() = 0;
virtual ::java::lang::String * getAlgorithm() = 0;
virtual ::java::lang::String * getFormat() = 0;
virtual JArray< jbyte > * getEncoded() = 0;
virtual ::java::math::BigInteger * getModulus() = 0;
static const jlong serialVersionUID = 618058533534628008LL;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_security_interfaces_RSAMultiPrimePrivateCrtKey__
@@ -0,0 +1,49 @@
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_interfaces_RSAPrivateCrtKey__
#define __java_security_interfaces_RSAPrivateCrtKey__
#pragma interface
#include <java/lang/Object.h>
#include <gcj/array.h>
extern "Java"
{
namespace java
{
namespace math
{
class BigInteger;
}
namespace security
{
namespace interfaces
{
class RSAPrivateCrtKey;
}
}
}
}
class java::security::interfaces::RSAPrivateCrtKey : public ::java::lang::Object
{
public:
virtual ::java::math::BigInteger * getPublicExponent() = 0;
virtual ::java::math::BigInteger * getPrimeP() = 0;
virtual ::java::math::BigInteger * getPrimeQ() = 0;
virtual ::java::math::BigInteger * getPrimeExponentP() = 0;
virtual ::java::math::BigInteger * getPrimeExponentQ() = 0;
virtual ::java::math::BigInteger * getCrtCoefficient() = 0;
virtual ::java::math::BigInteger * getPrivateExponent() = 0;
virtual ::java::lang::String * getAlgorithm() = 0;
virtual ::java::lang::String * getFormat() = 0;
virtual JArray< jbyte > * getEncoded() = 0;
virtual ::java::math::BigInteger * getModulus() = 0;
static const jlong serialVersionUID = -5682214253527700368LL;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_security_interfaces_RSAPrivateCrtKey__
@@ -0,0 +1,43 @@
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_interfaces_RSAPrivateKey__
#define __java_security_interfaces_RSAPrivateKey__
#pragma interface
#include <java/lang/Object.h>
#include <gcj/array.h>
extern "Java"
{
namespace java
{
namespace math
{
class BigInteger;
}
namespace security
{
namespace interfaces
{
class RSAPrivateKey;
}
}
}
}
class java::security::interfaces::RSAPrivateKey : public ::java::lang::Object
{
public:
virtual ::java::math::BigInteger * getPrivateExponent() = 0;
virtual ::java::lang::String * getAlgorithm() = 0;
virtual ::java::lang::String * getFormat() = 0;
virtual JArray< jbyte > * getEncoded() = 0;
virtual ::java::math::BigInteger * getModulus() = 0;
static const jlong serialVersionUID = 5187144804936595022LL;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_security_interfaces_RSAPrivateKey__
@@ -0,0 +1,43 @@
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_interfaces_RSAPublicKey__
#define __java_security_interfaces_RSAPublicKey__
#pragma interface
#include <java/lang/Object.h>
#include <gcj/array.h>
extern "Java"
{
namespace java
{
namespace math
{
class BigInteger;
}
namespace security
{
namespace interfaces
{
class RSAPublicKey;
}
}
}
}
class java::security::interfaces::RSAPublicKey : public ::java::lang::Object
{
public:
virtual ::java::math::BigInteger * getPublicExponent() = 0;
virtual ::java::lang::String * getAlgorithm() = 0;
virtual ::java::lang::String * getFormat() = 0;
virtual JArray< jbyte > * getEncoded() = 0;
virtual ::java::math::BigInteger * getModulus() = 0;
static const jlong serialVersionUID = -8727434096241101194LL;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_security_interfaces_RSAPublicKey__