org.omg.DynamicAny

Interface DynArrayOperations

public interface DynArrayOperations extends DynAnyOperations

Defines operations, applicable for {@link DynArray}.
Method Summary
Any[]get_elements()
Returns the array.
DynAny[]get_elements_as_dyn_any()
Returns the array.
voidset_elements(Any[] value)
Sets the array.
voidset_elements_as_dyn_any(DynAny[] value)
Sets the array.

Method Detail

get_elements

public Any[] get_elements()
Returns the array.

Returns: the array of elements as an array of Any's.

get_elements_as_dyn_any

public DynAny[] get_elements_as_dyn_any()
Returns the array.

Returns: the array of elements as an array of DynAny's.

set_elements

public void set_elements(Any[] value)
Sets the array.

Parameters: value the array of elements as Any's.

Throws: TypeMismatch if the members of the passed array does not match array component type. InvalidValue if the number of elements in the passed array is not the same as the size of this DynArray.

set_elements_as_dyn_any

public void set_elements_as_dyn_any(DynAny[] value)
Sets the array.

Parameters: value the array of elements an DynAny's.

Throws: TypeMismatch if the members of the passed array does not match array component type. InvalidValue if the number of elements in the passed array is not the same as the size of this DynArray.