Module java.corba
Package org.omg.CORBA

Interface DynSequence

    • Method Detail

      • length

        int length()
        Deprecated.
        Returns the length of the sequence represented by this DynFixed object.
        Returns:
        the length of the sequence
      • length

        void length​(int arg)
        Deprecated.
        Sets the length of the sequence represented by this DynFixed object to the given argument.
        Parameters:
        arg - the length of the sequence
      • get_elements

        Any[] get_elements()
        Deprecated.
        Returns the value of every element in this sequence.
        Returns:
        an array of Any objects containing the values in the sequence
        See Also:
        set_elements(org.omg.CORBA.Any[])
      • set_elements

        void set_elements​(Any[] value)
                   throws InvalidSeq
        Deprecated.
        Sets the values of all elements in this sequence with the given array.
        Parameters:
        value - the array of Any objects to be set
        Throws:
        InvalidSeq - if the array of values is bad
        See Also:
        get_elements()