/* * 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 DynAny object associated * with an array. * @deprecated Use the new DynArray instead */ @Deprecated public interface DynArray extends org.omg.CORBA.Object, org.omg.CORBA.DynAny { /** * Returns the value of all the elements of this array. * * @return the array of Any objects that is the value * for this DynArray object * @see #set_elements */ public org.omg.CORBA.Any[] get_elements(); /** * Sets the value of this * DynArray object to the given array. * * @param value the array of Any objects * @exception InvalidSeq if the sequence is bad * @see #get_elements */ public void set_elements(org.omg.CORBA.Any[] value) throws org.omg.CORBA.DynAnyPackage.InvalidSeq; }