KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > mof > Reflective > RefAssociationHolder


1 package org.omg.mof.Reflective;
2
3 /**
4 * org/omg/mof/Reflective/RefAssociationHolder.java .
5 * Generated by the IDL-to-Java compiler (portable), version "3.1"
6 * from Reflective.idl
7 * lundi 17 mars 2003 15 h 00 CET
8 */

9
10
11 // end of RefObject interface
12
public final class RefAssociationHolder implements org.omg.CORBA.portable.Streamable JavaDoc
13 {
14   public org.omg.mof.Reflective.RefAssociation value = null;
15
16   public RefAssociationHolder ()
17   {
18   }
19
20   public RefAssociationHolder (org.omg.mof.Reflective.RefAssociation initialValue)
21   {
22     value = initialValue;
23   }
24
25   public void _read (org.omg.CORBA.portable.InputStream JavaDoc i)
26   {
27     value = org.omg.mof.Reflective.RefAssociationHelper.read (i);
28   }
29
30   public void _write (org.omg.CORBA.portable.OutputStream JavaDoc o)
31   {
32     org.omg.mof.Reflective.RefAssociationHelper.write (o, value);
33   }
34
35   public org.omg.CORBA.TypeCode JavaDoc _type ()
36   {
37     return org.omg.mof.Reflective.RefAssociationHelper.type ();
38   }
39
40 }
41
Popular Tags