Source for gnu.CORBA.WStringHolder

   1: /* WStringHolder.java --
   2:    Copyright (C) 2005 Free Software Foundation, Inc.
   3: 
   4: This file is part of GNU Classpath.
   5: 
   6: GNU Classpath is free software; you can redistribute it and/or modify
   7: it under the terms of the GNU General Public License as published by
   8: the Free Software Foundation; either version 2, or (at your option)
   9: any later version.
  10: 
  11: GNU Classpath is distributed in the hope that it will be useful, but
  12: WITHOUT ANY WARRANTY; without even the implied warranty of
  13: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14: General Public License for more details.
  15: 
  16: You should have received a copy of the GNU General Public License
  17: along with GNU Classpath; see the file COPYING.  If not, write to the
  18: Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  19: 02110-1301 USA.
  20: 
  21: Linking this library statically or dynamically with other modules is
  22: making a combined work based on this library.  Thus, the terms and
  23: conditions of the GNU General Public License cover the whole
  24: combination.
  25: 
  26: As a special exception, the copyright holders of this library give you
  27: permission to link this library with independent modules to produce an
  28: executable, regardless of the license terms of these independent
  29: modules, and to copy and distribute the resulting executable under
  30: terms of your choice, provided that you also meet, for each linked
  31: independent module, the terms and conditions of the license of that
  32: module.  An independent module is a module which is not derived from
  33: or based on this library.  If you modify this library, you may extend
  34: this exception to your version of the library, but you are not
  35: obligated to do so.  If you do not wish to do so, delete this
  36: exception statement from your version. */
  37: 
  38: 
  39: package gnu.CORBA;
  40: 
  41: import gnu.CORBA.typecodes.StringTypeCode;
  42: 
  43: import org.omg.CORBA.TCKind;
  44: import org.omg.CORBA.TypeCode;
  45: import org.omg.CORBA.portable.InputStream;
  46: import org.omg.CORBA.portable.OutputStream;
  47: import org.omg.CORBA.portable.Streamable;
  48: 
  49: /**
  50:  * A holder for CORBA <code>wstring</code> that is mapped into
  51:  * java <code>String</code>. This holder writes and reads differently
  52:  * from the StringHolder.
  53:  *
  54:  * The holders have several application areas. The end user usually
  55:  * sees them implementing CORBA methods where the primitive type
  56:  * is passed by reference. While CORBA (or, for example, C) supports
  57:  * this, the java does not and a wrapper class is required.
  58:  *
  59:  * @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
  60:  */
  61: public class WStringHolder
  62:   implements Streamable
  63: {
  64:   /**
  65:    * The default type code for this holder.
  66:    */
  67:   private static final StringTypeCode t_string =
  68:     new StringTypeCode(TCKind.tk_wstring);
  69: 
  70:   /**
  71:    * The <code>String</code> (CORBA <code>string</code>) value,
  72:    * held by this WStringHolder.
  73:    */
  74:   public String value;
  75: 
  76:   /**
  77:    * Constructs an instance of WStringHolder,
  78:    * initializing {@link #value} to <code>null</code>.
  79:    */
  80:   public WStringHolder()
  81:   {
  82:   }
  83: 
  84:   /**
  85:    * Constructs an instance of WStringHolder,
  86:    * initializing {@link #value} to the given <code>String</code>.
  87:    *
  88:    * @param initial_value a value that will be assigned to the
  89:    * {@link #value} field.
  90:    */
  91:   public WStringHolder(String initial_value)
  92:   {
  93:     value = initial_value;
  94:   }
  95: 
  96:   /**
  97:    * Fill in the {@link #value } field by reading the required data
  98:    * from the given stream. For <code>string</code>, the functionality
  99:    * is delegated to
 100:    * {@link org.omg.CORBA.portable.InputStream#read_wstring}.
 101:    *
 102:    * @param input the input stream to read from.
 103:    */
 104:   public void _read(InputStream input)
 105:   {
 106:     value = input.read_wstring();
 107:   }
 108: 
 109:   /**
 110:    * Returns the TypeCode, corresponding the CORBA type that is stored
 111:    * using this holder. The {@link TypeCode#length()} method of the
 112:    * returned typecode always returns 0.
 113:    */
 114:   public TypeCode _type()
 115:   {
 116:     return t_string;
 117:   }
 118: 
 119:   /**
 120:    * Write the {@link #value } field to the given stream.
 121:    * For <code>string</code>, the functionality
 122:    * is delegated to
 123:    * {@link org.omg.CORBA.portable.OutputStream#write_wstring(String) }.
 124:    *
 125:    * @param output the output stream to write into.
 126:    */
 127:   public void _write(OutputStream output)
 128:   {
 129:     output.write_wstring(value);
 130:   }
 131: }