/* * @(#)DynArray.java 1.15 04/05/18 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN 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; }