feat(jdk8): move files to new folder to avoid resources compiled.
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/AttrDescriptionSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:51 AM PDT
|
||||
*/
|
||||
|
||||
public final class AttrDescriptionSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/AttrDescriptionSeq:1.0";
|
||||
|
||||
public AttrDescriptionSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.AttributeDescription[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.AttributeDescription[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = com.sun.org.omg.CORBA.AttributeDescriptionHelper.type ();
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.AttrDescriptionSeqHelper.id (), "AttrDescriptionSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.AttributeDescription[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.AttributeDescription value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
value = new com.sun.org.omg.CORBA.AttributeDescription[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.CORBA.AttributeDescriptionHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.AttributeDescription[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.CORBA.AttributeDescriptionHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
58
jdkSrc/jdk8/com/sun/org/omg/CORBA/AttributeDescription.java
Normal file
58
jdkSrc/jdk8/com/sun/org/omg/CORBA/AttributeDescription.java
Normal file
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/AttributeDescription.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public final class AttributeDescription implements org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
public String name = null;
|
||||
public String id = null;
|
||||
public String defined_in = null;
|
||||
public String version = null;
|
||||
public org.omg.CORBA.TypeCode type = null;
|
||||
public com.sun.org.omg.CORBA.AttributeMode mode = null;
|
||||
|
||||
public AttributeDescription ()
|
||||
{
|
||||
} // ctor
|
||||
|
||||
public AttributeDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _type, com.sun.org.omg.CORBA.AttributeMode _mode)
|
||||
{
|
||||
name = _name;
|
||||
id = _id;
|
||||
defined_in = _defined_in;
|
||||
version = _version;
|
||||
type = _type;
|
||||
mode = _mode;
|
||||
} // ctor
|
||||
|
||||
} // class AttributeDescription
|
||||
@@ -0,0 +1,142 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/AttributeDescriptionHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public final class AttributeDescriptionHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/AttributeDescription:1.0";
|
||||
|
||||
public AttributeDescriptionHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.AttributeDescription that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.AttributeDescription extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
private static boolean __active = false;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
synchronized (org.omg.CORBA.TypeCode.class)
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
if (__active)
|
||||
{
|
||||
return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
|
||||
}
|
||||
__active = true;
|
||||
org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [6];
|
||||
org.omg.CORBA.TypeCode _tcOf_members0 = null;
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", _tcOf_members0);
|
||||
_members0[0] = new org.omg.CORBA.StructMember (
|
||||
"name",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[1] = new org.omg.CORBA.StructMember (
|
||||
"id",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[2] = new org.omg.CORBA.StructMember (
|
||||
"defined_in",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.VersionSpecHelper.id (), "VersionSpec", _tcOf_members0);
|
||||
_members0[3] = new org.omg.CORBA.StructMember (
|
||||
"version",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_TypeCode);
|
||||
_members0[4] = new org.omg.CORBA.StructMember (
|
||||
"type",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.AttributeModeHelper.type ();
|
||||
_members0[5] = new org.omg.CORBA.StructMember (
|
||||
"mode",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.org.omg.CORBA.AttributeDescriptionHelper.id (), "AttributeDescription", _members0);
|
||||
__active = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.AttributeDescription read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.AttributeDescription value = new com.sun.org.omg.CORBA.AttributeDescription ();
|
||||
value.name = istream.read_string ();
|
||||
value.id = istream.read_string ();
|
||||
value.defined_in = istream.read_string ();
|
||||
value.version = istream.read_string ();
|
||||
value.type = istream.read_TypeCode ();
|
||||
value.mode = com.sun.org.omg.CORBA.AttributeModeHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.AttributeDescription value)
|
||||
{
|
||||
ostream.write_string (value.name);
|
||||
ostream.write_string (value.id);
|
||||
ostream.write_string (value.defined_in);
|
||||
ostream.write_string (value.version);
|
||||
ostream.write_TypeCode (value.type);
|
||||
com.sun.org.omg.CORBA.AttributeModeHelper.write (ostream, value.mode);
|
||||
}
|
||||
|
||||
}
|
||||
64
jdkSrc/jdk8/com/sun/org/omg/CORBA/AttributeMode.java
Normal file
64
jdkSrc/jdk8/com/sun/org/omg/CORBA/AttributeMode.java
Normal file
@@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/AttributeMode.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public class AttributeMode implements org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
private int __value;
|
||||
private static int __size = 2;
|
||||
private static com.sun.org.omg.CORBA.AttributeMode[] __array = new com.sun.org.omg.CORBA.AttributeMode [__size];
|
||||
|
||||
public static final int _ATTR_NORMAL = 0;
|
||||
public static final com.sun.org.omg.CORBA.AttributeMode ATTR_NORMAL = new com.sun.org.omg.CORBA.AttributeMode(_ATTR_NORMAL);
|
||||
public static final int _ATTR_READONLY = 1;
|
||||
public static final com.sun.org.omg.CORBA.AttributeMode ATTR_READONLY = new com.sun.org.omg.CORBA.AttributeMode(_ATTR_READONLY);
|
||||
|
||||
public int value ()
|
||||
{
|
||||
return __value;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.AttributeMode from_int (int value)
|
||||
{
|
||||
if (value >= 0 && value < __size)
|
||||
return __array[value];
|
||||
else
|
||||
throw new org.omg.CORBA.BAD_PARAM ();
|
||||
}
|
||||
|
||||
protected AttributeMode (int value)
|
||||
{
|
||||
__value = value;
|
||||
__array[__value] = this;
|
||||
}
|
||||
} // class AttributeMode
|
||||
81
jdkSrc/jdk8/com/sun/org/omg/CORBA/AttributeModeHelper.java
Normal file
81
jdkSrc/jdk8/com/sun/org/omg/CORBA/AttributeModeHelper.java
Normal file
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/AttributeModeHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public final class AttributeModeHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/AttributeMode:1.0";
|
||||
|
||||
public AttributeModeHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.AttributeMode that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.AttributeMode extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (com.sun.org.omg.CORBA.AttributeModeHelper.id (), "AttributeMode", new String[] { "ATTR_NORMAL", "ATTR_READONLY"} );
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.AttributeMode read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
return com.sun.org.omg.CORBA.AttributeMode.from_int (istream.read_long ());
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.AttributeMode value)
|
||||
{
|
||||
ostream.write_long (value.value ());
|
||||
}
|
||||
|
||||
}
|
||||
92
jdkSrc/jdk8/com/sun/org/omg/CORBA/ContextIdSeqHelper.java
Normal file
92
jdkSrc/jdk8/com/sun/org/omg/CORBA/ContextIdSeqHelper.java
Normal file
@@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ContextIdSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:51 AM PDT
|
||||
*/
|
||||
|
||||
public final class ContextIdSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/ContextIdSeq:1.0";
|
||||
|
||||
public ContextIdSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, String[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static String[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ContextIdentifierHelper.id (), "ContextIdentifier", __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ContextIdSeqHelper.id (), "ContextIdSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static String[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
String value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
value = new String[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.CORBA.ContextIdentifierHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, String[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.CORBA.ContextIdentifierHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ContextIdentifierHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public final class ContextIdentifierHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/ContextIdentifier:1.0";
|
||||
|
||||
public ContextIdentifierHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, String that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static String extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ContextIdentifierHelper.id (), "ContextIdentifier", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static String read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
String value = null;
|
||||
value = istream.read_string ();
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, String value)
|
||||
{
|
||||
ostream.write_string (value);
|
||||
}
|
||||
|
||||
}
|
||||
93
jdkSrc/jdk8/com/sun/org/omg/CORBA/DefinitionKindHelper.java
Normal file
93
jdkSrc/jdk8/com/sun/org/omg/CORBA/DefinitionKindHelper.java
Normal file
@@ -0,0 +1,93 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/DefinitionKindHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:43 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been manually _CHANGED_
|
||||
|
||||
public final class DefinitionKindHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/DefinitionKind:1.0";
|
||||
|
||||
public DefinitionKindHelper()
|
||||
{
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.DefinitionKind that)
|
||||
public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.DefinitionKind that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.DefinitionKind extract (org.omg.CORBA.Any a)
|
||||
public static org.omg.CORBA.DefinitionKind extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (com.sun.org.omg.CORBA.DefinitionKindHelper.id (), "DefinitionKind", new String[] { "dk_none", "dk_all", "dk_Attribute", "dk_Constant", "dk_Exception", "dk_Interface", "dk_Module", "dk_Operation", "dk_Typedef", "dk_Alias", "dk_Struct", "dk_Union", "dk_Enum", "dk_Primitive", "dk_String", "dk_Sequence", "dk_Array", "dk_Repository", "dk_Wstring", "dk_Fixed", "dk_Value", "dk_ValueBox", "dk_ValueMember", "dk_Native"} );
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.DefinitionKind read (org.omg.CORBA.portable.InputStream istream)
|
||||
public static org.omg.CORBA.DefinitionKind read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
// _CHANGED_
|
||||
//return com.sun.org.omg.CORBA.DefinitionKind.from_int (istream.read_long ());
|
||||
return org.omg.CORBA.DefinitionKind.from_int (istream.read_long ());
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.DefinitionKind value)
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.DefinitionKind value)
|
||||
{
|
||||
ostream.write_long (value.value ());
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ExcDescriptionSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:51 AM PDT
|
||||
*/
|
||||
|
||||
public final class ExcDescriptionSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/ExcDescriptionSeq:1.0";
|
||||
|
||||
public ExcDescriptionSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.ExceptionDescription[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ExceptionDescription[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = com.sun.org.omg.CORBA.ExceptionDescriptionHelper.type ();
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ExcDescriptionSeqHelper.id (), "ExcDescriptionSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ExceptionDescription[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.ExceptionDescription value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
value = new com.sun.org.omg.CORBA.ExceptionDescription[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.CORBA.ExceptionDescriptionHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.ExceptionDescription[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.CORBA.ExceptionDescriptionHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
56
jdkSrc/jdk8/com/sun/org/omg/CORBA/ExceptionDescription.java
Normal file
56
jdkSrc/jdk8/com/sun/org/omg/CORBA/ExceptionDescription.java
Normal file
@@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ExceptionDescription.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public final class ExceptionDescription implements org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
public String name = null;
|
||||
public String id = null;
|
||||
public String defined_in = null;
|
||||
public String version = null;
|
||||
public org.omg.CORBA.TypeCode type = null;
|
||||
|
||||
public ExceptionDescription ()
|
||||
{
|
||||
} // ctor
|
||||
|
||||
public ExceptionDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _type)
|
||||
{
|
||||
name = _name;
|
||||
id = _id;
|
||||
defined_in = _defined_in;
|
||||
version = _version;
|
||||
type = _type;
|
||||
} // ctor
|
||||
|
||||
} // class ExceptionDescription
|
||||
@@ -0,0 +1,135 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ExceptionDescriptionHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public final class ExceptionDescriptionHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/ExceptionDescription:1.0";
|
||||
|
||||
public ExceptionDescriptionHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.ExceptionDescription that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ExceptionDescription extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
private static boolean __active = false;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
synchronized (org.omg.CORBA.TypeCode.class)
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
if (__active)
|
||||
{
|
||||
return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
|
||||
}
|
||||
__active = true;
|
||||
org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [5];
|
||||
org.omg.CORBA.TypeCode _tcOf_members0 = null;
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", _tcOf_members0);
|
||||
_members0[0] = new org.omg.CORBA.StructMember (
|
||||
"name",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[1] = new org.omg.CORBA.StructMember (
|
||||
"id",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[2] = new org.omg.CORBA.StructMember (
|
||||
"defined_in",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.VersionSpecHelper.id (), "VersionSpec", _tcOf_members0);
|
||||
_members0[3] = new org.omg.CORBA.StructMember (
|
||||
"version",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_TypeCode);
|
||||
_members0[4] = new org.omg.CORBA.StructMember (
|
||||
"type",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.org.omg.CORBA.ExceptionDescriptionHelper.id (), "ExceptionDescription", _members0);
|
||||
__active = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ExceptionDescription read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.ExceptionDescription value = new com.sun.org.omg.CORBA.ExceptionDescription ();
|
||||
value.name = istream.read_string ();
|
||||
value.id = istream.read_string ();
|
||||
value.defined_in = istream.read_string ();
|
||||
value.version = istream.read_string ();
|
||||
value.type = istream.read_TypeCode ();
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.ExceptionDescription value)
|
||||
{
|
||||
ostream.write_string (value.name);
|
||||
ostream.write_string (value.id);
|
||||
ostream.write_string (value.defined_in);
|
||||
ostream.write_string (value.version);
|
||||
ostream.write_TypeCode (value.type);
|
||||
}
|
||||
|
||||
}
|
||||
112
jdkSrc/jdk8/com/sun/org/omg/CORBA/IDLTypeHelper.java
Normal file
112
jdkSrc/jdk8/com/sun/org/omg/CORBA/IDLTypeHelper.java
Normal file
@@ -0,0 +1,112 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/IDLTypeHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:45 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been _CHANGED_
|
||||
|
||||
public final class IDLTypeHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/IDLType:1.0";
|
||||
|
||||
public IDLTypeHelper()
|
||||
{
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.IDLType that)
|
||||
public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.IDLType that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.IDLType extract (org.omg.CORBA.Any a)
|
||||
public static org.omg.CORBA.IDLType extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_interface_tc (com.sun.org.omg.CORBA.IDLTypeHelper.id (), "IDLType");
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.IDLType read (org.omg.CORBA.portable.InputStream istream)
|
||||
public static org.omg.CORBA.IDLType read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
return narrow (istream.read_Object (_IDLTypeStub.class));
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.IDLType value)
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.IDLType value)
|
||||
{
|
||||
ostream.write_Object ((org.omg.CORBA.Object) value);
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.IDLType narrow (org.omg.CORBA.Object obj)
|
||||
public static org.omg.CORBA.IDLType narrow (org.omg.CORBA.Object obj)
|
||||
{
|
||||
if (obj == null)
|
||||
return null;
|
||||
// _CHANGED_
|
||||
//else if (obj instanceof com.sun.org.omg.CORBA.IDLType)
|
||||
else if (obj instanceof org.omg.CORBA.IDLType)
|
||||
// _CHANGED_
|
||||
//return (com.sun.org.omg.CORBA.IDLType)obj;
|
||||
return (org.omg.CORBA.IDLType)obj;
|
||||
else if (!obj._is_a (id ()))
|
||||
throw new org.omg.CORBA.BAD_PARAM ();
|
||||
else
|
||||
{
|
||||
org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
|
||||
return new com.sun.org.omg.CORBA._IDLTypeStub (delegate);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
38
jdkSrc/jdk8/com/sun/org/omg/CORBA/IDLTypeOperations.java
Normal file
38
jdkSrc/jdk8/com/sun/org/omg/CORBA/IDLTypeOperations.java
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/IDLTypeOperations.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:45 AM PDT
|
||||
*/
|
||||
|
||||
public interface IDLTypeOperations extends com.sun.org.omg.CORBA.IRObjectOperations
|
||||
{
|
||||
org.omg.CORBA.TypeCode type ();
|
||||
} // interface IDLTypeOperations
|
||||
48
jdkSrc/jdk8/com/sun/org/omg/CORBA/IRObjectOperations.java
Normal file
48
jdkSrc/jdk8/com/sun/org/omg/CORBA/IRObjectOperations.java
Normal file
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/IRObjectOperations.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:43 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been manually _CHANGED_
|
||||
|
||||
public interface IRObjectOperations
|
||||
{
|
||||
|
||||
// read interface
|
||||
|
||||
// _CHANGED_
|
||||
//com.sun.org.omg.CORBA.DefinitionKind def_kind ();
|
||||
org.omg.CORBA.DefinitionKind def_kind ();
|
||||
|
||||
// write interface
|
||||
void destroy ();
|
||||
} // interface IRObjectOperations
|
||||
84
jdkSrc/jdk8/com/sun/org/omg/CORBA/IdentifierHelper.java
Normal file
84
jdkSrc/jdk8/com/sun/org/omg/CORBA/IdentifierHelper.java
Normal file
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/IdentifierHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:42 AM PDT
|
||||
*/
|
||||
|
||||
public final class IdentifierHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/Identifier:1.0";
|
||||
|
||||
public IdentifierHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, String that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static String extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static String read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
String value = null;
|
||||
value = istream.read_string ();
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, String value)
|
||||
{
|
||||
ostream.write_string (value);
|
||||
}
|
||||
|
||||
}
|
||||
56
jdkSrc/jdk8/com/sun/org/omg/CORBA/Initializer.java
Normal file
56
jdkSrc/jdk8/com/sun/org/omg/CORBA/Initializer.java
Normal file
@@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/Initializer.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:44 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been _CHANGED_
|
||||
|
||||
public final class Initializer implements org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
// _CHANGED_
|
||||
//public com.sun.org.omg.CORBA.StructMember members[] = null;
|
||||
public org.omg.CORBA.StructMember members[] = null;
|
||||
public String name = null;
|
||||
|
||||
public Initializer ()
|
||||
{
|
||||
} // ctor
|
||||
|
||||
// _CHANGED_
|
||||
//public Initializer (com.sun.org.omg.CORBA.StructMember[] _members, String _name)
|
||||
public Initializer (org.omg.CORBA.StructMember[] _members, String _name)
|
||||
{
|
||||
members = _members;
|
||||
name = _name;
|
||||
} // ctor
|
||||
|
||||
} // class Initializer
|
||||
113
jdkSrc/jdk8/com/sun/org/omg/CORBA/InitializerHelper.java
Normal file
113
jdkSrc/jdk8/com/sun/org/omg/CORBA/InitializerHelper.java
Normal file
@@ -0,0 +1,113 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/InitializerHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:44 AM PDT
|
||||
*/
|
||||
|
||||
public final class InitializerHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/Initializer:1.0";
|
||||
|
||||
public InitializerHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.Initializer that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.Initializer extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
private static boolean __active = false;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
synchronized (org.omg.CORBA.TypeCode.class)
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
if (__active)
|
||||
{
|
||||
return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
|
||||
}
|
||||
__active = true;
|
||||
org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [2];
|
||||
org.omg.CORBA.TypeCode _tcOf_members0 = null;
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.StructMemberHelper.type ();
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.StructMemberSeqHelper.id (), "StructMemberSeq", _tcOf_members0);
|
||||
_members0[0] = new org.omg.CORBA.StructMember (
|
||||
"members",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", _tcOf_members0);
|
||||
_members0[1] = new org.omg.CORBA.StructMember (
|
||||
"name",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.org.omg.CORBA.InitializerHelper.id (), "Initializer", _members0);
|
||||
__active = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.Initializer read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.Initializer value = new com.sun.org.omg.CORBA.Initializer ();
|
||||
value.members = com.sun.org.omg.CORBA.StructMemberSeqHelper.read (istream);
|
||||
value.name = istream.read_string ();
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.Initializer value)
|
||||
{
|
||||
com.sun.org.omg.CORBA.StructMemberSeqHelper.write (ostream, value.members);
|
||||
ostream.write_string (value.name);
|
||||
}
|
||||
|
||||
}
|
||||
90
jdkSrc/jdk8/com/sun/org/omg/CORBA/InitializerSeqHelper.java
Normal file
90
jdkSrc/jdk8/com/sun/org/omg/CORBA/InitializerSeqHelper.java
Normal file
@@ -0,0 +1,90 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/InitializerSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:44 AM PDT
|
||||
*/
|
||||
|
||||
public final class InitializerSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/InitializerSeq:1.0";
|
||||
|
||||
public InitializerSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.Initializer[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.Initializer[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = com.sun.org.omg.CORBA.InitializerHelper.type ();
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.InitializerSeqHelper.id (), "InitializerSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.Initializer[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.Initializer value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
value = new com.sun.org.omg.CORBA.Initializer[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.CORBA.InitializerHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.Initializer[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.CORBA.InitializerHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/OpDescriptionSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:51 AM PDT
|
||||
*/
|
||||
|
||||
public final class OpDescriptionSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/OpDescriptionSeq:1.0";
|
||||
|
||||
public OpDescriptionSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.OperationDescription[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.OperationDescription[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = com.sun.org.omg.CORBA.OperationDescriptionHelper.type ();
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.OpDescriptionSeqHelper.id (), "OpDescriptionSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.OperationDescription[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.OperationDescription value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
value = new com.sun.org.omg.CORBA.OperationDescription[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.CORBA.OperationDescriptionHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.OperationDescription[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.CORBA.OperationDescriptionHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
64
jdkSrc/jdk8/com/sun/org/omg/CORBA/OperationDescription.java
Normal file
64
jdkSrc/jdk8/com/sun/org/omg/CORBA/OperationDescription.java
Normal file
@@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/OperationDescription.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:51 AM PDT
|
||||
*/
|
||||
|
||||
public final class OperationDescription implements org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
public String name = null;
|
||||
public String id = null;
|
||||
public String defined_in = null;
|
||||
public String version = null;
|
||||
public org.omg.CORBA.TypeCode result = null;
|
||||
public com.sun.org.omg.CORBA.OperationMode mode = null;
|
||||
public String contexts[] = null;
|
||||
public com.sun.org.omg.CORBA.ParameterDescription parameters[] = null;
|
||||
public com.sun.org.omg.CORBA.ExceptionDescription exceptions[] = null;
|
||||
|
||||
public OperationDescription ()
|
||||
{
|
||||
} // ctor
|
||||
|
||||
public OperationDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _result, com.sun.org.omg.CORBA.OperationMode _mode, String[] _contexts, com.sun.org.omg.CORBA.ParameterDescription[] _parameters, com.sun.org.omg.CORBA.ExceptionDescription[] _exceptions)
|
||||
{
|
||||
name = _name;
|
||||
id = _id;
|
||||
defined_in = _defined_in;
|
||||
version = _version;
|
||||
result = _result;
|
||||
mode = _mode;
|
||||
contexts = _contexts;
|
||||
parameters = _parameters;
|
||||
exceptions = _exceptions;
|
||||
} // ctor
|
||||
|
||||
} // class OperationDescription
|
||||
@@ -0,0 +1,171 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/OperationDescriptionHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:51 AM PDT
|
||||
*/
|
||||
|
||||
public final class OperationDescriptionHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/OperationDescription:1.0";
|
||||
|
||||
public OperationDescriptionHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.OperationDescription that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.OperationDescription extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
private static boolean __active = false;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
synchronized (org.omg.CORBA.TypeCode.class)
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
if (__active)
|
||||
{
|
||||
return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
|
||||
}
|
||||
__active = true;
|
||||
org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [9];
|
||||
org.omg.CORBA.TypeCode _tcOf_members0 = null;
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", _tcOf_members0);
|
||||
_members0[0] = new org.omg.CORBA.StructMember (
|
||||
"name",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[1] = new org.omg.CORBA.StructMember (
|
||||
"id",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[2] = new org.omg.CORBA.StructMember (
|
||||
"defined_in",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.VersionSpecHelper.id (), "VersionSpec", _tcOf_members0);
|
||||
_members0[3] = new org.omg.CORBA.StructMember (
|
||||
"version",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_TypeCode);
|
||||
_members0[4] = new org.omg.CORBA.StructMember (
|
||||
"result",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.OperationModeHelper.type ();
|
||||
_members0[5] = new org.omg.CORBA.StructMember (
|
||||
"mode",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ContextIdentifierHelper.id (), "ContextIdentifier", _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ContextIdSeqHelper.id (), "ContextIdSeq", _tcOf_members0);
|
||||
_members0[6] = new org.omg.CORBA.StructMember (
|
||||
"contexts",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.ParameterDescriptionHelper.type ();
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ParDescriptionSeqHelper.id (), "ParDescriptionSeq", _tcOf_members0);
|
||||
_members0[7] = new org.omg.CORBA.StructMember (
|
||||
"parameters",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.ExceptionDescriptionHelper.type ();
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ExcDescriptionSeqHelper.id (), "ExcDescriptionSeq", _tcOf_members0);
|
||||
_members0[8] = new org.omg.CORBA.StructMember (
|
||||
"exceptions",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.org.omg.CORBA.OperationDescriptionHelper.id (), "OperationDescription", _members0);
|
||||
__active = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.OperationDescription read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.OperationDescription value = new com.sun.org.omg.CORBA.OperationDescription ();
|
||||
value.name = istream.read_string ();
|
||||
value.id = istream.read_string ();
|
||||
value.defined_in = istream.read_string ();
|
||||
value.version = istream.read_string ();
|
||||
value.result = istream.read_TypeCode ();
|
||||
value.mode = com.sun.org.omg.CORBA.OperationModeHelper.read (istream);
|
||||
value.contexts = com.sun.org.omg.CORBA.ContextIdSeqHelper.read (istream);
|
||||
value.parameters = com.sun.org.omg.CORBA.ParDescriptionSeqHelper.read (istream);
|
||||
value.exceptions = com.sun.org.omg.CORBA.ExcDescriptionSeqHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.OperationDescription value)
|
||||
{
|
||||
ostream.write_string (value.name);
|
||||
ostream.write_string (value.id);
|
||||
ostream.write_string (value.defined_in);
|
||||
ostream.write_string (value.version);
|
||||
ostream.write_TypeCode (value.result);
|
||||
com.sun.org.omg.CORBA.OperationModeHelper.write (ostream, value.mode);
|
||||
com.sun.org.omg.CORBA.ContextIdSeqHelper.write (ostream, value.contexts);
|
||||
com.sun.org.omg.CORBA.ParDescriptionSeqHelper.write (ostream, value.parameters);
|
||||
com.sun.org.omg.CORBA.ExcDescriptionSeqHelper.write (ostream, value.exceptions);
|
||||
}
|
||||
|
||||
}
|
||||
64
jdkSrc/jdk8/com/sun/org/omg/CORBA/OperationMode.java
Normal file
64
jdkSrc/jdk8/com/sun/org/omg/CORBA/OperationMode.java
Normal file
@@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/OperationMode.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public class OperationMode implements org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
private int __value;
|
||||
private static int __size = 2;
|
||||
private static com.sun.org.omg.CORBA.OperationMode[] __array = new com.sun.org.omg.CORBA.OperationMode [__size];
|
||||
|
||||
public static final int _OP_NORMAL = 0;
|
||||
public static final com.sun.org.omg.CORBA.OperationMode OP_NORMAL = new com.sun.org.omg.CORBA.OperationMode(_OP_NORMAL);
|
||||
public static final int _OP_ONEWAY = 1;
|
||||
public static final com.sun.org.omg.CORBA.OperationMode OP_ONEWAY = new com.sun.org.omg.CORBA.OperationMode(_OP_ONEWAY);
|
||||
|
||||
public int value ()
|
||||
{
|
||||
return __value;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.OperationMode from_int (int value)
|
||||
{
|
||||
if (value >= 0 && value < __size)
|
||||
return __array[value];
|
||||
else
|
||||
throw new org.omg.CORBA.BAD_PARAM ();
|
||||
}
|
||||
|
||||
protected OperationMode (int value)
|
||||
{
|
||||
__value = value;
|
||||
__array[__value] = this;
|
||||
}
|
||||
} // class OperationMode
|
||||
81
jdkSrc/jdk8/com/sun/org/omg/CORBA/OperationModeHelper.java
Normal file
81
jdkSrc/jdk8/com/sun/org/omg/CORBA/OperationModeHelper.java
Normal file
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/OperationModeHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public final class OperationModeHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/OperationMode:1.0";
|
||||
|
||||
public OperationModeHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.OperationMode that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.OperationMode extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (com.sun.org.omg.CORBA.OperationModeHelper.id (), "OperationMode", new String[] { "OP_NORMAL", "OP_ONEWAY"} );
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.OperationMode read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
return com.sun.org.omg.CORBA.OperationMode.from_int (istream.read_long ());
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.OperationMode value)
|
||||
{
|
||||
ostream.write_long (value.value ());
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ParDescriptionSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public final class ParDescriptionSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/ParDescriptionSeq:1.0";
|
||||
|
||||
public ParDescriptionSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.ParameterDescription[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ParameterDescription[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = com.sun.org.omg.CORBA.ParameterDescriptionHelper.type ();
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ParDescriptionSeqHelper.id (), "ParDescriptionSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ParameterDescription[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.ParameterDescription value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
value = new com.sun.org.omg.CORBA.ParameterDescription[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.CORBA.ParameterDescriptionHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.ParameterDescription[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.CORBA.ParameterDescriptionHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
60
jdkSrc/jdk8/com/sun/org/omg/CORBA/ParameterDescription.java
Normal file
60
jdkSrc/jdk8/com/sun/org/omg/CORBA/ParameterDescription.java
Normal file
@@ -0,0 +1,60 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ParameterDescription.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been _CHANGED_
|
||||
|
||||
public final class ParameterDescription implements org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
public String name = null;
|
||||
public org.omg.CORBA.TypeCode type = null;
|
||||
// _CHANGED_
|
||||
//public com.sun.org.omg.CORBA.IDLType type_def = null;
|
||||
public org.omg.CORBA.IDLType type_def = null;
|
||||
public com.sun.org.omg.CORBA.ParameterMode mode = null;
|
||||
|
||||
public ParameterDescription ()
|
||||
{
|
||||
} // ctor
|
||||
|
||||
// _CHANGED_
|
||||
//public ParameterDescription (String _name, org.omg.CORBA.TypeCode _type, com.sun.org.omg.CORBA.IDLType _type_def, com.sun.org.omg.CORBA.ParameterMode _mode)
|
||||
public ParameterDescription (String _name, org.omg.CORBA.TypeCode _type, org.omg.CORBA.IDLType _type_def, com.sun.org.omg.CORBA.ParameterMode _mode)
|
||||
{
|
||||
name = _name;
|
||||
type = _type;
|
||||
type_def = _type_def;
|
||||
mode = _mode;
|
||||
} // ctor
|
||||
|
||||
} // class ParameterDescription
|
||||
@@ -0,0 +1,125 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ParameterDescriptionHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public final class ParameterDescriptionHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/ParameterDescription:1.0";
|
||||
|
||||
public ParameterDescriptionHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.ParameterDescription that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ParameterDescription extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
private static boolean __active = false;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
synchronized (org.omg.CORBA.TypeCode.class)
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
if (__active)
|
||||
{
|
||||
return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
|
||||
}
|
||||
__active = true;
|
||||
org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [4];
|
||||
org.omg.CORBA.TypeCode _tcOf_members0 = null;
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", _tcOf_members0);
|
||||
_members0[0] = new org.omg.CORBA.StructMember (
|
||||
"name",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_TypeCode);
|
||||
_members0[1] = new org.omg.CORBA.StructMember (
|
||||
"type",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.IDLTypeHelper.type ();
|
||||
_members0[2] = new org.omg.CORBA.StructMember (
|
||||
"type_def",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.ParameterModeHelper.type ();
|
||||
_members0[3] = new org.omg.CORBA.StructMember (
|
||||
"mode",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.org.omg.CORBA.ParameterDescriptionHelper.id (), "ParameterDescription", _members0);
|
||||
__active = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ParameterDescription read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.ParameterDescription value = new com.sun.org.omg.CORBA.ParameterDescription ();
|
||||
value.name = istream.read_string ();
|
||||
value.type = istream.read_TypeCode ();
|
||||
value.type_def = com.sun.org.omg.CORBA.IDLTypeHelper.read (istream);
|
||||
value.mode = com.sun.org.omg.CORBA.ParameterModeHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.ParameterDescription value)
|
||||
{
|
||||
ostream.write_string (value.name);
|
||||
ostream.write_TypeCode (value.type);
|
||||
com.sun.org.omg.CORBA.IDLTypeHelper.write (ostream, value.type_def);
|
||||
com.sun.org.omg.CORBA.ParameterModeHelper.write (ostream, value.mode);
|
||||
}
|
||||
|
||||
}
|
||||
66
jdkSrc/jdk8/com/sun/org/omg/CORBA/ParameterMode.java
Normal file
66
jdkSrc/jdk8/com/sun/org/omg/CORBA/ParameterMode.java
Normal file
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ParameterMode.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public class ParameterMode implements org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
private int __value;
|
||||
private static int __size = 3;
|
||||
private static com.sun.org.omg.CORBA.ParameterMode[] __array = new com.sun.org.omg.CORBA.ParameterMode [__size];
|
||||
|
||||
public static final int _PARAM_IN = 0;
|
||||
public static final com.sun.org.omg.CORBA.ParameterMode PARAM_IN = new com.sun.org.omg.CORBA.ParameterMode(_PARAM_IN);
|
||||
public static final int _PARAM_OUT = 1;
|
||||
public static final com.sun.org.omg.CORBA.ParameterMode PARAM_OUT = new com.sun.org.omg.CORBA.ParameterMode(_PARAM_OUT);
|
||||
public static final int _PARAM_INOUT = 2;
|
||||
public static final com.sun.org.omg.CORBA.ParameterMode PARAM_INOUT = new com.sun.org.omg.CORBA.ParameterMode(_PARAM_INOUT);
|
||||
|
||||
public int value ()
|
||||
{
|
||||
return __value;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ParameterMode from_int (int value)
|
||||
{
|
||||
if (value >= 0 && value < __size)
|
||||
return __array[value];
|
||||
else
|
||||
throw new org.omg.CORBA.BAD_PARAM ();
|
||||
}
|
||||
|
||||
protected ParameterMode (int value)
|
||||
{
|
||||
__value = value;
|
||||
__array[__value] = this;
|
||||
}
|
||||
} // class ParameterMode
|
||||
81
jdkSrc/jdk8/com/sun/org/omg/CORBA/ParameterModeHelper.java
Normal file
81
jdkSrc/jdk8/com/sun/org/omg/CORBA/ParameterModeHelper.java
Normal file
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ParameterModeHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:50 AM PDT
|
||||
*/
|
||||
|
||||
public final class ParameterModeHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/ParameterMode:1.0";
|
||||
|
||||
public ParameterModeHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.ParameterMode that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ParameterMode extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (com.sun.org.omg.CORBA.ParameterModeHelper.id (), "ParameterMode", new String[] { "PARAM_IN", "PARAM_OUT", "PARAM_INOUT"} );
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ParameterMode read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
return com.sun.org.omg.CORBA.ParameterMode.from_int (istream.read_long ());
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.ParameterMode value)
|
||||
{
|
||||
ostream.write_long (value.value ());
|
||||
}
|
||||
|
||||
}
|
||||
29
jdkSrc/jdk8/com/sun/org/omg/CORBA/Repository.java
Normal file
29
jdkSrc/jdk8/com/sun/org/omg/CORBA/Repository.java
Normal file
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
public interface Repository extends org.omg.CORBA.IRObject, org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
} // interface Repository
|
||||
76
jdkSrc/jdk8/com/sun/org/omg/CORBA/RepositoryHelper.java
Normal file
76
jdkSrc/jdk8/com/sun/org/omg/CORBA/RepositoryHelper.java
Normal file
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
public final class RepositoryHelper
|
||||
{
|
||||
private static String _id = "IDL:com.sun.omg.org/CORBA/Repository:3.0";
|
||||
|
||||
public RepositoryHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, Repository that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static Repository extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryHelper.id (), "Repository", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static Repository read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
String value = null;
|
||||
value = istream.read_string ();
|
||||
return null;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, Repository value)
|
||||
{
|
||||
ostream.write_string (null);
|
||||
}
|
||||
|
||||
}
|
||||
84
jdkSrc/jdk8/com/sun/org/omg/CORBA/RepositoryIdHelper.java
Normal file
84
jdkSrc/jdk8/com/sun/org/omg/CORBA/RepositoryIdHelper.java
Normal file
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/RepositoryIdHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:43 AM PDT
|
||||
*/
|
||||
|
||||
public final class RepositoryIdHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/RepositoryId:1.0";
|
||||
|
||||
public RepositoryIdHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, String that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static String extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static String read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
String value = null;
|
||||
value = istream.read_string ();
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, String value)
|
||||
{
|
||||
ostream.write_string (value);
|
||||
}
|
||||
|
||||
}
|
||||
91
jdkSrc/jdk8/com/sun/org/omg/CORBA/RepositoryIdSeqHelper.java
Normal file
91
jdkSrc/jdk8/com/sun/org/omg/CORBA/RepositoryIdSeqHelper.java
Normal file
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/RepositoryIdSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:51 AM PDT
|
||||
*/
|
||||
|
||||
public final class RepositoryIdSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/RepositoryIdSeq:1.0";
|
||||
|
||||
public RepositoryIdSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, String[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static String[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdSeqHelper.id (), "RepositoryIdSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static String[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
String value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
value = new String[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.CORBA.RepositoryIdHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, String[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.CORBA.RepositoryIdHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
130
jdkSrc/jdk8/com/sun/org/omg/CORBA/StructMemberHelper.java
Normal file
130
jdkSrc/jdk8/com/sun/org/omg/CORBA/StructMemberHelper.java
Normal file
@@ -0,0 +1,130 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/StructMemberHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:44 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been manually _CHANGED_
|
||||
|
||||
public final class StructMemberHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/StructMember:1.0";
|
||||
|
||||
public StructMemberHelper()
|
||||
{
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.StructMember that)
|
||||
public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.StructMember that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.StructMember extract (org.omg.CORBA.Any a)
|
||||
public static org.omg.CORBA.StructMember extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
private static boolean __active = false;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
synchronized (org.omg.CORBA.TypeCode.class)
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
if (__active)
|
||||
{
|
||||
return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
|
||||
}
|
||||
__active = true;
|
||||
org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [3];
|
||||
org.omg.CORBA.TypeCode _tcOf_members0 = null;
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", _tcOf_members0);
|
||||
_members0[0] = new org.omg.CORBA.StructMember (
|
||||
"name",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_TypeCode);
|
||||
_members0[1] = new org.omg.CORBA.StructMember (
|
||||
"type",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.IDLTypeHelper.type ();
|
||||
_members0[2] = new org.omg.CORBA.StructMember (
|
||||
"type_def",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.org.omg.CORBA.StructMemberHelper.id (), "StructMember", _members0);
|
||||
__active = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.StructMember read (org.omg.CORBA.portable.InputStream istream)
|
||||
public static org.omg.CORBA.StructMember read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
// _CHANGED_
|
||||
//com.sun.org.omg.CORBA.StructMember value = new com.sun.org.omg.CORBA.StructMember ();
|
||||
org.omg.CORBA.StructMember value = new org.omg.CORBA.StructMember ();
|
||||
value.name = istream.read_string ();
|
||||
value.type = istream.read_TypeCode ();
|
||||
value.type_def = com.sun.org.omg.CORBA.IDLTypeHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.StructMember value)
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.StructMember value)
|
||||
{
|
||||
ostream.write_string (value.name);
|
||||
ostream.write_TypeCode (value.type);
|
||||
com.sun.org.omg.CORBA.IDLTypeHelper.write (ostream, value.type_def);
|
||||
}
|
||||
|
||||
}
|
||||
104
jdkSrc/jdk8/com/sun/org/omg/CORBA/StructMemberSeqHelper.java
Normal file
104
jdkSrc/jdk8/com/sun/org/omg/CORBA/StructMemberSeqHelper.java
Normal file
@@ -0,0 +1,104 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/StructMemberSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:44 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been _CHANGED_
|
||||
|
||||
public final class StructMemberSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/StructMemberSeq:1.0";
|
||||
|
||||
public StructMemberSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.StructMember[] that)
|
||||
public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.StructMember[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.StructMember[] extract (org.omg.CORBA.Any a)
|
||||
public static org.omg.CORBA.StructMember[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = com.sun.org.omg.CORBA.StructMemberHelper.type ();
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.StructMemberSeqHelper.id (), "StructMemberSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.StructMember[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
public static org.omg.CORBA.StructMember[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
// _CHANGED_
|
||||
//com.sun.org.omg.CORBA.StructMember value[] = null;
|
||||
org.omg.CORBA.StructMember value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
// _CHANGED_
|
||||
//value = new com.sun.org.omg.CORBA.StructMember[_len0];
|
||||
value = new org.omg.CORBA.StructMember[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.CORBA.StructMemberHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.StructMember[] value)
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.StructMember[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.CORBA.StructMemberHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA.ValueDefPackage;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ValueDefPackage/FullValueDescription.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:52 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been manually _CHANGED_
|
||||
|
||||
public final class FullValueDescription implements org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
public String name = null;
|
||||
public String id = null;
|
||||
public boolean is_abstract = false;
|
||||
public boolean is_custom = false;
|
||||
public String defined_in = null;
|
||||
public String version = null;
|
||||
public com.sun.org.omg.CORBA.OperationDescription operations[] = null;
|
||||
public com.sun.org.omg.CORBA.AttributeDescription attributes[] = null;
|
||||
|
||||
// _CHANGED_
|
||||
//public com.sun.org.omg.CORBA.ValueMember members[] = null;
|
||||
public org.omg.CORBA.ValueMember members[] = null;
|
||||
|
||||
public com.sun.org.omg.CORBA.Initializer initializers[] = null;
|
||||
public String supported_interfaces[] = null;
|
||||
public String abstract_base_values[] = null;
|
||||
public boolean is_truncatable = false;
|
||||
public String base_value = null;
|
||||
public org.omg.CORBA.TypeCode type = null;
|
||||
|
||||
public FullValueDescription ()
|
||||
{
|
||||
} // ctor
|
||||
|
||||
// _CHANGED_
|
||||
//public FullValueDescription (String _name, String _id, boolean _is_abstract, boolean _is_custom, String _defined_in, String _version, com.sun.org.omg.CORBA.OperationDescription[] _operations, com.sun.org.omg.CORBA.AttributeDescription[] _attributes, com.sun.org.omg.CORBA.ValueMember[] _members, com.sun.org.omg.CORBA.Initializer[] _initializers, String[] _supported_interfaces, String[] _abstract_base_values, boolean _is_truncatable, String _base_value, org.omg.CORBA.TypeCode _type)
|
||||
public FullValueDescription (String _name, String _id, boolean _is_abstract, boolean _is_custom, String _defined_in, String _version, com.sun.org.omg.CORBA.OperationDescription[] _operations, com.sun.org.omg.CORBA.AttributeDescription[] _attributes, org.omg.CORBA.ValueMember[] _members, com.sun.org.omg.CORBA.Initializer[] _initializers, String[] _supported_interfaces, String[] _abstract_base_values, boolean _is_truncatable, String _base_value, org.omg.CORBA.TypeCode _type)
|
||||
{
|
||||
name = _name;
|
||||
id = _id;
|
||||
is_abstract = _is_abstract;
|
||||
is_custom = _is_custom;
|
||||
defined_in = _defined_in;
|
||||
version = _version;
|
||||
operations = _operations;
|
||||
attributes = _attributes;
|
||||
members = _members;
|
||||
initializers = _initializers;
|
||||
supported_interfaces = _supported_interfaces;
|
||||
abstract_base_values = _abstract_base_values;
|
||||
is_truncatable = _is_truncatable;
|
||||
base_value = _base_value;
|
||||
type = _type;
|
||||
} // ctor
|
||||
|
||||
} // class FullValueDescription
|
||||
@@ -0,0 +1,220 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA.ValueDefPackage;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ValueDefPackage/FullValueDescriptionHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:52 AM PDT
|
||||
*/
|
||||
|
||||
public final class FullValueDescriptionHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/ValueDef/FullValueDescription:1.0";
|
||||
|
||||
public FullValueDescriptionHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
private static boolean __active = false;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
synchronized (org.omg.CORBA.TypeCode.class)
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
if (__active)
|
||||
{
|
||||
return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
|
||||
}
|
||||
__active = true;
|
||||
org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [15];
|
||||
org.omg.CORBA.TypeCode _tcOf_members0 = null;
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", _tcOf_members0);
|
||||
_members0[0] = new org.omg.CORBA.StructMember (
|
||||
"name",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[1] = new org.omg.CORBA.StructMember (
|
||||
"id",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_boolean);
|
||||
_members0[2] = new org.omg.CORBA.StructMember (
|
||||
"is_abstract",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_boolean);
|
||||
_members0[3] = new org.omg.CORBA.StructMember (
|
||||
"is_custom",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[4] = new org.omg.CORBA.StructMember (
|
||||
"defined_in",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.VersionSpecHelper.id (), "VersionSpec", _tcOf_members0);
|
||||
_members0[5] = new org.omg.CORBA.StructMember (
|
||||
"version",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.OperationDescriptionHelper.type ();
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.OpDescriptionSeqHelper.id (), "OpDescriptionSeq", _tcOf_members0);
|
||||
_members0[6] = new org.omg.CORBA.StructMember (
|
||||
"operations",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.AttributeDescriptionHelper.type ();
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.AttrDescriptionSeqHelper.id (), "AttrDescriptionSeq", _tcOf_members0);
|
||||
_members0[7] = new org.omg.CORBA.StructMember (
|
||||
"attributes",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.ValueMemberHelper.type ();
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ValueMemberSeqHelper.id (), "ValueMemberSeq", _tcOf_members0);
|
||||
_members0[8] = new org.omg.CORBA.StructMember (
|
||||
"members",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.InitializerHelper.type ();
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.InitializerSeqHelper.id (), "InitializerSeq", _tcOf_members0);
|
||||
_members0[9] = new org.omg.CORBA.StructMember (
|
||||
"initializers",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdSeqHelper.id (), "RepositoryIdSeq", _tcOf_members0);
|
||||
_members0[10] = new org.omg.CORBA.StructMember (
|
||||
"supported_interfaces",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdSeqHelper.id (), "RepositoryIdSeq", _tcOf_members0);
|
||||
_members0[11] = new org.omg.CORBA.StructMember (
|
||||
"abstract_base_values",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_boolean);
|
||||
_members0[12] = new org.omg.CORBA.StructMember (
|
||||
"is_truncatable",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[13] = new org.omg.CORBA.StructMember (
|
||||
"base_value",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_TypeCode);
|
||||
_members0[14] = new org.omg.CORBA.StructMember (
|
||||
"type",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescriptionHelper.id (), "FullValueDescription", _members0);
|
||||
__active = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription value = new com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription ();
|
||||
value.name = istream.read_string ();
|
||||
value.id = istream.read_string ();
|
||||
value.is_abstract = istream.read_boolean ();
|
||||
value.is_custom = istream.read_boolean ();
|
||||
value.defined_in = istream.read_string ();
|
||||
value.version = istream.read_string ();
|
||||
value.operations = com.sun.org.omg.CORBA.OpDescriptionSeqHelper.read (istream);
|
||||
value.attributes = com.sun.org.omg.CORBA.AttrDescriptionSeqHelper.read (istream);
|
||||
value.members = com.sun.org.omg.CORBA.ValueMemberSeqHelper.read (istream);
|
||||
value.initializers = com.sun.org.omg.CORBA.InitializerSeqHelper.read (istream);
|
||||
value.supported_interfaces = com.sun.org.omg.CORBA.RepositoryIdSeqHelper.read (istream);
|
||||
value.abstract_base_values = com.sun.org.omg.CORBA.RepositoryIdSeqHelper.read (istream);
|
||||
value.is_truncatable = istream.read_boolean ();
|
||||
value.base_value = istream.read_string ();
|
||||
value.type = istream.read_TypeCode ();
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription value)
|
||||
{
|
||||
ostream.write_string (value.name);
|
||||
ostream.write_string (value.id);
|
||||
ostream.write_boolean (value.is_abstract);
|
||||
ostream.write_boolean (value.is_custom);
|
||||
ostream.write_string (value.defined_in);
|
||||
ostream.write_string (value.version);
|
||||
com.sun.org.omg.CORBA.OpDescriptionSeqHelper.write (ostream, value.operations);
|
||||
com.sun.org.omg.CORBA.AttrDescriptionSeqHelper.write (ostream, value.attributes);
|
||||
com.sun.org.omg.CORBA.ValueMemberSeqHelper.write (ostream, value.members);
|
||||
com.sun.org.omg.CORBA.InitializerSeqHelper.write (ostream, value.initializers);
|
||||
com.sun.org.omg.CORBA.RepositoryIdSeqHelper.write (ostream, value.supported_interfaces);
|
||||
com.sun.org.omg.CORBA.RepositoryIdSeqHelper.write (ostream, value.abstract_base_values);
|
||||
ostream.write_boolean (value.is_truncatable);
|
||||
ostream.write_string (value.base_value);
|
||||
ostream.write_TypeCode (value.type);
|
||||
}
|
||||
|
||||
}
|
||||
162
jdkSrc/jdk8/com/sun/org/omg/CORBA/ValueMemberHelper.java
Normal file
162
jdkSrc/jdk8/com/sun/org/omg/CORBA/ValueMemberHelper.java
Normal file
@@ -0,0 +1,162 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ValueMemberHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:44 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been _CHANGED_
|
||||
|
||||
public final class ValueMemberHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/ValueMember:1.0";
|
||||
|
||||
public ValueMemberHelper()
|
||||
{
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.ValueMember that)
|
||||
public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.ValueMember that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.ValueMember extract (org.omg.CORBA.Any a)
|
||||
public static org.omg.CORBA.ValueMember extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
private static boolean __active = false;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
synchronized (org.omg.CORBA.TypeCode.class)
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
if (__active)
|
||||
{
|
||||
return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
|
||||
}
|
||||
__active = true;
|
||||
org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [7];
|
||||
org.omg.CORBA.TypeCode _tcOf_members0 = null;
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", _tcOf_members0);
|
||||
_members0[0] = new org.omg.CORBA.StructMember (
|
||||
"name",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[1] = new org.omg.CORBA.StructMember (
|
||||
"id",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.RepositoryIdHelper.id (), "RepositoryId", _tcOf_members0);
|
||||
_members0[2] = new org.omg.CORBA.StructMember (
|
||||
"defined_in",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.VersionSpecHelper.id (), "VersionSpec", _tcOf_members0);
|
||||
_members0[3] = new org.omg.CORBA.StructMember (
|
||||
"version",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_TypeCode);
|
||||
_members0[4] = new org.omg.CORBA.StructMember (
|
||||
"type",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = com.sun.org.omg.CORBA.IDLTypeHelper.type ();
|
||||
_members0[5] = new org.omg.CORBA.StructMember (
|
||||
"type_def",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_short);
|
||||
_tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.VisibilityHelper.id (), "Visibility", _tcOf_members0);
|
||||
_members0[6] = new org.omg.CORBA.StructMember (
|
||||
"access",
|
||||
_tcOf_members0,
|
||||
null);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.org.omg.CORBA.ValueMemberHelper.id (), "ValueMember", _members0);
|
||||
__active = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.ValueMember read (org.omg.CORBA.portable.InputStream istream)
|
||||
public static org.omg.CORBA.ValueMember read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
// _CHANGED_
|
||||
//com.sun.org.omg.CORBA.ValueMember value = new com.sun.org.omg.CORBA.ValueMember ();
|
||||
org.omg.CORBA.ValueMember value = new org.omg.CORBA.ValueMember ();
|
||||
value.name = istream.read_string ();
|
||||
value.id = istream.read_string ();
|
||||
value.defined_in = istream.read_string ();
|
||||
value.version = istream.read_string ();
|
||||
value.type = istream.read_TypeCode ();
|
||||
value.type_def = com.sun.org.omg.CORBA.IDLTypeHelper.read (istream);
|
||||
value.access = istream.read_short ();
|
||||
return value;
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.ValueMember value)
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.ValueMember value)
|
||||
{
|
||||
ostream.write_string (value.name);
|
||||
ostream.write_string (value.id);
|
||||
ostream.write_string (value.defined_in);
|
||||
ostream.write_string (value.version);
|
||||
ostream.write_TypeCode (value.type);
|
||||
com.sun.org.omg.CORBA.IDLTypeHelper.write (ostream, value.type_def);
|
||||
ostream.write_short (value.access);
|
||||
}
|
||||
|
||||
}
|
||||
104
jdkSrc/jdk8/com/sun/org/omg/CORBA/ValueMemberSeqHelper.java
Normal file
104
jdkSrc/jdk8/com/sun/org/omg/CORBA/ValueMemberSeqHelper.java
Normal file
@@ -0,0 +1,104 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/ValueMemberSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:44 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been _CHANGED_
|
||||
|
||||
public final class ValueMemberSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/ValueMemberSeq:1.0";
|
||||
|
||||
public ValueMemberSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.ValueMember[] that)
|
||||
public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.ValueMember[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.ValueMember[] extract (org.omg.CORBA.Any a)
|
||||
public static org.omg.CORBA.ValueMember[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = com.sun.org.omg.CORBA.ValueMemberHelper.type ();
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.ValueMemberSeqHelper.id (), "ValueMemberSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static com.sun.org.omg.CORBA.ValueMember[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
public static org.omg.CORBA.ValueMember[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
// _CHANGED_
|
||||
//com.sun.org.omg.CORBA.ValueMember value[] = null;
|
||||
org.omg.CORBA.ValueMember value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
// _CHANGED_
|
||||
//value = new com.sun.org.omg.CORBA.ValueMember[_len0];
|
||||
value = new org.omg.CORBA.ValueMember[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.CORBA.ValueMemberHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
// _CHANGED_
|
||||
//public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.ValueMember[] value)
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.ValueMember[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.CORBA.ValueMemberHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
84
jdkSrc/jdk8/com/sun/org/omg/CORBA/VersionSpecHelper.java
Normal file
84
jdkSrc/jdk8/com/sun/org/omg/CORBA/VersionSpecHelper.java
Normal file
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/VersionSpecHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:43 AM PDT
|
||||
*/
|
||||
|
||||
public final class VersionSpecHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/VersionSpec:1.0";
|
||||
|
||||
public VersionSpecHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, String that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static String extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.VersionSpecHelper.id (), "VersionSpec", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static String read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
String value = null;
|
||||
value = istream.read_string ();
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, String value)
|
||||
{
|
||||
ostream.write_string (value);
|
||||
}
|
||||
|
||||
}
|
||||
86
jdkSrc/jdk8/com/sun/org/omg/CORBA/VisibilityHelper.java
Normal file
86
jdkSrc/jdk8/com/sun/org/omg/CORBA/VisibilityHelper.java
Normal file
@@ -0,0 +1,86 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/VisibilityHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:44 AM PDT
|
||||
*/
|
||||
|
||||
|
||||
// orbos 98-01-18: Objects By Value -- begin
|
||||
public final class VisibilityHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/CORBA/Visibility:1.0";
|
||||
|
||||
public VisibilityHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, short that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static short extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_short);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.VisibilityHelper.id (), "Visibility", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static short read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
short value = (short)0;
|
||||
value = istream.read_short ();
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, short value)
|
||||
{
|
||||
ostream.write_short (value);
|
||||
}
|
||||
|
||||
}
|
||||
148
jdkSrc/jdk8/com/sun/org/omg/CORBA/_IDLTypeStub.java
Normal file
148
jdkSrc/jdk8/com/sun/org/omg/CORBA/_IDLTypeStub.java
Normal file
@@ -0,0 +1,148 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.CORBA;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/CORBA/_IDLTypeStub.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from ir.idl
|
||||
* Thursday, May 6, 1999 1:51:45 AM PDT
|
||||
*/
|
||||
|
||||
// This file has been manually _CHANGED_
|
||||
|
||||
// _CHANGED_
|
||||
//public class _IDLTypeStub extends org.omg.CORBA.portable.ObjectImpl implements com.sun.org.omg.CORBA.IDLType
|
||||
public class _IDLTypeStub extends org.omg.CORBA.portable.ObjectImpl implements org.omg.CORBA.IDLType
|
||||
{
|
||||
// Constructors
|
||||
// NOTE: If the default constructor is used, the
|
||||
// object is useless until _set_delegate (...)
|
||||
// is called.
|
||||
public _IDLTypeStub ()
|
||||
{
|
||||
super ();
|
||||
}
|
||||
|
||||
public _IDLTypeStub (org.omg.CORBA.portable.Delegate delegate)
|
||||
{
|
||||
super ();
|
||||
_set_delegate (delegate);
|
||||
}
|
||||
|
||||
public org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
org.omg.CORBA.portable.InputStream _in = null;
|
||||
try {
|
||||
org.omg.CORBA.portable.OutputStream _out = _request ("_get_type", true);
|
||||
_in = _invoke (_out);
|
||||
org.omg.CORBA.TypeCode __result = _in.read_TypeCode ();
|
||||
return __result;
|
||||
} catch (org.omg.CORBA.portable.ApplicationException _ex) {
|
||||
_in = _ex.getInputStream ();
|
||||
String _id = _ex.getId ();
|
||||
throw new org.omg.CORBA.MARSHAL (_id);
|
||||
} catch (org.omg.CORBA.portable.RemarshalException _rm) {
|
||||
return type ();
|
||||
} finally {
|
||||
_releaseReply (_in);
|
||||
}
|
||||
} // type
|
||||
|
||||
|
||||
// read interface
|
||||
// _CHANGED_
|
||||
//public com.sun.org.omg.CORBA.DefinitionKind def_kind ()
|
||||
public org.omg.CORBA.DefinitionKind def_kind ()
|
||||
{
|
||||
org.omg.CORBA.portable.InputStream _in = null;
|
||||
try {
|
||||
org.omg.CORBA.portable.OutputStream _out = _request ("_get_def_kind", true);
|
||||
_in = _invoke (_out);
|
||||
// _CHANGED_
|
||||
//com.sun.org.omg.CORBA.DefinitionKind __result = com.sun.org.omg.CORBA.DefinitionKindHelper.read (_in);
|
||||
org.omg.CORBA.DefinitionKind __result = com.sun.org.omg.CORBA.DefinitionKindHelper.read (_in);
|
||||
return __result;
|
||||
} catch (org.omg.CORBA.portable.ApplicationException _ex) {
|
||||
_in = _ex.getInputStream ();
|
||||
String _id = _ex.getId ();
|
||||
throw new org.omg.CORBA.MARSHAL (_id);
|
||||
} catch (org.omg.CORBA.portable.RemarshalException _rm) {
|
||||
return def_kind ();
|
||||
} finally {
|
||||
_releaseReply (_in);
|
||||
}
|
||||
} // def_kind
|
||||
|
||||
|
||||
// write interface
|
||||
public void destroy ()
|
||||
{
|
||||
org.omg.CORBA.portable.InputStream _in = null;
|
||||
try {
|
||||
org.omg.CORBA.portable.OutputStream _out = _request ("destroy", true);
|
||||
_in = _invoke (_out);
|
||||
} catch (org.omg.CORBA.portable.ApplicationException _ex) {
|
||||
_in = _ex.getInputStream ();
|
||||
String _id = _ex.getId ();
|
||||
throw new org.omg.CORBA.MARSHAL (_id);
|
||||
} catch (org.omg.CORBA.portable.RemarshalException _rm) {
|
||||
destroy ();
|
||||
} finally {
|
||||
_releaseReply (_in);
|
||||
}
|
||||
} // destroy
|
||||
|
||||
// Type-specific CORBA::Object operations
|
||||
private static String[] __ids = {
|
||||
"IDL:omg.org/CORBA/IDLType:1.0",
|
||||
"IDL:omg.org/CORBA/IRObject:1.0"};
|
||||
|
||||
public String[] _ids ()
|
||||
{
|
||||
return (String[])__ids.clone ();
|
||||
}
|
||||
|
||||
private void readObject (java.io.ObjectInputStream s)
|
||||
{
|
||||
try
|
||||
{
|
||||
String str = s.readUTF ();
|
||||
org.omg.CORBA.Object obj = org.omg.CORBA.ORB.init ().string_to_object (str);
|
||||
org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
|
||||
_set_delegate (delegate);
|
||||
} catch (java.io.IOException e) {}
|
||||
}
|
||||
|
||||
private void writeObject (java.io.ObjectOutputStream s)
|
||||
{
|
||||
try
|
||||
{
|
||||
String str = org.omg.CORBA.ORB.init ().object_to_string (this);
|
||||
s.writeUTF (str);
|
||||
} catch (java.io.IOException e) {}
|
||||
}
|
||||
} // class _IDLTypeStub
|
||||
43
jdkSrc/jdk8/com/sun/org/omg/CORBA/portable/ValueHelper.java
Normal file
43
jdkSrc/jdk8/com/sun/org/omg/CORBA/portable/ValueHelper.java
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package com.sun.org.omg.CORBA.portable;
|
||||
|
||||
import org.omg.CORBA.TypeCode;
|
||||
import org.omg.CORBA.portable.BoxedValueHelper;
|
||||
|
||||
/**
|
||||
* An interface that is implemented by valuetype helper classes.
|
||||
* This interface appeared in CORBA 2.3 drafts but was removed from
|
||||
* the published CORBA 2.3 specification.
|
||||
* <P>
|
||||
* @deprecated Deprecated by CORBA 2.3.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface ValueHelper extends BoxedValueHelper {
|
||||
Class get_class();
|
||||
String[] get_truncatable_base_ids();
|
||||
TypeCode get_type();
|
||||
}
|
||||
39
jdkSrc/jdk8/com/sun/org/omg/SendingContext/CodeBase.java
Normal file
39
jdkSrc/jdk8/com/sun/org/omg/SendingContext/CodeBase.java
Normal file
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.SendingContext;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/SendingContext/CodeBase.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from rt.idl
|
||||
* Thursday, May 6, 1999 1:52:08 AM PDT
|
||||
*/
|
||||
|
||||
// Edited to leave RunTime in org.omg.CORBA
|
||||
|
||||
public interface CodeBase extends CodeBaseOperations, org.omg.SendingContext.RunTime, org.omg.CORBA.portable.IDLEntity
|
||||
{
|
||||
} // interface CodeBase
|
||||
@@ -0,0 +1,96 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.SendingContext;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/SendingContext/CodeBaseHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from rt.idl
|
||||
* Thursday, May 6, 1999 1:52:08 AM PDT
|
||||
*/
|
||||
|
||||
public final class CodeBaseHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/SendingContext/CodeBase:1.0";
|
||||
|
||||
public CodeBaseHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.SendingContext.CodeBase that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.SendingContext.CodeBase extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_interface_tc (com.sun.org.omg.SendingContext.CodeBaseHelper.id (), "CodeBase");
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.SendingContext.CodeBase read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
return narrow (istream.read_Object (_CodeBaseStub.class));
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.SendingContext.CodeBase value)
|
||||
{
|
||||
ostream.write_Object ((org.omg.CORBA.Object) value);
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.SendingContext.CodeBase narrow (org.omg.CORBA.Object obj)
|
||||
{
|
||||
if (obj == null)
|
||||
return null;
|
||||
else if (obj instanceof com.sun.org.omg.SendingContext.CodeBase)
|
||||
return (com.sun.org.omg.SendingContext.CodeBase)obj;
|
||||
else if (!obj._is_a (id ()))
|
||||
throw new org.omg.CORBA.BAD_PARAM ();
|
||||
else
|
||||
{
|
||||
org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
|
||||
return new com.sun.org.omg.SendingContext._CodeBaseStub (delegate);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.SendingContext;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/SendingContext/CodeBaseOperations.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from rt.idl
|
||||
* Thursday, May 6, 1999 1:52:08 AM PDT
|
||||
*/
|
||||
|
||||
// Edited to leave RunTime in org.omg.CORBA
|
||||
|
||||
public interface CodeBaseOperations extends org.omg.SendingContext.RunTimeOperations
|
||||
{
|
||||
|
||||
// Operation to obtain the IR from the sending context
|
||||
com.sun.org.omg.CORBA.Repository get_ir ();
|
||||
|
||||
// Operations to obtain a URL to the implementation code
|
||||
String implementation (String x);
|
||||
String[] implementations (String[] x);
|
||||
|
||||
// the same information
|
||||
com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription meta (String x);
|
||||
com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription[] metas (String[] x);
|
||||
|
||||
// information
|
||||
String[] bases (String x);
|
||||
} // interface CodeBaseOperations
|
||||
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.SendingContext.CodeBasePackage;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/SendingContext/CodeBasePackage/URLHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from rt.idl
|
||||
* Thursday, May 6, 1999 1:52:08 AM PDT
|
||||
*/
|
||||
|
||||
public final class URLHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/SendingContext/CodeBase/URL:1.0";
|
||||
|
||||
public URLHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, String that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static String extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.SendingContext.CodeBasePackage.URLHelper.id (), "URL", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static String read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
String value = null;
|
||||
value = istream.read_string ();
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, String value)
|
||||
{
|
||||
ostream.write_string (value);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.SendingContext.CodeBasePackage;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/SendingContext/CodeBasePackage/URLSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from rt.idl
|
||||
* Thursday, May 6, 1999 1:52:08 AM PDT
|
||||
*/
|
||||
|
||||
public final class URLSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/SendingContext/CodeBase/URLSeq:1.0";
|
||||
|
||||
public URLSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, String[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static String[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.SendingContext.CodeBasePackage.URLHelper.id (), "URL", __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.SendingContext.CodeBasePackage.URLSeqHelper.id (), "URLSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static String[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
String value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
value = new String[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.SendingContext.CodeBasePackage.URLHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, String[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.SendingContext.CodeBasePackage.URLHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.SendingContext.CodeBasePackage;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/SendingContext/CodeBasePackage/ValueDescSeqHelper.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from rt.idl
|
||||
* Thursday, May 6, 1999 1:52:08 AM PDT
|
||||
*/
|
||||
|
||||
public final class ValueDescSeqHelper
|
||||
{
|
||||
private static String _id = "IDL:omg.org/SendingContext/CodeBase/ValueDescSeq:1.0";
|
||||
|
||||
public ValueDescSeqHelper()
|
||||
{
|
||||
}
|
||||
|
||||
public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription[] that)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
|
||||
a.type (type ());
|
||||
write (out, that);
|
||||
a.read_value (out.create_input_stream (), type ());
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription[] extract (org.omg.CORBA.Any a)
|
||||
{
|
||||
return read (a.create_input_stream ());
|
||||
}
|
||||
|
||||
private static org.omg.CORBA.TypeCode __typeCode = null;
|
||||
synchronized public static org.omg.CORBA.TypeCode type ()
|
||||
{
|
||||
if (__typeCode == null)
|
||||
{
|
||||
__typeCode = com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescriptionHelper.type ();
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
|
||||
__typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.SendingContext.CodeBasePackage.ValueDescSeqHelper.id (), "ValueDescSeq", __typeCode);
|
||||
}
|
||||
return __typeCode;
|
||||
}
|
||||
|
||||
public static String id ()
|
||||
{
|
||||
return _id;
|
||||
}
|
||||
|
||||
public static com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription[] read (org.omg.CORBA.portable.InputStream istream)
|
||||
{
|
||||
com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription value[] = null;
|
||||
int _len0 = istream.read_long ();
|
||||
value = new com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription[_len0];
|
||||
for (int _o1 = 0;_o1 < value.length; ++_o1)
|
||||
value[_o1] = com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescriptionHelper.read (istream);
|
||||
return value;
|
||||
}
|
||||
|
||||
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription[] value)
|
||||
{
|
||||
ostream.write_long (value.length);
|
||||
for (int _i0 = 0;_i0 < value.length; ++_i0)
|
||||
com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescriptionHelper.write (ostream, value[_i0]);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,145 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.SendingContext;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/SendingContext/_CodeBaseImplBase.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from rt.idl
|
||||
* Thursday, May 6, 1999 1:52:08 AM PDT
|
||||
*/
|
||||
|
||||
public abstract class _CodeBaseImplBase extends org.omg.CORBA.portable.ObjectImpl
|
||||
implements com.sun.org.omg.SendingContext.CodeBase, org.omg.CORBA.portable.InvokeHandler
|
||||
{
|
||||
|
||||
// Constructors
|
||||
public _CodeBaseImplBase ()
|
||||
{
|
||||
}
|
||||
|
||||
private static java.util.Hashtable _methods = new java.util.Hashtable ();
|
||||
static
|
||||
{
|
||||
_methods.put ("get_ir", new java.lang.Integer (0));
|
||||
_methods.put ("implementation", new java.lang.Integer (1));
|
||||
_methods.put ("implementations", new java.lang.Integer (2));
|
||||
_methods.put ("meta", new java.lang.Integer (3));
|
||||
_methods.put ("metas", new java.lang.Integer (4));
|
||||
_methods.put ("bases", new java.lang.Integer (5));
|
||||
}
|
||||
|
||||
public org.omg.CORBA.portable.OutputStream _invoke (String method,
|
||||
org.omg.CORBA.portable.InputStream in,
|
||||
org.omg.CORBA.portable.ResponseHandler rh)
|
||||
{
|
||||
org.omg.CORBA.portable.OutputStream out = rh.createReply();
|
||||
java.lang.Integer __method = (java.lang.Integer)_methods.get (method);
|
||||
if (__method == null)
|
||||
throw new org.omg.CORBA.BAD_OPERATION (0, org.omg.CORBA.CompletionStatus.COMPLETED_MAYBE);
|
||||
|
||||
switch (__method.intValue ())
|
||||
{
|
||||
|
||||
// Operation to obtain the IR from the sending context
|
||||
case 0: // SendingContext/CodeBase/get_ir
|
||||
{
|
||||
com.sun.org.omg.CORBA.Repository __result = null;
|
||||
__result = this.get_ir ();
|
||||
com.sun.org.omg.CORBA.RepositoryHelper.write (out, __result);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
// Operations to obtain a URL to the implementation code
|
||||
case 1: // SendingContext/CodeBase/implementation
|
||||
{
|
||||
String x = com.sun.org.omg.CORBA.RepositoryIdHelper.read (in);
|
||||
String __result = null;
|
||||
__result = this.implementation (x);
|
||||
out.write_string (__result);
|
||||
break;
|
||||
}
|
||||
|
||||
case 2: // SendingContext/CodeBase/implementations
|
||||
{
|
||||
String x[] = com.sun.org.omg.CORBA.RepositoryIdSeqHelper.read (in);
|
||||
String __result[] = null;
|
||||
__result = this.implementations (x);
|
||||
com.sun.org.omg.SendingContext.CodeBasePackage.URLSeqHelper.write (out, __result);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
// the same information
|
||||
case 3: // SendingContext/CodeBase/meta
|
||||
{
|
||||
String x = com.sun.org.omg.CORBA.RepositoryIdHelper.read (in);
|
||||
com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription __result = null;
|
||||
__result = this.meta (x);
|
||||
com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescriptionHelper.write (out, __result);
|
||||
break;
|
||||
}
|
||||
|
||||
case 4: // SendingContext/CodeBase/metas
|
||||
{
|
||||
String x[] = com.sun.org.omg.CORBA.RepositoryIdSeqHelper.read (in);
|
||||
com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription __result[] = null;
|
||||
__result = this.metas (x);
|
||||
com.sun.org.omg.SendingContext.CodeBasePackage.ValueDescSeqHelper.write (out, __result);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
// information
|
||||
case 5: // SendingContext/CodeBase/bases
|
||||
{
|
||||
String x = com.sun.org.omg.CORBA.RepositoryIdHelper.read (in);
|
||||
String __result[] = null;
|
||||
__result = this.bases (x);
|
||||
com.sun.org.omg.CORBA.RepositoryIdSeqHelper.write (out, __result);
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
throw new org.omg.CORBA.BAD_OPERATION (0, org.omg.CORBA.CompletionStatus.COMPLETED_MAYBE);
|
||||
}
|
||||
|
||||
return out;
|
||||
} // _invoke
|
||||
|
||||
// Type-specific CORBA::Object operations
|
||||
private static String[] __ids = {
|
||||
"IDL:omg.org/SendingContext/CodeBase:1.0",
|
||||
"IDL:omg.org/SendingContext/RunTime:1.0"};
|
||||
|
||||
public String[] _ids ()
|
||||
{
|
||||
return (String[]) __ids.clone();
|
||||
}
|
||||
|
||||
|
||||
} // class _CodeBaseImplBase
|
||||
208
jdkSrc/jdk8/com/sun/org/omg/SendingContext/_CodeBaseStub.java
Normal file
208
jdkSrc/jdk8/com/sun/org/omg/SendingContext/_CodeBaseStub.java
Normal file
@@ -0,0 +1,208 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
package com.sun.org.omg.SendingContext;
|
||||
|
||||
|
||||
/**
|
||||
* com/sun/org/omg/SendingContext/_CodeBaseStub.java
|
||||
* Generated by the IDL-to-Java compiler (portable), version "3.0"
|
||||
* from rt.idl
|
||||
* Thursday, May 6, 1999 1:52:08 AM PDT
|
||||
*/
|
||||
|
||||
public class _CodeBaseStub extends org.omg.CORBA.portable.ObjectImpl implements com.sun.org.omg.SendingContext.CodeBase
|
||||
{
|
||||
// Constructors
|
||||
// NOTE: If the default constructor is used, the
|
||||
// object is useless until _set_delegate (...)
|
||||
// is called.
|
||||
public _CodeBaseStub ()
|
||||
{
|
||||
super ();
|
||||
}
|
||||
|
||||
public _CodeBaseStub (org.omg.CORBA.portable.Delegate delegate)
|
||||
{
|
||||
super ();
|
||||
_set_delegate (delegate);
|
||||
}
|
||||
|
||||
|
||||
// Operation to obtain the IR from the sending context
|
||||
public com.sun.org.omg.CORBA.Repository get_ir ()
|
||||
{
|
||||
org.omg.CORBA.portable.InputStream _in = null;
|
||||
try {
|
||||
org.omg.CORBA.portable.OutputStream _out = _request ("get_ir", true);
|
||||
_in = _invoke (_out);
|
||||
com.sun.org.omg.CORBA.Repository __result = com.sun.org.omg.CORBA.RepositoryHelper.read (_in);
|
||||
return __result;
|
||||
} catch (org.omg.CORBA.portable.ApplicationException _ex) {
|
||||
_in = _ex.getInputStream ();
|
||||
String _id = _ex.getId ();
|
||||
throw new org.omg.CORBA.MARSHAL (_id);
|
||||
} catch (org.omg.CORBA.portable.RemarshalException _rm) {
|
||||
return get_ir ();
|
||||
} finally {
|
||||
_releaseReply (_in);
|
||||
}
|
||||
} // get_ir
|
||||
|
||||
|
||||
// Operations to obtain a URL to the implementation code
|
||||
public String implementation (String x)
|
||||
{
|
||||
org.omg.CORBA.portable.InputStream _in = null;
|
||||
try {
|
||||
org.omg.CORBA.portable.OutputStream _out = _request ("implementation", true);
|
||||
com.sun.org.omg.CORBA.RepositoryIdHelper.write (_out, x);
|
||||
_in = _invoke (_out);
|
||||
String __result = com.sun.org.omg.SendingContext.CodeBasePackage.URLHelper.read (_in);
|
||||
return __result;
|
||||
} catch (org.omg.CORBA.portable.ApplicationException _ex) {
|
||||
_in = _ex.getInputStream ();
|
||||
String _id = _ex.getId ();
|
||||
throw new org.omg.CORBA.MARSHAL (_id);
|
||||
} catch (org.omg.CORBA.portable.RemarshalException _rm) {
|
||||
return implementation (x);
|
||||
} finally {
|
||||
_releaseReply (_in);
|
||||
}
|
||||
} // implementation
|
||||
|
||||
public String[] implementations (String[] x)
|
||||
{
|
||||
org.omg.CORBA.portable.InputStream _in = null;
|
||||
try {
|
||||
org.omg.CORBA.portable.OutputStream _out = _request ("implementations", true);
|
||||
com.sun.org.omg.CORBA.RepositoryIdSeqHelper.write (_out, x);
|
||||
_in = _invoke (_out);
|
||||
String __result[] = com.sun.org.omg.SendingContext.CodeBasePackage.URLSeqHelper.read (_in);
|
||||
return __result;
|
||||
} catch (org.omg.CORBA.portable.ApplicationException _ex) {
|
||||
_in = _ex.getInputStream ();
|
||||
String _id = _ex.getId ();
|
||||
throw new org.omg.CORBA.MARSHAL (_id);
|
||||
} catch (org.omg.CORBA.portable.RemarshalException _rm) {
|
||||
return implementations (x);
|
||||
} finally {
|
||||
_releaseReply (_in);
|
||||
}
|
||||
} // implementations
|
||||
|
||||
|
||||
// the same information
|
||||
public com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription meta (String x)
|
||||
{
|
||||
org.omg.CORBA.portable.InputStream _in = null;
|
||||
try {
|
||||
org.omg.CORBA.portable.OutputStream _out = _request ("meta", true);
|
||||
com.sun.org.omg.CORBA.RepositoryIdHelper.write (_out, x);
|
||||
_in = _invoke (_out);
|
||||
com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription __result = com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescriptionHelper.read (_in);
|
||||
return __result;
|
||||
} catch (org.omg.CORBA.portable.ApplicationException _ex) {
|
||||
_in = _ex.getInputStream ();
|
||||
String _id = _ex.getId ();
|
||||
throw new org.omg.CORBA.MARSHAL (_id);
|
||||
} catch (org.omg.CORBA.portable.RemarshalException _rm) {
|
||||
return meta (x);
|
||||
} finally {
|
||||
_releaseReply (_in);
|
||||
}
|
||||
} // meta
|
||||
|
||||
public com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription[] metas (String[] x)
|
||||
{
|
||||
org.omg.CORBA.portable.InputStream _in = null;
|
||||
try {
|
||||
org.omg.CORBA.portable.OutputStream _out = _request ("metas", true);
|
||||
com.sun.org.omg.CORBA.RepositoryIdSeqHelper.write (_out, x);
|
||||
_in = _invoke (_out);
|
||||
com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription __result[] = com.sun.org.omg.SendingContext.CodeBasePackage.ValueDescSeqHelper.read (_in);
|
||||
return __result;
|
||||
} catch (org.omg.CORBA.portable.ApplicationException _ex) {
|
||||
_in = _ex.getInputStream ();
|
||||
String _id = _ex.getId ();
|
||||
throw new org.omg.CORBA.MARSHAL (_id);
|
||||
} catch (org.omg.CORBA.portable.RemarshalException _rm) {
|
||||
return metas (x);
|
||||
} finally {
|
||||
_releaseReply (_in);
|
||||
}
|
||||
} // metas
|
||||
|
||||
|
||||
// information
|
||||
public String[] bases (String x)
|
||||
{
|
||||
org.omg.CORBA.portable.InputStream _in = null;
|
||||
try {
|
||||
org.omg.CORBA.portable.OutputStream _out = _request ("bases", true);
|
||||
com.sun.org.omg.CORBA.RepositoryIdHelper.write (_out, x);
|
||||
_in = _invoke (_out);
|
||||
String __result[] = com.sun.org.omg.CORBA.RepositoryIdSeqHelper.read (_in);
|
||||
return __result;
|
||||
} catch (org.omg.CORBA.portable.ApplicationException _ex) {
|
||||
_in = _ex.getInputStream ();
|
||||
String _id = _ex.getId ();
|
||||
throw new org.omg.CORBA.MARSHAL (_id);
|
||||
} catch (org.omg.CORBA.portable.RemarshalException _rm) {
|
||||
return bases (x);
|
||||
} finally {
|
||||
_releaseReply (_in);
|
||||
}
|
||||
} // bases
|
||||
|
||||
// Type-specific CORBA::Object operations
|
||||
private static String[] __ids = {
|
||||
"IDL:omg.org/SendingContext/CodeBase:1.0",
|
||||
"IDL:omg.org/SendingContext/RunTime:1.0"};
|
||||
|
||||
public String[] _ids ()
|
||||
{
|
||||
return (String[])__ids.clone ();
|
||||
}
|
||||
|
||||
private void readObject (java.io.ObjectInputStream s)
|
||||
{
|
||||
try
|
||||
{
|
||||
String str = s.readUTF ();
|
||||
org.omg.CORBA.Object obj = org.omg.CORBA.ORB.init ().string_to_object (str);
|
||||
org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
|
||||
_set_delegate (delegate);
|
||||
} catch (java.io.IOException e) {}
|
||||
}
|
||||
|
||||
private void writeObject (java.io.ObjectOutputStream s)
|
||||
{
|
||||
try
|
||||
{
|
||||
String str = org.omg.CORBA.ORB.init ().object_to_string (this);
|
||||
s.writeUTF (str);
|
||||
} catch (java.io.IOException e) {}
|
||||
}
|
||||
} // class _CodeBaseStub
|
||||
Reference in New Issue
Block a user