You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.1 KiB
65 lines
1.1 KiB
/*
|
|
* Copyright (c) 1998, 2004, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
|
|
package org.omg.CORBA;
|
|
|
|
/** Represents a <tt>DynAny</tt> object associated
|
|
* with an IDL enum.
|
|
* @deprecated Use the new <a href="../DynamicAny/DynEnum.html">DynEnum</a> instead
|
|
*/
|
|
@Deprecated
|
|
public interface DynEnum extends org.omg.CORBA.Object, org.omg.CORBA.DynAny
|
|
{
|
|
/**
|
|
* Return the value of the IDL enum stored in this
|
|
* <code>DynEnum</code> as a string.
|
|
*
|
|
* @return the stringified value.
|
|
*/
|
|
public String value_as_string();
|
|
|
|
/**
|
|
* Set a particular enum in this <code>DynEnum</code>.
|
|
*
|
|
* @param arg the string corresponding to the value.
|
|
*/
|
|
public void value_as_string(String arg);
|
|
|
|
/**
|
|
* Return the value of the IDL enum as a Java int.
|
|
*
|
|
* @return the integer value.
|
|
*/
|
|
public int value_as_ulong();
|
|
|
|
/**
|
|
* Set the value of the IDL enum.
|
|
*
|
|
* @param arg the int value of the enum.
|
|
*/
|
|
public void value_as_ulong(int arg);
|
|
}
|