1 /*
   2  * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package com.sun.org.omg.CORBA;
  26 
  27 
  28 /**
  29 * com/sun/org/omg/CORBA/StructMemberHelper.java
  30 * Generated by the IDL-to-Java compiler (portable), version "3.0"
  31 * from ir.idl
  32 * Thursday, May 6, 1999 1:51:44 AM PDT
  33 */
  34 
  35 // This file has been manually _CHANGED_
  36 
  37 public final class StructMemberHelper
  38 {
  39     private static String  _id = "IDL:omg.org/CORBA/StructMember:1.0";
  40 
  41     public StructMemberHelper()
  42     {
  43     }
  44 
  45     // _CHANGED_
  46     //public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.StructMember that)
  47     public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.StructMember that)
  48     {
  49         org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
  50         a.type (type ());
  51         write (out, that);
  52         a.read_value (out.create_input_stream (), type ());
  53     }
  54 
  55     // _CHANGED_
  56     //public static com.sun.org.omg.CORBA.StructMember extract (org.omg.CORBA.Any a)
  57     public static org.omg.CORBA.StructMember extract (org.omg.CORBA.Any a)
  58     {
  59         return read (a.create_input_stream ());
  60     }
  61 
  62     private static org.omg.CORBA.TypeCode __typeCode = null;
  63     private static boolean __active = false;
  64     synchronized public static org.omg.CORBA.TypeCode type ()
  65     {
  66         if (__typeCode == null)
  67             {
  68                 synchronized (org.omg.CORBA.TypeCode.class)
  69                     {
  70                         if (__typeCode == null)
  71                             {
  72                                 if (__active)
  73                                     {
  74                                         return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
  75                                     }
  76                                 __active = true;
  77                                 org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [3];
  78                                 org.omg.CORBA.TypeCode _tcOf_members0 = null;
  79                                 _tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
  80                                 _tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.org.omg.CORBA.IdentifierHelper.id (), "Identifier", _tcOf_members0);
  81                                 _members0[0] = new org.omg.CORBA.StructMember (
  82                                                                                "name",
  83                                                                                _tcOf_members0,
  84                                                                                null);
  85                                 _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_TypeCode);
  86                                 _members0[1] = new org.omg.CORBA.StructMember (
  87                                                                                "type",
  88                                                                                _tcOf_members0,
  89                                                                                null);
  90                                 _tcOf_members0 = com.sun.org.omg.CORBA.IDLTypeHelper.type ();
  91                                 _members0[2] = new org.omg.CORBA.StructMember (
  92                                                                                "type_def",
  93                                                                                _tcOf_members0,
  94                                                                                null);
  95                                 __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.org.omg.CORBA.StructMemberHelper.id (), "StructMember", _members0);
  96                                 __active = false;
  97                             }
  98                     }
  99             }
 100         return __typeCode;
 101     }
 102 
 103     public static String id ()
 104     {
 105         return _id;
 106     }
 107 
 108     // _CHANGED_
 109     //public static com.sun.org.omg.CORBA.StructMember read (org.omg.CORBA.portable.InputStream istream)
 110     public static org.omg.CORBA.StructMember read (org.omg.CORBA.portable.InputStream istream)
 111     {
 112         // _CHANGED_
 113         //com.sun.org.omg.CORBA.StructMember value = new com.sun.org.omg.CORBA.StructMember ();
 114         org.omg.CORBA.StructMember value = new org.omg.CORBA.StructMember ();
 115         value.name = istream.read_string ();
 116         value.type = istream.read_TypeCode ();
 117         value.type_def = com.sun.org.omg.CORBA.IDLTypeHelper.read (istream);
 118         return value;
 119     }
 120 
 121     // _CHANGED_
 122     //public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.StructMember value)
 123     public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.StructMember value)
 124     {
 125         ostream.write_string (value.name);
 126         ostream.write_TypeCode (value.type);
 127         com.sun.org.omg.CORBA.IDLTypeHelper.write (ostream, value.type_def);
 128     }
 129 
 130 }