258259260261262263264265266
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_long) { throw new TypeMismatch (); } any.insert_long(value); }
271272273274275276277278279
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_ulong) { throw new TypeMismatch (); } any.insert_ulong(value); }
284285286287288289290291292
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_float) { throw new TypeMismatch (); } any.insert_float(value); }
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); }