< prev index next >

src/java.corba/share/classes/org/omg/CORBA/DynSequence.java

Print this page




  48      * <code>DynFixed</code> object to the given argument.
  49      *
  50      * @param arg the length of the sequence
  51      */
  52     public void length(int arg);
  53 
  54     /**
  55      * Returns the value of every element in this sequence.
  56      *
  57      * @return an array of <code>Any</code> objects containing the values in
  58          *         the sequence
  59          * @see #set_elements
  60      */
  61     public org.omg.CORBA.Any[] get_elements();
  62 
  63     /**
  64      * Sets the values of all elements in this sequence with the given
  65          * array.
  66      *
  67      * @param value the array of <code>Any</code> objects to be set
  68      * @exception InvalidSeq if the array of values is bad

  69          * @see #get_elements
  70      */
  71     public void set_elements(org.omg.CORBA.Any[] value)
  72         throws org.omg.CORBA.DynAnyPackage.InvalidSeq;
  73 }


  48      * <code>DynFixed</code> object to the given argument.
  49      *
  50      * @param arg the length of the sequence
  51      */
  52     public void length(int arg);
  53 
  54     /**
  55      * Returns the value of every element in this sequence.
  56      *
  57      * @return an array of <code>Any</code> objects containing the values in
  58          *         the sequence
  59          * @see #set_elements
  60      */
  61     public org.omg.CORBA.Any[] get_elements();
  62 
  63     /**
  64      * Sets the values of all elements in this sequence with the given
  65          * array.
  66      *
  67      * @param value the array of <code>Any</code> objects to be set
  68      * @exception org.omg.CORBA.DynAnyPackage.InvalidSeq if the array
  69      * of values is bad
  70      * @see #get_elements
  71      */
  72     public void set_elements(org.omg.CORBA.Any[] value)
  73         throws org.omg.CORBA.DynAnyPackage.InvalidSeq;
  74 }
< prev index next >