corba/src/java.corba/share/classes/org/omg/CORBA/DynAny.java
author avstepan
Sun, 13 Sep 2015 23:31:47 +0300
changeset 32688 936c391804a5
parent 31188 123a0b07b632
permissions -rw-r--r--
8133650: replace some <tt> tags (obsolete in html5) in CORBA docs Reviewed-by: lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     1
/*
31188
123a0b07b632 8086029: Fix doclint reference warnings in org.omg.CORBA
darcy
parents: 25862
diff changeset
     2
 * Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
02bb8761fcce Initial load
duke
parents:
diff changeset
     4
 *
02bb8761fcce Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
02bb8761fcce Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    10
 *
02bb8761fcce Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
02bb8761fcce Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
02bb8761fcce Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
02bb8761fcce Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
02bb8761fcce Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
02bb8761fcce Initial load
duke
parents:
diff changeset
    16
 *
02bb8761fcce Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
02bb8761fcce Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
02bb8761fcce Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
02bb8761fcce Initial load
duke
parents:
diff changeset
    20
 *
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
    23
 * questions.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    24
 */
02bb8761fcce Initial load
duke
parents:
diff changeset
    25
02bb8761fcce Initial load
duke
parents:
diff changeset
    26
02bb8761fcce Initial load
duke
parents:
diff changeset
    27
package org.omg.CORBA;
02bb8761fcce Initial load
duke
parents:
diff changeset
    28
02bb8761fcce Initial load
duke
parents:
diff changeset
    29
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    30
/**
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    31
 * Enables {@code org.omg.CORBA.Any} values to be dynamically
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    32
 * interpreted (traversed) and
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    33
 * constructed. A {@code DynAny} object is associated with a data value
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    34
 * which may correspond to a copy of the value inserted into an {@code Any}.
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    35
 * The {@code DynAny} APIs enable traversal of the data value associated with an
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    36
 * Any at runtime and extraction of the primitive constituents of the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    37
 * data value.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    38
 * @deprecated Use the new <a href="../DynamicAny/DynAny.html">DynAny</a> instead
02bb8761fcce Initial load
duke
parents:
diff changeset
    39
 */
02bb8761fcce Initial load
duke
parents:
diff changeset
    40
@Deprecated
02bb8761fcce Initial load
duke
parents:
diff changeset
    41
public interface DynAny extends org.omg.CORBA.Object
02bb8761fcce Initial load
duke
parents:
diff changeset
    42
{
02bb8761fcce Initial load
duke
parents:
diff changeset
    43
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    44
     * Returns the {@code TypeCode} of the object inserted into
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    45
     * this {@code DynAny}.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    46
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    47
     * @return the {@code TypeCode} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    48
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
    49
    public org.omg.CORBA.TypeCode type() ;
02bb8761fcce Initial load
duke
parents:
diff changeset
    50
02bb8761fcce Initial load
duke
parents:
diff changeset
    51
    /**
02bb8761fcce Initial load
duke
parents:
diff changeset
    52
     * Copy the contents from one Dynamic Any into another.
02bb8761fcce Initial load
duke
parents:
diff changeset
    53
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    54
     * @param dyn_any the {@code DynAny} object whose contents
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    55
     *                are assigned to this {@code DynAny}.
31188
123a0b07b632 8086029: Fix doclint reference warnings in org.omg.CORBA
darcy
parents: 25862
diff changeset
    56
     * @throws org.omg.CORBA.DynAnyPackage.Invalid if the source
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    57
     * {@code DynAny} is invalid
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    58
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
    59
    public void assign(org.omg.CORBA.DynAny dyn_any)
02bb8761fcce Initial load
duke
parents:
diff changeset
    60
        throws org.omg.CORBA.DynAnyPackage.Invalid;
02bb8761fcce Initial load
duke
parents:
diff changeset
    61
02bb8761fcce Initial load
duke
parents:
diff changeset
    62
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    63
     * Make a {@code DynAny} object from an {@code Any}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    64
     * object.
02bb8761fcce Initial load
duke
parents:
diff changeset
    65
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    66
     * @param value the {@code Any} object.
31188
123a0b07b632 8086029: Fix doclint reference warnings in org.omg.CORBA
darcy
parents: 25862
diff changeset
    67
     * @throws org.omg.CORBA.DynAnyPackage.Invalid if the source
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    68
     * {@code Any} object is empty or bad
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    69
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
    70
    public void from_any(org.omg.CORBA.Any value)
02bb8761fcce Initial load
duke
parents:
diff changeset
    71
        throws org.omg.CORBA.DynAnyPackage.Invalid;
02bb8761fcce Initial load
duke
parents:
diff changeset
    72
02bb8761fcce Initial load
duke
parents:
diff changeset
    73
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    74
     * Convert a {@code DynAny} object to an {@code Any}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    75
     * object.
02bb8761fcce Initial load
duke
parents:
diff changeset
    76
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    77
     * @return the {@code Any} object.
31188
123a0b07b632 8086029: Fix doclint reference warnings in org.omg.CORBA
darcy
parents: 25862
diff changeset
    78
     * @throws org.omg.CORBA.DynAnyPackage.Invalid if this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    79
     * {@code DynAny} is empty or bad.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    80
     *            created or does not contain a meaningful value
02bb8761fcce Initial load
duke
parents:
diff changeset
    81
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
    82
    public org.omg.CORBA.Any to_any()
02bb8761fcce Initial load
duke
parents:
diff changeset
    83
        throws org.omg.CORBA.DynAnyPackage.Invalid;
02bb8761fcce Initial load
duke
parents:
diff changeset
    84
02bb8761fcce Initial load
duke
parents:
diff changeset
    85
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    86
     * Destroys this {@code DynAny} object and frees any resources
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    87
     * used to represent the data value associated with it. This method
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    88
     * also destroys all {@code DynAny} objects obtained from it.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    89
     * <p>
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    90
     * Destruction of {@code DynAny} objects should be handled with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    91
     * care, taking into account issues dealing with the representation of
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    92
     * data values associated with {@code DynAny} objects.  A programmer
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    93
     * who wants to destroy a {@code DynAny} object but still be able
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    94
     * to manipulate some component of the data value associated with it,
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    95
     * should first create a {@code DynAny} object for the component
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
    96
     * and then make a copy of the created {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    97
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
    98
    public void destroy() ;
02bb8761fcce Initial load
duke
parents:
diff changeset
    99
02bb8761fcce Initial load
duke
parents:
diff changeset
   100
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   101
     * Clones this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   102
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   103
     * @return a copy of this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   104
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   105
    public org.omg.CORBA.DynAny copy() ;
02bb8761fcce Initial load
duke
parents:
diff changeset
   106
02bb8761fcce Initial load
duke
parents:
diff changeset
   107
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   108
     * Inserts the given {@code boolean} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   109
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   110
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   111
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   112
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   113
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   114
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   115
     * @param value the {@code boolean} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   116
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   117
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   118
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   119
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   120
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   121
    public void insert_boolean(boolean value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   122
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   123
02bb8761fcce Initial load
duke
parents:
diff changeset
   124
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   125
     * Inserts the given {@code byte} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   126
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   127
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   128
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   129
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   130
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   131
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   132
     * @param value the {@code byte} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   133
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   134
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   135
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   136
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   137
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   138
    public void insert_octet(byte value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   139
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   140
02bb8761fcce Initial load
duke
parents:
diff changeset
   141
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   142
     * Inserts the given {@code char} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   143
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   144
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   145
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   146
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   147
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   148
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   149
     * @param value the {@code char} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   150
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   151
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   152
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   153
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   154
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   155
    public void insert_char(char value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   156
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   157
02bb8761fcce Initial load
duke
parents:
diff changeset
   158
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   159
     * Inserts the given {@code short} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   160
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   161
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   162
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   163
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   164
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   165
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   166
     * @param value the {@code short} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   167
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   168
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   169
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   170
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   171
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   172
    public void insert_short(short value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   173
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   174
02bb8761fcce Initial load
duke
parents:
diff changeset
   175
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   176
     * Inserts the given {@code short} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   177
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   178
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   179
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   180
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   181
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   182
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   183
     * @param value the {@code short} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   184
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   185
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   186
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   187
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   188
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   189
    public void insert_ushort(short value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   190
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   191
02bb8761fcce Initial load
duke
parents:
diff changeset
   192
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   193
     * Inserts the given {@code int} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   194
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   195
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   196
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   197
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   198
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   199
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   200
     * @param value the {@code int} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   201
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   202
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   203
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   204
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   205
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   206
    public void insert_long(int value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   207
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   208
02bb8761fcce Initial load
duke
parents:
diff changeset
   209
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   210
     * Inserts the given {@code int} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   211
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   212
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   213
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   214
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   215
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   216
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   217
     * @param value the {@code int} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   218
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   219
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   220
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   221
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   222
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   223
    public void insert_ulong(int value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   224
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   225
02bb8761fcce Initial load
duke
parents:
diff changeset
   226
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   227
     * Inserts the given {@code float} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   228
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   229
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   230
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   231
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   232
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   233
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   234
     * @param value the {@code float} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   235
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   236
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   237
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   238
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   239
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   240
    public void insert_float(float value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   241
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   242
02bb8761fcce Initial load
duke
parents:
diff changeset
   243
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   244
     * Inserts the given {@code double} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   245
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   246
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   247
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   248
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   249
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   250
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   251
     * @param value the {@code double} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   252
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   253
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   254
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   255
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   256
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   257
    public void insert_double(double value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   258
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   259
02bb8761fcce Initial load
duke
parents:
diff changeset
   260
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   261
     * Inserts the given {@code String} object as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   262
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   263
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   264
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   265
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   266
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   267
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   268
     * @param value the {@code String} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   269
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   270
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   271
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   272
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   273
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   274
    public void insert_string(String value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   275
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   276
02bb8761fcce Initial load
duke
parents:
diff changeset
   277
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   278
     * Inserts the given {@code org.omg.CORBA.Object} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   279
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   280
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   281
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   282
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   283
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   284
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   285
     * @param value the {@code org.omg.CORBA.Object} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   286
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   287
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   288
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   289
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   290
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   291
    public void insert_reference(org.omg.CORBA.Object value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   292
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   293
02bb8761fcce Initial load
duke
parents:
diff changeset
   294
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   295
     * Inserts the given {@code org.omg.CORBA.TypeCode} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   296
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   297
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   298
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   299
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   300
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   301
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   302
     * @param value the {@code org.omg.CORBA.TypeCode} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   303
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   304
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   305
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   306
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   307
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   308
    public void insert_typecode(org.omg.CORBA.TypeCode value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   309
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   310
02bb8761fcce Initial load
duke
parents:
diff changeset
   311
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   312
     * Inserts the given {@code long} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   313
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   314
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   315
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   316
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   317
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   318
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   319
     * @param value the {@code long} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   320
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   321
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   322
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   323
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   324
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   325
    public void insert_longlong(long value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   326
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   327
02bb8761fcce Initial load
duke
parents:
diff changeset
   328
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   329
     * Inserts the given {@code long} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   330
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   331
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   332
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   333
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   334
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   335
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   336
     * @param value the {@code long} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   337
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   338
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   339
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   340
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   341
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   342
    public void insert_ulonglong(long value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   343
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   344
02bb8761fcce Initial load
duke
parents:
diff changeset
   345
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   346
     * Inserts the given {@code char} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   347
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   348
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   349
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   350
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   351
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   352
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   353
     * @param value the {@code char} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   354
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   355
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   356
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   357
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   358
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   359
    public void insert_wchar(char value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   360
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   361
02bb8761fcce Initial load
duke
parents:
diff changeset
   362
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   363
     * Inserts the given {@code String} as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   364
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   365
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   366
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   367
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   368
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   369
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   370
     * @param value the {@code String} to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   371
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   372
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   373
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   374
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   375
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   376
    public void insert_wstring(String value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   377
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   378
02bb8761fcce Initial load
duke
parents:
diff changeset
   379
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   380
     * Inserts the given {@code org.omg.CORBA.Any} object as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   381
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   382
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   383
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   384
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   385
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   386
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   387
     * @param value the {@code org.omg.CORBA.Any} object to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   388
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   389
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   390
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   391
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   392
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   393
    public void insert_any(org.omg.CORBA.Any value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   394
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   395
02bb8761fcce Initial load
duke
parents:
diff changeset
   396
    // orbos 98-01-18: Objects By Value -- begin
02bb8761fcce Initial load
duke
parents:
diff changeset
   397
02bb8761fcce Initial load
duke
parents:
diff changeset
   398
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   399
     * Inserts the given {@code java.io.Serializable} object as the value for this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   400
     * {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   401
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   402
     * <p> If this method is called on a constructed {@code DynAny}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   403
     * object, it initializes the next component of the constructed data
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   404
     * value associated with this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   405
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   406
     * @param value the {@code java.io.Serializable} object to insert into this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   407
     *              {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   408
     * @throws org.omg.CORBA.DynAnyPackage.InvalidValue
02bb8761fcce Initial load
duke
parents:
diff changeset
   409
     *            if the value inserted is not consistent with the type
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   410
     *            of the accessed component in this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   411
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   412
    public void insert_val(java.io.Serializable value)
02bb8761fcce Initial load
duke
parents:
diff changeset
   413
        throws org.omg.CORBA.DynAnyPackage.InvalidValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
   414
02bb8761fcce Initial load
duke
parents:
diff changeset
   415
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   416
     * Retrieves the {@code java.io.Serializable} object contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   417
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   418
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   419
     * @return the {@code java.io.Serializable} object that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   420
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   421
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   422
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   423
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   424
     *               the type code for a {@code java.io.Serializable} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   425
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   426
    public java.io.Serializable get_val()
02bb8761fcce Initial load
duke
parents:
diff changeset
   427
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   428
02bb8761fcce Initial load
duke
parents:
diff changeset
   429
    // orbos 98-01-18: Objects By Value -- end
02bb8761fcce Initial load
duke
parents:
diff changeset
   430
02bb8761fcce Initial load
duke
parents:
diff changeset
   431
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   432
     * Retrieves the {@code boolean} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   433
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   434
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   435
     * @return the {@code boolean} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   436
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   437
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   438
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   439
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   440
     *               the type code for a {@code boolean}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   441
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   442
    public boolean get_boolean()
02bb8761fcce Initial load
duke
parents:
diff changeset
   443
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   444
02bb8761fcce Initial load
duke
parents:
diff changeset
   445
02bb8761fcce Initial load
duke
parents:
diff changeset
   446
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   447
     * Retrieves the {@code byte} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   448
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   449
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   450
     * @return the {@code byte} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   451
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   452
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   453
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   454
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   455
     *               the type code for a {@code byte}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   456
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   457
    public byte get_octet()
02bb8761fcce Initial load
duke
parents:
diff changeset
   458
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   459
02bb8761fcce Initial load
duke
parents:
diff changeset
   460
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   461
     * Retrieves the {@code char} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   462
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   463
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   464
     * @return the {@code char} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   465
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   466
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   467
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   468
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   469
     *               the type code for a {@code char}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   470
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   471
    public char get_char()
02bb8761fcce Initial load
duke
parents:
diff changeset
   472
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   473
02bb8761fcce Initial load
duke
parents:
diff changeset
   474
02bb8761fcce Initial load
duke
parents:
diff changeset
   475
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   476
     * Retrieves the {@code short} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   477
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   478
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   479
     * @return the {@code short} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   480
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   481
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   482
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   483
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   484
     *               the type code for a {@code short}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   485
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   486
    public short get_short()
02bb8761fcce Initial load
duke
parents:
diff changeset
   487
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   488
02bb8761fcce Initial load
duke
parents:
diff changeset
   489
02bb8761fcce Initial load
duke
parents:
diff changeset
   490
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   491
     * Retrieves the {@code short} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   492
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   493
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   494
     * @return the {@code short} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   495
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   496
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   497
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   498
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   499
     *               the type code for a {@code short}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   500
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   501
    public short get_ushort()
02bb8761fcce Initial load
duke
parents:
diff changeset
   502
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   503
02bb8761fcce Initial load
duke
parents:
diff changeset
   504
02bb8761fcce Initial load
duke
parents:
diff changeset
   505
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   506
     * Retrieves the {@code int} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   507
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   508
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   509
     * @return the {@code int} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   510
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   511
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   512
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   513
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   514
     *               the type code for a {@code int}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   515
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   516
    public int get_long()
02bb8761fcce Initial load
duke
parents:
diff changeset
   517
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   518
02bb8761fcce Initial load
duke
parents:
diff changeset
   519
02bb8761fcce Initial load
duke
parents:
diff changeset
   520
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   521
     * Retrieves the {@code int} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   522
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   523
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   524
     * @return the {@code int} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   525
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   526
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   527
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   528
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   529
     *               the type code for a {@code int}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   530
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   531
    public int get_ulong()
02bb8761fcce Initial load
duke
parents:
diff changeset
   532
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   533
02bb8761fcce Initial load
duke
parents:
diff changeset
   534
02bb8761fcce Initial load
duke
parents:
diff changeset
   535
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   536
     * Retrieves the {@code float} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   537
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   538
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   539
     * @return the {@code float} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   540
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   541
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   542
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   543
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   544
     *               the type code for a {@code float}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   545
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   546
    public float get_float()
02bb8761fcce Initial load
duke
parents:
diff changeset
   547
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   548
02bb8761fcce Initial load
duke
parents:
diff changeset
   549
02bb8761fcce Initial load
duke
parents:
diff changeset
   550
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   551
     * Retrieves the {@code double} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   552
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   553
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   554
     * @return the {@code double} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   555
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   556
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   557
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   558
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   559
     *               the type code for a {@code double}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   560
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   561
    public double get_double()
02bb8761fcce Initial load
duke
parents:
diff changeset
   562
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   563
02bb8761fcce Initial load
duke
parents:
diff changeset
   564
02bb8761fcce Initial load
duke
parents:
diff changeset
   565
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   566
     * Retrieves the {@code String} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   567
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   568
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   569
     * @return the {@code String} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   570
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   571
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   572
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   573
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   574
     *               the type code for a {@code String}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   575
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   576
    public String get_string()
02bb8761fcce Initial load
duke
parents:
diff changeset
   577
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   578
02bb8761fcce Initial load
duke
parents:
diff changeset
   579
02bb8761fcce Initial load
duke
parents:
diff changeset
   580
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   581
     * Retrieves the {@code org.omg.CORBA.Other} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   582
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   583
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   584
     * @return the {@code org.omg.CORBA.Other} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   585
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   586
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   587
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   588
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   589
     *               the type code for an {@code org.omg.CORBA.Other}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   590
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   591
    public org.omg.CORBA.Object get_reference()
02bb8761fcce Initial load
duke
parents:
diff changeset
   592
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   593
02bb8761fcce Initial load
duke
parents:
diff changeset
   594
02bb8761fcce Initial load
duke
parents:
diff changeset
   595
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   596
     * Retrieves the {@code org.omg.CORBA.TypeCode} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   597
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   598
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   599
     * @return the {@code org.omg.CORBA.TypeCode} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   600
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   601
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   602
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   603
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   604
     *               the type code for a {@code org.omg.CORBA.TypeCode}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   605
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   606
    public org.omg.CORBA.TypeCode get_typecode()
02bb8761fcce Initial load
duke
parents:
diff changeset
   607
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   608
02bb8761fcce Initial load
duke
parents:
diff changeset
   609
02bb8761fcce Initial load
duke
parents:
diff changeset
   610
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   611
     * Retrieves the {@code long} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   612
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   613
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   614
     * @return the {@code long} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   615
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   616
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   617
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   618
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   619
     *               the type code for a {@code long}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   620
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   621
    public long get_longlong()
02bb8761fcce Initial load
duke
parents:
diff changeset
   622
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   623
02bb8761fcce Initial load
duke
parents:
diff changeset
   624
02bb8761fcce Initial load
duke
parents:
diff changeset
   625
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   626
     * Retrieves the {@code long} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   627
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   628
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   629
     * @return the {@code long} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   630
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   631
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   632
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   633
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   634
     *               the type code for a {@code long}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   635
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   636
    public long get_ulonglong()
02bb8761fcce Initial load
duke
parents:
diff changeset
   637
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   638
02bb8761fcce Initial load
duke
parents:
diff changeset
   639
02bb8761fcce Initial load
duke
parents:
diff changeset
   640
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   641
     * Retrieves the {@code char} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   642
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   643
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   644
     * @return the {@code char} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   645
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   646
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   647
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   648
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   649
     *               the type code for a {@code char}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   650
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   651
    public char get_wchar()
02bb8761fcce Initial load
duke
parents:
diff changeset
   652
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   653
02bb8761fcce Initial load
duke
parents:
diff changeset
   654
02bb8761fcce Initial load
duke
parents:
diff changeset
   655
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   656
     * Retrieves the {@code String} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   657
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   658
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   659
     * @return the {@code String} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   660
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   661
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   662
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   663
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   664
     *               the type code for a {@code String}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   665
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   666
    public String get_wstring()
02bb8761fcce Initial load
duke
parents:
diff changeset
   667
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   668
02bb8761fcce Initial load
duke
parents:
diff changeset
   669
02bb8761fcce Initial load
duke
parents:
diff changeset
   670
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   671
     * Retrieves the {@code org.omg.CORBA.Any} contained
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   672
     * in this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   673
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   674
     * @return the {@code org.omg.CORBA.Any} that is the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   675
     *         value for this {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   676
     * @throws org.omg.CORBA.DynAnyPackage.TypeMismatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   677
     *               if the type code of the accessed component in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   678
     *               {@code DynAny} object is not equivalent to
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   679
     *               the type code for an {@code org.omg.CORBA.Any}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   680
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   681
    public org.omg.CORBA.Any get_any()
02bb8761fcce Initial load
duke
parents:
diff changeset
   682
        throws org.omg.CORBA.DynAnyPackage.TypeMismatch;
02bb8761fcce Initial load
duke
parents:
diff changeset
   683
02bb8761fcce Initial load
duke
parents:
diff changeset
   684
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   685
     * Returns a {@code DynAny} object reference that can
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   686
     * be used to get/set the value of the component currently accessed.
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   687
     * The appropriate {@code insert} method
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   688
     * can be called on the resulting {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   689
     * to initialize the component.
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   690
     * The appropriate {@code get} method
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   691
     * can be called on the resulting {@code DynAny} object
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   692
     * to extract the value of the component.
02bb8761fcce Initial load
duke
parents:
diff changeset
   693
         *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   694
         * @return a {@code DynAny} object reference that can be
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   695
         *         used to retrieve or set the value of the component currently
02bb8761fcce Initial load
duke
parents:
diff changeset
   696
         *         accessed
02bb8761fcce Initial load
duke
parents:
diff changeset
   697
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   698
    public org.omg.CORBA.DynAny current_component() ;
02bb8761fcce Initial load
duke
parents:
diff changeset
   699
02bb8761fcce Initial load
duke
parents:
diff changeset
   700
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   701
     * Moves to the next component of this {@code DynAny} object.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   702
     * This method is used for iterating through the components of
02bb8761fcce Initial load
duke
parents:
diff changeset
   703
     * a constructed type, effectively moving a pointer from one
02bb8761fcce Initial load
duke
parents:
diff changeset
   704
     * component to the next.  The pointer starts out on the first
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   705
     * component when a {@code DynAny} object is created.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   706
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   707
     * @return {@code true} if the pointer points to a component;
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   708
     * {@code false} if there are no more components or this
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   709
     * {@code DynAny} is associated with a basic type rather than
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   710
     * a constructed type
02bb8761fcce Initial load
duke
parents:
diff changeset
   711
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   712
    public boolean next() ;
02bb8761fcce Initial load
duke
parents:
diff changeset
   713
02bb8761fcce Initial load
duke
parents:
diff changeset
   714
    /**
02bb8761fcce Initial load
duke
parents:
diff changeset
   715
     * Moves the internal pointer to the given index. Logically, this method
02bb8761fcce Initial load
duke
parents:
diff changeset
   716
     * sets a new offset for this pointer.
02bb8761fcce Initial load
duke
parents:
diff changeset
   717
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   718
     * @param index an {@code int} indicating the position to which
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   719
     *              the pointer should move.  The first position is 0.
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   720
     * @return {@code true} if the pointer points to a component;
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   721
     * {@code false} if there is no component at the designated
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   722
     * index.  If this {@code DynAny} object is associated with a
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 31188
diff changeset
   723
     * basic type, this method returns {@code false} for any index
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   724
     * other than 0.
02bb8761fcce Initial load
duke
parents:
diff changeset
   725
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   726
    public boolean seek(int index) ;
02bb8761fcce Initial load
duke
parents:
diff changeset
   727
02bb8761fcce Initial load
duke
parents:
diff changeset
   728
    /**
02bb8761fcce Initial load
duke
parents:
diff changeset
   729
     * Moves the internal pointer to the first component.
02bb8761fcce Initial load
duke
parents:
diff changeset
   730
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   731
    public void rewind() ;
02bb8761fcce Initial load
duke
parents:
diff changeset
   732
}