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/javax/management/MBeanInfo.h | |
parent | eae993948bae8b788c53772bcb9217c063716f93 (diff) | |
download | gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.zip gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.bz2 |
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/javax/management/MBeanInfo.h')
-rw-r--r-- | libjava/javax/management/MBeanInfo.h | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/libjava/javax/management/MBeanInfo.h b/libjava/javax/management/MBeanInfo.h deleted file mode 100644 index cecc12f..0000000 --- a/libjava/javax/management/MBeanInfo.h +++ /dev/null @@ -1,55 +0,0 @@ - -// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- - -#ifndef __javax_management_MBeanInfo__ -#define __javax_management_MBeanInfo__ - -#pragma interface - -#include <java/lang/Object.h> -#include <gcj/array.h> - -extern "Java" -{ - namespace javax - { - namespace management - { - class MBeanAttributeInfo; - class MBeanConstructorInfo; - class MBeanInfo; - class MBeanNotificationInfo; - class MBeanOperationInfo; - } - } -} - -class javax::management::MBeanInfo : public ::java::lang::Object -{ - -public: - MBeanInfo(::java::lang::String *, ::java::lang::String *, JArray< ::javax::management::MBeanAttributeInfo * > *, JArray< ::javax::management::MBeanConstructorInfo * > *, JArray< ::javax::management::MBeanOperationInfo * > *, JArray< ::javax::management::MBeanNotificationInfo * > *); - virtual ::java::lang::Object * clone(); - virtual jboolean equals(::java::lang::Object *); - virtual JArray< ::javax::management::MBeanAttributeInfo * > * getAttributes(); - virtual ::java::lang::String * getClassName(); - virtual JArray< ::javax::management::MBeanConstructorInfo * > * getConstructors(); - virtual ::java::lang::String * getDescription(); - virtual JArray< ::javax::management::MBeanNotificationInfo * > * getNotifications(); - virtual JArray< ::javax::management::MBeanOperationInfo * > * getOperations(); - virtual jint hashCode(); - virtual ::java::lang::String * toString(); -private: - static const jlong serialVersionUID = -6451021435135161911LL; - ::java::lang::String * __attribute__((aligned(__alignof__( ::java::lang::Object)))) description; - ::java::lang::String * className; - JArray< ::javax::management::MBeanAttributeInfo * > * attributes; - JArray< ::javax::management::MBeanOperationInfo * > * operations; - JArray< ::javax::management::MBeanConstructorInfo * > * constructors; - JArray< ::javax::management::MBeanNotificationInfo * > * notifications; - ::java::lang::String * string; -public: - static ::java::lang::Class class$; -}; - -#endif // __javax_management_MBeanInfo__ |