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(); } }
432433434435436437438439
{ return any.extract_octet(); } catch( org.omg.CORBA.BAD_OPERATION b ) { throw new TypeMismatch(); } }
446447448449450451452453
{ return any.extract_char(); } catch( org.omg.CORBA.BAD_OPERATION b ) { throw new TypeMismatch(); } }
460461462463464465466467
{ return any.extract_short(); } catch( org.omg.CORBA.BAD_OPERATION b ) { throw new TypeMismatch(); } }
474475476477478479480481
{ return any.extract_ushort(); } catch( org.omg.CORBA.BAD_OPERATION b ) { throw new TypeMismatch(); } }
488489490491492493494495
{ return any.extract_long(); } catch( org.omg.CORBA.BAD_OPERATION b ) { throw new TypeMismatch(); } }
502503504505506507508509
{ return any.extract_ulong(); } catch( org.omg.CORBA.BAD_OPERATION b ) { throw new TypeMismatch(); } }
515516517518519520521522
{ return any.extract_float(); } catch( org.omg.CORBA.BAD_OPERATION b ) { throw new TypeMismatch(); } }