KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > TR > ComponentInfoSeqHolder


1 package SOFA.SOFAnode.TR;
2
3 public class ComponentInfoSeqHolder implements cz.cuni.sofa.lib.Streamable, java.io.Serializable JavaDoc {
4   public SOFA.SOFAnode.TR.ComponentInfo[] value = null;
5   
6   public ComponentInfoSeqHolder() {}
7   
8   public ComponentInfoSeqHolder(SOFA.SOFAnode.TR.ComponentInfo[] initialValue) {
9     value = initialValue;
10   }
11   
12   public void _read(cz.cuni.sofa.lib.InputStream i) throws java.io.IOException JavaDoc {
13     SOFA.SOFAnode.TR.ComponentInfoSeqHelper.read(i);
14   }
15   
16   public void _write(cz.cuni.sofa.lib.OutputStream o) throws java.io.IOException JavaDoc {
17     SOFA.SOFAnode.TR.ComponentInfoSeqHelper.write(o, value);
18   }
19 }
20
Popular Tags