KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > mof > Model > FeatureListHolder


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

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