summaryrefslogtreecommitdiff
path: root/libjava/org/omg/CORBA/portable
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /libjava/org/omg/CORBA/portable
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'libjava/org/omg/CORBA/portable')
-rw-r--r--libjava/org/omg/CORBA/portable/ApplicationException.h43
-rw-r--r--libjava/org/omg/CORBA/portable/BoxedValueHelper.h39
-rw-r--r--libjava/org/omg/CORBA/portable/CustomValue.h41
-rw-r--r--libjava/org/omg/CORBA/portable/Delegate.h77
-rw-r--r--libjava/org/omg/CORBA/portable/IDLEntity.h34
-rw-r--r--libjava/org/omg/CORBA/portable/IndirectionException.h39
-rw-r--r--libjava/org/omg/CORBA/portable/InputStream.h85
-rw-r--r--libjava/org/omg/CORBA/portable/InvokeHandler.h38
-rw-r--r--libjava/org/omg/CORBA/portable/ObjectImpl.h80
-rw-r--r--libjava/org/omg/CORBA/portable/OutputStream.h87
-rw-r--r--libjava/org/omg/CORBA/portable/RemarshalException.h38
-rw-r--r--libjava/org/omg/CORBA/portable/ResponseHandler.h37
-rw-r--r--libjava/org/omg/CORBA/portable/ServantObject.h36
-rw-r--r--libjava/org/omg/CORBA/portable/Streamable.h40
-rw-r--r--libjava/org/omg/CORBA/portable/StreamableValue.h43
-rw-r--r--libjava/org/omg/CORBA/portable/UnknownException.h39
-rw-r--r--libjava/org/omg/CORBA/portable/ValueBase.h37
-rw-r--r--libjava/org/omg/CORBA/portable/ValueFactory.h42
18 files changed, 875 insertions, 0 deletions
diff --git a/libjava/org/omg/CORBA/portable/ApplicationException.h b/libjava/org/omg/CORBA/portable/ApplicationException.h
new file mode 100644
index 000000000..e7dad8976
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/ApplicationException.h
@@ -0,0 +1,43 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_ApplicationException__
+#define __org_omg_CORBA_portable_ApplicationException__
+
+#pragma interface
+
+#include <java/lang/Exception.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class ApplicationException;
+ class InputStream;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::ApplicationException : public ::java::lang::Exception
+{
+
+public:
+ ApplicationException(::java::lang::String *, ::org::omg::CORBA::portable::InputStream *);
+ virtual ::java::lang::String * getId();
+ virtual ::org::omg::CORBA::portable::InputStream * getInputStream();
+private:
+ static const jlong serialVersionUID = -2088103024111528125LL;
+ ::org::omg::CORBA::portable::InputStream * __attribute__((aligned(__alignof__( ::java::lang::Exception)))) m_input;
+ ::java::lang::String * m_id;
+public:
+ static ::java::lang::Class class$;
+};
+
+#endif // __org_omg_CORBA_portable_ApplicationException__
diff --git a/libjava/org/omg/CORBA/portable/BoxedValueHelper.h b/libjava/org/omg/CORBA/portable/BoxedValueHelper.h
new file mode 100644
index 000000000..958ad2161
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/BoxedValueHelper.h
@@ -0,0 +1,39 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_BoxedValueHelper__
+#define __org_omg_CORBA_portable_BoxedValueHelper__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class BoxedValueHelper;
+ class InputStream;
+ class OutputStream;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::BoxedValueHelper : public ::java::lang::Object
+{
+
+public:
+ virtual ::java::lang::String * get_id() = 0;
+ virtual ::java::io::Serializable * read_value(::org::omg::CORBA::portable::InputStream *) = 0;
+ virtual void write_value(::org::omg::CORBA::portable::OutputStream *, ::java::io::Serializable *) = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_omg_CORBA_portable_BoxedValueHelper__
diff --git a/libjava/org/omg/CORBA/portable/CustomValue.h b/libjava/org/omg/CORBA/portable/CustomValue.h
new file mode 100644
index 000000000..051e5462d
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/CustomValue.h
@@ -0,0 +1,41 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_CustomValue__
+#define __org_omg_CORBA_portable_CustomValue__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ class DataInputStream;
+ class DataOutputStream;
+ namespace portable
+ {
+ class CustomValue;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::CustomValue : public ::java::lang::Object
+{
+
+public:
+ virtual JArray< ::java::lang::String * > * _truncatable_ids() = 0;
+ virtual void marshal(::org::omg::CORBA::DataOutputStream *) = 0;
+ virtual void unmarshal(::org::omg::CORBA::DataInputStream *) = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_omg_CORBA_portable_CustomValue__
diff --git a/libjava/org/omg/CORBA/portable/Delegate.h b/libjava/org/omg/CORBA/portable/Delegate.h
new file mode 100644
index 000000000..233160f98
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/Delegate.h
@@ -0,0 +1,77 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_Delegate__
+#define __org_omg_CORBA_portable_Delegate__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ class Context;
+ class ContextList;
+ class DomainManager;
+ class ExceptionList;
+ class NVList;
+ class NamedValue;
+ class ORB;
+ class Object;
+ class Policy;
+ class Request;
+ class SetOverrideType;
+ namespace portable
+ {
+ class Delegate;
+ class InputStream;
+ class OutputStream;
+ class ServantObject;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::Delegate : public ::java::lang::Object
+{
+
+public:
+ Delegate();
+ virtual ::org::omg::CORBA::Request * create_request(::org::omg::CORBA::Object *, ::org::omg::CORBA::Context *, ::java::lang::String *, ::org::omg::CORBA::NVList *, ::org::omg::CORBA::NamedValue *) = 0;
+ virtual ::org::omg::CORBA::Request * create_request(::org::omg::CORBA::Object *, ::org::omg::CORBA::Context *, ::java::lang::String *, ::org::omg::CORBA::NVList *, ::org::omg::CORBA::NamedValue *, ::org::omg::CORBA::ExceptionList *, ::org::omg::CORBA::ContextList *) = 0;
+ virtual ::org::omg::CORBA::Object * duplicate(::org::omg::CORBA::Object *) = 0;
+ virtual JArray< ::org::omg::CORBA::DomainManager * > * get_domain_managers(::org::omg::CORBA::Object *);
+ virtual ::org::omg::CORBA::Object * get_interface_def(::org::omg::CORBA::Object *) = 0;
+ virtual ::org::omg::CORBA::Policy * get_policy(::org::omg::CORBA::Object *, jint);
+ virtual jint hash(::org::omg::CORBA::Object *, jint) = 0;
+ virtual jboolean is_a(::org::omg::CORBA::Object *, ::java::lang::String *) = 0;
+ virtual jboolean is_equivalent(::org::omg::CORBA::Object *, ::org::omg::CORBA::Object *) = 0;
+ virtual jboolean is_local(::org::omg::CORBA::Object *);
+ virtual jboolean non_existent(::org::omg::CORBA::Object *) = 0;
+ virtual jboolean equals(::org::omg::CORBA::Object *, ::java::lang::Object *);
+ virtual jint hashCode(::org::omg::CORBA::Object *);
+ virtual ::org::omg::CORBA::portable::InputStream * invoke(::org::omg::CORBA::Object *, ::org::omg::CORBA::portable::OutputStream *);
+ virtual ::org::omg::CORBA::ORB * orb(::org::omg::CORBA::Object *);
+ virtual void release(::org::omg::CORBA::Object *) = 0;
+ virtual void releaseReply(::org::omg::CORBA::Object *, ::org::omg::CORBA::portable::InputStream *);
+ virtual ::org::omg::CORBA::Request * request(::org::omg::CORBA::Object *, ::java::lang::String *) = 0;
+ virtual ::org::omg::CORBA::portable::OutputStream * request(::org::omg::CORBA::Object *, ::java::lang::String *, jboolean);
+ virtual void servant_postinvoke(::org::omg::CORBA::Object *, ::org::omg::CORBA::portable::ServantObject *);
+ virtual ::org::omg::CORBA::portable::ServantObject * servant_preinvoke(::org::omg::CORBA::Object *, ::java::lang::String *, ::java::lang::Class *);
+ virtual ::org::omg::CORBA::Object * set_policy_override(::org::omg::CORBA::Object *, JArray< ::org::omg::CORBA::Policy * > *, ::org::omg::CORBA::SetOverrideType *);
+ virtual ::java::lang::String * toString(::org::omg::CORBA::Object *);
+private:
+ static ::java::lang::String * WHY;
+public:
+ static ::java::lang::Class class$;
+};
+
+#endif // __org_omg_CORBA_portable_Delegate__
diff --git a/libjava/org/omg/CORBA/portable/IDLEntity.h b/libjava/org/omg/CORBA/portable/IDLEntity.h
new file mode 100644
index 000000000..2688c48ba
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/IDLEntity.h
@@ -0,0 +1,34 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_IDLEntity__
+#define __org_omg_CORBA_portable_IDLEntity__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class IDLEntity;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::IDLEntity : public ::java::lang::Object
+{
+
+public:
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_omg_CORBA_portable_IDLEntity__
diff --git a/libjava/org/omg/CORBA/portable/IndirectionException.h b/libjava/org/omg/CORBA/portable/IndirectionException.h
new file mode 100644
index 000000000..00da4529d
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/IndirectionException.h
@@ -0,0 +1,39 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_IndirectionException__
+#define __org_omg_CORBA_portable_IndirectionException__
+
+#pragma interface
+
+#include <org/omg/CORBA/SystemException.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class IndirectionException;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::IndirectionException : public ::org::omg::CORBA::SystemException
+{
+
+public:
+ IndirectionException(jint);
+private:
+ static const jlong serialVersionUID = -1923858944380721643LL;
+public:
+ jint __attribute__((aligned(__alignof__( ::org::omg::CORBA::SystemException)))) offset;
+ static ::java::lang::Class class$;
+};
+
+#endif // __org_omg_CORBA_portable_IndirectionException__
diff --git a/libjava/org/omg/CORBA/portable/InputStream.h b/libjava/org/omg/CORBA/portable/InputStream.h
new file mode 100644
index 000000000..f60f539ee
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/InputStream.h
@@ -0,0 +1,85 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_InputStream__
+#define __org_omg_CORBA_portable_InputStream__
+
+#pragma interface
+
+#include <java/io/InputStream.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace java
+ {
+ namespace math
+ {
+ class BigDecimal;
+ }
+ }
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ class Any;
+ class Context;
+ class ORB;
+ class Object;
+ class Principal;
+ class TypeCode;
+ namespace portable
+ {
+ class InputStream;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::InputStream : public ::java::io::InputStream
+{
+
+public:
+ InputStream();
+ virtual ::org::omg::CORBA::ORB * orb();
+ virtual ::org::omg::CORBA::Context * read_Context();
+ virtual ::org::omg::CORBA::Object * read_Object() = 0;
+ virtual jchar read_char() = 0;
+ virtual jdouble read_double() = 0;
+ virtual jfloat read_float() = 0;
+ virtual void read_float_array(JArray< jfloat > *, jint, jint) = 0;
+ virtual jint read_long() = 0;
+ virtual jlong read_longlong() = 0;
+ virtual void read_longlong_array(JArray< jlong > *, jint, jint) = 0;
+ virtual jbyte read_octet() = 0;
+ virtual void read_octet_array(JArray< jbyte > *, jint, jint) = 0;
+ virtual jshort read_short() = 0;
+ virtual void read_short_array(JArray< jshort > *, jint, jint) = 0;
+ virtual jint read_ulong() = 0;
+ virtual void read_ulong_array(JArray< jint > *, jint, jint) = 0;
+ virtual jint read();
+ virtual ::org::omg::CORBA::TypeCode * read_TypeCode() = 0;
+ virtual jboolean read_boolean() = 0;
+ virtual void read_boolean_array(JArray< jboolean > *, jint, jint) = 0;
+ virtual void read_char_array(JArray< jchar > *, jint, jint) = 0;
+ virtual void read_double_array(JArray< jdouble > *, jint, jint) = 0;
+ virtual void read_long_array(JArray< jint > *, jint, jint) = 0;
+ virtual ::java::lang::String * read_string() = 0;
+ virtual jlong read_ulonglong() = 0;
+ virtual void read_ulonglong_array(JArray< jlong > *, jint, jint) = 0;
+ virtual jshort read_ushort() = 0;
+ virtual void read_ushort_array(JArray< jshort > *, jint, jint) = 0;
+ virtual ::org::omg::CORBA::Object * read_Object(::java::lang::Class *);
+ virtual ::org::omg::CORBA::Any * read_any() = 0;
+ virtual ::java::math::BigDecimal * read_fixed();
+ virtual jchar read_wchar() = 0;
+ virtual void read_wchar_array(JArray< jchar > *, jint, jint) = 0;
+ virtual ::java::lang::String * read_wstring() = 0;
+ virtual ::org::omg::CORBA::Principal * read_Principal();
+ static ::java::lang::Class class$;
+};
+
+#endif // __org_omg_CORBA_portable_InputStream__
diff --git a/libjava/org/omg/CORBA/portable/InvokeHandler.h b/libjava/org/omg/CORBA/portable/InvokeHandler.h
new file mode 100644
index 000000000..0b6cbf213
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/InvokeHandler.h
@@ -0,0 +1,38 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_InvokeHandler__
+#define __org_omg_CORBA_portable_InvokeHandler__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class InputStream;
+ class InvokeHandler;
+ class OutputStream;
+ class ResponseHandler;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::InvokeHandler : public ::java::lang::Object
+{
+
+public:
+ virtual ::org::omg::CORBA::portable::OutputStream * _invoke(::java::lang::String *, ::org::omg::CORBA::portable::InputStream *, ::org::omg::CORBA::portable::ResponseHandler *) = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_omg_CORBA_portable_InvokeHandler__
diff --git a/libjava/org/omg/CORBA/portable/ObjectImpl.h b/libjava/org/omg/CORBA/portable/ObjectImpl.h
new file mode 100644
index 000000000..c0e9e6ed3
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/ObjectImpl.h
@@ -0,0 +1,80 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_ObjectImpl__
+#define __org_omg_CORBA_portable_ObjectImpl__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ class Context;
+ class ContextList;
+ class DomainManager;
+ class ExceptionList;
+ class NVList;
+ class NamedValue;
+ class ORB;
+ class Object;
+ class Policy;
+ class Request;
+ class SetOverrideType;
+ namespace portable
+ {
+ class Delegate;
+ class InputStream;
+ class ObjectImpl;
+ class OutputStream;
+ class ServantObject;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::ObjectImpl : public ::java::lang::Object
+{
+
+public:
+ ObjectImpl();
+ virtual ::org::omg::CORBA::Request * _create_request(::org::omg::CORBA::Context *, ::java::lang::String *, ::org::omg::CORBA::NVList *, ::org::omg::CORBA::NamedValue *, ::org::omg::CORBA::ExceptionList *, ::org::omg::CORBA::ContextList *);
+ virtual ::org::omg::CORBA::Request * _create_request(::org::omg::CORBA::Context *, ::java::lang::String *, ::org::omg::CORBA::NVList *, ::org::omg::CORBA::NamedValue *);
+ virtual ::org::omg::CORBA::Object * _duplicate();
+ virtual ::org::omg::CORBA::portable::Delegate * _get_delegate();
+ virtual JArray< ::org::omg::CORBA::DomainManager * > * _get_domain_managers();
+ virtual ::org::omg::CORBA::Object * _get_interface_def();
+ virtual ::org::omg::CORBA::Policy * _get_policy(jint);
+ virtual JArray< ::java::lang::String * > * _ids() = 0;
+ virtual jint _hash(jint);
+ virtual ::org::omg::CORBA::portable::InputStream * _invoke(::org::omg::CORBA::portable::OutputStream *);
+ virtual jboolean _is_a(::java::lang::String *);
+ virtual jboolean _is_equivalent(::org::omg::CORBA::Object *);
+ virtual jboolean _is_local();
+ virtual jboolean _non_existent();
+ virtual ::org::omg::CORBA::ORB * _orb();
+ virtual void _release();
+ virtual void _releaseReply(::org::omg::CORBA::portable::InputStream *);
+ virtual ::org::omg::CORBA::Request * _request(::java::lang::String *);
+ virtual ::org::omg::CORBA::portable::OutputStream * _request(::java::lang::String *, jboolean);
+ virtual void _servant_postinvoke(::org::omg::CORBA::portable::ServantObject *);
+ virtual ::org::omg::CORBA::portable::ServantObject * _servant_preinvoke(::java::lang::String *, ::java::lang::Class *);
+ virtual void _set_delegate(::org::omg::CORBA::portable::Delegate *);
+ virtual ::org::omg::CORBA::Object * _set_policy_override(JArray< ::org::omg::CORBA::Policy * > *, ::org::omg::CORBA::SetOverrideType *);
+ virtual jboolean equals(::java::lang::Object *);
+ virtual ::java::lang::String * toString();
+public: // actually package-private
+ ::org::omg::CORBA::portable::Delegate * __attribute__((aligned(__alignof__( ::java::lang::Object)))) delegate;
+public:
+ static ::java::lang::Class class$;
+};
+
+#endif // __org_omg_CORBA_portable_ObjectImpl__
diff --git a/libjava/org/omg/CORBA/portable/OutputStream.h b/libjava/org/omg/CORBA/portable/OutputStream.h
new file mode 100644
index 000000000..d1e22c646
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/OutputStream.h
@@ -0,0 +1,87 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_OutputStream__
+#define __org_omg_CORBA_portable_OutputStream__
+
+#pragma interface
+
+#include <java/io/OutputStream.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace java
+ {
+ namespace math
+ {
+ class BigDecimal;
+ }
+ }
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ class Any;
+ class Context;
+ class ContextList;
+ class ORB;
+ class Object;
+ class Principal;
+ class TypeCode;
+ namespace portable
+ {
+ class InputStream;
+ class OutputStream;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::OutputStream : public ::java::io::OutputStream
+{
+
+public:
+ OutputStream();
+ virtual ::org::omg::CORBA::portable::InputStream * create_input_stream() = 0;
+ virtual ::org::omg::CORBA::ORB * orb();
+ virtual void write(jint);
+ virtual void write_Context(::org::omg::CORBA::Context *, ::org::omg::CORBA::ContextList *);
+ virtual void write_Object(::org::omg::CORBA::Object *) = 0;
+ virtual void write_Principal(::org::omg::CORBA::Principal *);
+ virtual void write_TypeCode(::org::omg::CORBA::TypeCode *) = 0;
+ virtual void write_any(::org::omg::CORBA::Any *) = 0;
+ virtual void write_boolean(jboolean) = 0;
+ virtual void write_boolean_array(JArray< jboolean > *, jint, jint) = 0;
+ virtual void write_char(jchar) = 0;
+ virtual void write_char_array(JArray< jchar > *, jint, jint) = 0;
+ virtual void write_double(jdouble) = 0;
+ virtual void write_double_array(JArray< jdouble > *, jint, jint) = 0;
+ virtual void write_fixed(::java::math::BigDecimal *);
+ virtual void write_float(jfloat) = 0;
+ virtual void write_float_array(JArray< jfloat > *, jint, jint) = 0;
+ virtual void write_long(jint) = 0;
+ virtual void write_long_array(JArray< jint > *, jint, jint) = 0;
+ virtual void write_longlong(jlong) = 0;
+ virtual void write_longlong_array(JArray< jlong > *, jint, jint) = 0;
+ virtual void write_octet(jbyte) = 0;
+ virtual void write_octet_array(JArray< jbyte > *, jint, jint) = 0;
+ virtual void write_short(jshort) = 0;
+ virtual void write_short_array(JArray< jshort > *, jint, jint) = 0;
+ virtual void write_string(::java::lang::String *) = 0;
+ virtual void write_ulong(jint) = 0;
+ virtual void write_ulong_array(JArray< jint > *, jint, jint) = 0;
+ virtual void write_ulonglong(jlong) = 0;
+ virtual void write_ulonglong_array(JArray< jlong > *, jint, jint) = 0;
+ virtual void write_ushort(jshort) = 0;
+ virtual void write_ushort_array(JArray< jshort > *, jint, jint) = 0;
+ virtual void write_wchar(jchar) = 0;
+ virtual void write_wchar_array(JArray< jchar > *, jint, jint) = 0;
+ virtual void write_wstring(::java::lang::String *) = 0;
+ static ::java::lang::Class class$;
+};
+
+#endif // __org_omg_CORBA_portable_OutputStream__
diff --git a/libjava/org/omg/CORBA/portable/RemarshalException.h b/libjava/org/omg/CORBA/portable/RemarshalException.h
new file mode 100644
index 000000000..ed9ea8709
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/RemarshalException.h
@@ -0,0 +1,38 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_RemarshalException__
+#define __org_omg_CORBA_portable_RemarshalException__
+
+#pragma interface
+
+#include <java/lang/Exception.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class RemarshalException;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::RemarshalException : public ::java::lang::Exception
+{
+
+public:
+ RemarshalException();
+private:
+ static const jlong serialVersionUID = -7025491253080954918LL;
+public:
+ static ::java::lang::Class class$;
+};
+
+#endif // __org_omg_CORBA_portable_RemarshalException__
diff --git a/libjava/org/omg/CORBA/portable/ResponseHandler.h b/libjava/org/omg/CORBA/portable/ResponseHandler.h
new file mode 100644
index 000000000..f5f882241
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/ResponseHandler.h
@@ -0,0 +1,37 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_ResponseHandler__
+#define __org_omg_CORBA_portable_ResponseHandler__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class OutputStream;
+ class ResponseHandler;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::ResponseHandler : public ::java::lang::Object
+{
+
+public:
+ virtual ::org::omg::CORBA::portable::OutputStream * createExceptionReply() = 0;
+ virtual ::org::omg::CORBA::portable::OutputStream * createReply() = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_omg_CORBA_portable_ResponseHandler__
diff --git a/libjava/org/omg/CORBA/portable/ServantObject.h b/libjava/org/omg/CORBA/portable/ServantObject.h
new file mode 100644
index 000000000..d15cc9bd9
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/ServantObject.h
@@ -0,0 +1,36 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_ServantObject__
+#define __org_omg_CORBA_portable_ServantObject__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class ServantObject;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::ServantObject : public ::java::lang::Object
+{
+
+public:
+ ServantObject();
+ ::java::lang::Object * __attribute__((aligned(__alignof__( ::java::lang::Object)))) servant;
+ static ::java::lang::Class class$;
+};
+
+#endif // __org_omg_CORBA_portable_ServantObject__
diff --git a/libjava/org/omg/CORBA/portable/Streamable.h b/libjava/org/omg/CORBA/portable/Streamable.h
new file mode 100644
index 000000000..3d1d69612
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/Streamable.h
@@ -0,0 +1,40 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_Streamable__
+#define __org_omg_CORBA_portable_Streamable__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ class TypeCode;
+ namespace portable
+ {
+ class InputStream;
+ class OutputStream;
+ class Streamable;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::Streamable : public ::java::lang::Object
+{
+
+public:
+ virtual void _read(::org::omg::CORBA::portable::InputStream *) = 0;
+ virtual ::org::omg::CORBA::TypeCode * _type() = 0;
+ virtual void _write(::org::omg::CORBA::portable::OutputStream *) = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_omg_CORBA_portable_Streamable__
diff --git a/libjava/org/omg/CORBA/portable/StreamableValue.h b/libjava/org/omg/CORBA/portable/StreamableValue.h
new file mode 100644
index 000000000..db13bc3d9
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/StreamableValue.h
@@ -0,0 +1,43 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_StreamableValue__
+#define __org_omg_CORBA_portable_StreamableValue__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ class TypeCode;
+ namespace portable
+ {
+ class InputStream;
+ class OutputStream;
+ class StreamableValue;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::StreamableValue : public ::java::lang::Object
+{
+
+public:
+ virtual void _read(::org::omg::CORBA::portable::InputStream *) = 0;
+ virtual ::org::omg::CORBA::TypeCode * _type() = 0;
+ virtual void _write(::org::omg::CORBA::portable::OutputStream *) = 0;
+ virtual JArray< ::java::lang::String * > * _truncatable_ids() = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_omg_CORBA_portable_StreamableValue__
diff --git a/libjava/org/omg/CORBA/portable/UnknownException.h b/libjava/org/omg/CORBA/portable/UnknownException.h
new file mode 100644
index 000000000..9ae84106e
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/UnknownException.h
@@ -0,0 +1,39 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_UnknownException__
+#define __org_omg_CORBA_portable_UnknownException__
+
+#pragma interface
+
+#include <org/omg/CORBA/SystemException.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class UnknownException;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::UnknownException : public ::org::omg::CORBA::SystemException
+{
+
+public:
+ UnknownException(::java::lang::Throwable *);
+private:
+ static const jlong serialVersionUID = 1725238280802233450LL;
+public:
+ ::java::lang::Throwable * __attribute__((aligned(__alignof__( ::org::omg::CORBA::SystemException)))) originalEx;
+ static ::java::lang::Class class$;
+};
+
+#endif // __org_omg_CORBA_portable_UnknownException__
diff --git a/libjava/org/omg/CORBA/portable/ValueBase.h b/libjava/org/omg/CORBA/portable/ValueBase.h
new file mode 100644
index 000000000..4c5669f85
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/ValueBase.h
@@ -0,0 +1,37 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_ValueBase__
+#define __org_omg_CORBA_portable_ValueBase__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class ValueBase;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::ValueBase : public ::java::lang::Object
+{
+
+public:
+ virtual JArray< ::java::lang::String * > * _truncatable_ids() = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_omg_CORBA_portable_ValueBase__
diff --git a/libjava/org/omg/CORBA/portable/ValueFactory.h b/libjava/org/omg/CORBA/portable/ValueFactory.h
new file mode 100644
index 000000000..5946803d1
--- /dev/null
+++ b/libjava/org/omg/CORBA/portable/ValueFactory.h
@@ -0,0 +1,42 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_omg_CORBA_portable_ValueFactory__
+#define __org_omg_CORBA_portable_ValueFactory__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace omg
+ {
+ namespace CORBA
+ {
+ namespace portable
+ {
+ class ValueFactory;
+ }
+ }
+ namespace CORBA_2_3
+ {
+ namespace portable
+ {
+ class InputStream;
+ }
+ }
+ }
+ }
+}
+
+class org::omg::CORBA::portable::ValueFactory : public ::java::lang::Object
+{
+
+public:
+ virtual ::java::io::Serializable * read_value(::org::omg::CORBA_2_3::portable::InputStream *) = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_omg_CORBA_portable_ValueFactory__