diff options
author | Andrew Haley <aph@redhat.com> | 2016-09-30 16:24:48 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2016-09-30 16:24:48 +0000 |
commit | 07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch) | |
tree | 3f22b3241c513ad168c8353805614ae1249410f4 /libjava/java/security/CodeSource.h | |
parent | eae993948bae8b788c53772bcb9217c063716f93 (diff) | |
download | gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz |
Makefile.def: Remove libjava.
2016-09-30 Andrew Haley <aph@redhat.com>
* Makefile.def: Remove libjava.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerate.
* configure.ac: Likewise.
* configure: Likewise.
* gcc/java: Remove.
* libjava: Likewise.
From-SVN: r240662
Diffstat (limited to 'libjava/java/security/CodeSource.h')
-rw-r--r-- | libjava/java/security/CodeSource.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/libjava/java/security/CodeSource.h b/libjava/java/security/CodeSource.h deleted file mode 100644 index 35dffd9ab59..00000000000 --- a/libjava/java/security/CodeSource.h +++ /dev/null @@ -1,52 +0,0 @@ - -// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- - -#ifndef __java_security_CodeSource__ -#define __java_security_CodeSource__ - -#pragma interface - -#include <java/lang/Object.h> -#include <gcj/array.h> - -extern "Java" -{ - namespace java - { - namespace net - { - class URL; - } - namespace security - { - class CodeSource; - namespace cert - { - class Certificate; - } - } - } -} - -class java::security::CodeSource : public ::java::lang::Object -{ - -public: - CodeSource(::java::net::URL *, JArray< ::java::security::cert::Certificate * > *); - virtual jint hashCode(); - virtual jboolean equals(::java::lang::Object *); - virtual ::java::net::URL * getLocation(); - virtual JArray< ::java::security::cert::Certificate * > * getCertificates(); - virtual jboolean implies(::java::security::CodeSource *); - virtual ::java::lang::String * toString(); -private: - void readObject(::java::io::ObjectInputStream *); - void writeObject(::java::io::ObjectOutputStream *); - static const jlong serialVersionUID = 4977541819976013951LL; - ::java::net::URL * __attribute__((aligned(__alignof__( ::java::lang::Object)))) location; - ::java::util::HashSet * certs; -public: - static ::java::lang::Class class$; -}; - -#endif // __java_security_CodeSource__ |