src/share/classes/org/omg/CORBA/ByteHolder.java

Print this page
rev 597 : 8047722: @since tag cleanup in corba
Reviewed-by:


  31 import org.omg.CORBA.portable.OutputStream;
  32 
  33 /**
  34  * The Holder for <tt>Byte</tt>.  For more information on
  35  * Holder files, see <a href="doc-files/generatedfiles.html#holder">
  36  * "Generated Files: Holder Files"</a>.<P>
  37  * A Holder class for a <code>byte</code>
  38  * that is used to store "out" and "inout" parameters in IDL methods.
  39  * If an IDL method signature has an IDL <code>octet</code> as an "out"
  40  * or "inout" parameter, the programmer must pass an instance of
  41  * <code>ByteHolder</code> as the corresponding
  42  * parameter in the method invocation; for "inout" parameters, the programmer
  43  * must also fill the "in" value to be sent to the server.
  44  * Before the method invocation returns, the ORB will fill in the
  45  * value corresponding to the "out" value returned from the server.
  46  * <P>
  47  * If <code>myByteHolder</code> is an instance of <code>ByteHolder</code>,
  48  * the value stored in its <code>value</code> field can be accessed with
  49  * <code>myByteHolder.value</code>.
  50  *
  51  * @since       JDK1.2
  52  */
  53 public final class ByteHolder implements Streamable {
  54     /**
  55      * The <code>byte</code> value held by this <code>ByteHolder</code>
  56      * object.
  57      */
  58 
  59     public byte value;
  60 
  61     /**
  62      * Constructs a new <code>ByteHolder</code> object with its
  63      * <code>value</code> field initialized to 0.
  64      */
  65     public ByteHolder() {
  66     }
  67 
  68     /**
  69      * Constructs a new <code>ByteHolder</code> object for the given
  70      * <code>byte</code>.
  71      * @param initial the <code>byte</code> with which to initialize




  31 import org.omg.CORBA.portable.OutputStream;
  32 
  33 /**
  34  * The Holder for <tt>Byte</tt>.  For more information on
  35  * Holder files, see <a href="doc-files/generatedfiles.html#holder">
  36  * "Generated Files: Holder Files"</a>.<P>
  37  * A Holder class for a <code>byte</code>
  38  * that is used to store "out" and "inout" parameters in IDL methods.
  39  * If an IDL method signature has an IDL <code>octet</code> as an "out"
  40  * or "inout" parameter, the programmer must pass an instance of
  41  * <code>ByteHolder</code> as the corresponding
  42  * parameter in the method invocation; for "inout" parameters, the programmer
  43  * must also fill the "in" value to be sent to the server.
  44  * Before the method invocation returns, the ORB will fill in the
  45  * value corresponding to the "out" value returned from the server.
  46  * <P>
  47  * If <code>myByteHolder</code> is an instance of <code>ByteHolder</code>,
  48  * the value stored in its <code>value</code> field can be accessed with
  49  * <code>myByteHolder.value</code>.
  50  *
  51  * @since       1.2
  52  */
  53 public final class ByteHolder implements Streamable {
  54     /**
  55      * The <code>byte</code> value held by this <code>ByteHolder</code>
  56      * object.
  57      */
  58 
  59     public byte value;
  60 
  61     /**
  62      * Constructs a new <code>ByteHolder</code> object with its
  63      * <code>value</code> field initialized to 0.
  64      */
  65     public ByteHolder() {
  66     }
  67 
  68     /**
  69      * Constructs a new <code>ByteHolder</code> object for the given
  70      * <code>byte</code>.
  71      * @param initial the <code>byte</code> with which to initialize