90919293949596979899100
throws InvalidValue, TypeMismatch { checkDestroyed (); if( ! value.type().equivalent( type()) ) { throw new TypeMismatch(); } typeCode = TypeCode.originalType( value.type() ); try
5455565758596061626364
org.omg.CORBA.TypeCode _type = TypeCode.originalType( type ); if( _type.kind() != org.omg.CORBA.TCKind.tk_array ) { throw new TypeMismatch(); } try { typeCode = _type;
203204205206207208209210211212213
org.omg.CORBA.TypeCode tc = TypeCode.originalType( value[i].type() ); if( tc.kind() != elementType.kind() ) { throw new TypeMismatch(); } } /** ok now */ members = value;
93949596979899100
throw unexpectedException(iv); } } else { throw new TypeMismatch(); } }
115116117118119120121122123124125
193194195196197198199200201
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_boolean) { throw new TypeMismatch (); } any.insert_boolean(value); }
206207208209210211212213214
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_octet) { throw new TypeMismatch (); } any.insert_octet(value); }
219220221222223224225226227
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_char) { throw new TypeMismatch (); } any.insert_char(value); }
232233234235236237238239240
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_short) { throw new TypeMismatch (); } any.insert_short(value); }
245246247248249250251252253
{ checkDestroyed (); org.omg.CORBA.Any any = getRepresentation(); if( any.type().kind() != org.omg.CORBA.TCKind.tk_ushort) { throw new TypeMismatch (); } any.insert_ushort(value); }