- /*
- * @(#)WCharSeqHolder.java 1.6 00/02/02
- *
- * Copyright 1999, 2000 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the proprietary information of Sun Microsystems, Inc.
- * Use is subject to license terms.
- *
- */
- package org.omg.CORBA;
-
-
- /**
- * org/omg/CORBA/WCharSeqHolder.java
- * Generated by the IDL-to-Java compiler (portable), version "3.0"
- * from streams.idl
- * 13 May 1999 22:41:36 o'clock GMT+00:00
- */
-
- public final class WCharSeqHolder implements org.omg.CORBA.portable.Streamable
- {
- public char value[] = null;
-
- public WCharSeqHolder ()
- {
- }
-
- public WCharSeqHolder (char[] initialValue)
- {
- value = initialValue;
- }
-
- public void _read (org.omg.CORBA.portable.InputStream i)
- {
- value = org.omg.CORBA.WCharSeqHelper.read (i);
- }
-
- public void _write (org.omg.CORBA.portable.OutputStream o)
- {
- org.omg.CORBA.WCharSeqHelper.write (o, value);
- }
-
- public org.omg.CORBA.TypeCode _type ()
- {
- return org.omg.CORBA.WCharSeqHelper.type ();
- }
-
- }