Source code: org/omg/CosTradingRepos/ServiceTypeRepositoryPackage/TypeStructHolder.java
1 // **********************************************************************
2 //
3 // Generated by the ORBacus IDL to Java Translator
4 //
5 // Copyright (c) 2000
6 // Object Oriented Concepts, Inc.
7 // Billerica, MA, USA
8 //
9 // All Rights Reserved
10 //
11 // **********************************************************************
12
13 // Version: 4.0
14 // License: non-commercial
15
16 package org.omg.CosTradingRepos.ServiceTypeRepositoryPackage;
17
18 //
19 // IDL:omg.org/CosTradingRepos/ServiceTypeRepository/TypeStruct:1.0
20 //
21 final public class TypeStructHolder implements org.omg.CORBA.portable.Streamable
22 {
23 public TypeStruct value;
24
25 public
26 TypeStructHolder()
27 {
28 }
29
30 public
31 TypeStructHolder(TypeStruct initial)
32 {
33 value = initial;
34 }
35
36 public void
37 _read(org.omg.CORBA.portable.InputStream in)
38 {
39 value = TypeStructHelper.read(in);
40 }
41
42 public void
43 _write(org.omg.CORBA.portable.OutputStream out)
44 {
45 TypeStructHelper.write(out, value);
46 }
47
48 public org.omg.CORBA.TypeCode
49 _type()
50 {
51 return TypeStructHelper.type();
52 }
53 }