corba/src/java.corba/share/classes/org/omg/CORBA/DynEnum.java
changeset 32688 936c391804a5
parent 25862 a5e25d68f971
equal deleted inserted replaced
32550:6521875cb63e 32688:936c391804a5
    24  */
    24  */
    25 
    25 
    26 
    26 
    27 package org.omg.CORBA;
    27 package org.omg.CORBA;
    28 
    28 
    29 /** Represents a <tt>DynAny</tt> object  associated
    29 /**
    30  *  with an IDL enum.
    30  * Represents a {@code DynAny} object associated with an IDL enum.
       
    31  *
    31  * @deprecated Use the new <a href="../DynamicAny/DynEnum.html">DynEnum</a> instead
    32  * @deprecated Use the new <a href="../DynamicAny/DynEnum.html">DynEnum</a> instead
    32  */
    33  */
    33 @Deprecated
    34 @Deprecated
    34 public interface DynEnum extends org.omg.CORBA.Object, org.omg.CORBA.DynAny
    35 public interface DynEnum extends org.omg.CORBA.Object, org.omg.CORBA.DynAny
    35 {
    36 {
    36     /**
    37     /**
    37      * Return the value of the IDL enum stored in this
    38      * Return the value of the IDL enum stored in this
    38      * <code>DynEnum</code> as a string.
    39      * {@code DynEnum} as a string.
    39      *
    40      *
    40      * @return the stringified value.
    41      * @return the stringified value.
    41      */
    42      */
    42     public String value_as_string();
    43     public String value_as_string();
    43 
    44 
    44     /**
    45     /**
    45      * Set a particular enum in this <code>DynEnum</code>.
    46      * Set a particular enum in this {@code DynEnum}.
    46      *
    47      *
    47      * @param arg the string corresponding to the value.
    48      * @param arg the string corresponding to the value.
    48      */
    49      */
    49     public void value_as_string(String arg);
    50     public void value_as_string(String arg);
    50 
    51