1. package org.omg.CORBA;
  2. /**
  3. * org/omg/CORBA/StringSeqHolder.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.1"
  5. * from ../../../../src/share/classes/org/omg/PortableInterceptor/CORBAX.idl
  6. * Monday, February 23, 2004 7:03:04 AM GMT
  7. */
  8. /** An array of Strings */
  9. public final class StringSeqHolder implements org.omg.CORBA.portable.Streamable
  10. {
  11. public String value[] = null;
  12. public StringSeqHolder ()
  13. {
  14. }
  15. public StringSeqHolder (String[] initialValue)
  16. {
  17. value = initialValue;
  18. }
  19. public void _read (org.omg.CORBA.portable.InputStream i)
  20. {
  21. value = org.omg.CORBA.StringSeqHelper.read (i);
  22. }
  23. public void _write (org.omg.CORBA.portable.OutputStream o)
  24. {
  25. org.omg.CORBA.StringSeqHelper.write (o, value);
  26. }
  27. public org.omg.CORBA.TypeCode _type ()
  28. {
  29. return org.omg.CORBA.StringSeqHelper.type ();
  30. }
  31. }