297298299300301302303304305
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_double) { throw new TypeMismatch (); } any.insert_double(value); }
310311312313314315316317318
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_string) { throw new TypeMismatch (); } any.insert_string(value); }
323324325326327328329330331
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_objref) { throw new TypeMismatch (); } any.insert_Object(value); }
336337338339340341342343344
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_TypeCode) { throw new TypeMismatch (); } any.insert_TypeCode(value); }
348349350351352353354355356
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_longlong) { throw new TypeMismatch (); } any.insert_longlong(value); }
360361362363364365366367368
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_ulonglong) { throw new TypeMismatch (); } any.insert_ulonglong(value); }
372373374375376377378379380
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_wchar) { throw new TypeMismatch (); } any.insert_wchar(value); }
384385386387388389390391392
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_wstring) { throw new TypeMismatch (); } any.insert_wstring(value); }
396397398399400401402403404
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_any) { throw new TypeMismatch (); } any.insert_any(value); }
418419420421422423424425
{ return any.extract_boolean(); } catch( org.omg.CORBA.BAD_OPERATION b ) { throw new TypeMismatch(); } }