Methods Summary |
---|
public org.omg.DynamicAny.NameValuePair[] | get_members()
if (status == STATUS_DESTROYED) {
throw wrapper.dynAnyDestroyed() ;
}
if (isNull) {
throw new InvalidValue();
}
checkInitComponents();
return nameValuePairs;
|
public org.omg.DynamicAny.NameDynAnyPair[] | get_members_as_dyn_any()
if (status == STATUS_DESTROYED) {
throw wrapper.dynAnyDestroyed() ;
}
if (isNull) {
throw new InvalidValue();
}
checkInitComponents();
return nameDynAnyPairs;
|
public boolean | is_null()
return isNull;
|
public void | set_members(org.omg.DynamicAny.NameValuePair[] value)
super.set_members(value);
// If we didn't get an exception then this must be a valid non-null value
isNull = false;
|
public void | set_members_as_dyn_any(org.omg.DynamicAny.NameDynAnyPair[] value)
super.set_members_as_dyn_any(value);
// If we didn't get an exception then this must be a valid non-null value
isNull = false;
|
public void | set_to_null()
isNull = true;
clearData();
|
public void | set_to_value()
if (isNull) {
isNull = false;
// the rest is done lazily
}
// else: there is nothing to do
|