806807808809810811812813814815
throws InvalidValue { checkDestroyed (); if( has_no_active_member() ) { throw new InvalidValue(); } return member; }
823824825826827828829830831832
throws InvalidValue { checkDestroyed (); if( has_no_active_member() ) { throw new InvalidValue(); } return member.type().kind(); }
840841842843844845846847848
throws InvalidValue { checkDestroyed (); if( has_no_active_member() ) { throw new InvalidValue(); } return memberName; }
181182183184185186187188
{ set_as_ulong(i); } else { throw new InvalidValue(); } }
197198199200201202203204205206
throws InvalidValue { checkDestroyed (); if( arg < 0 || arg > max ) { throw new InvalidValue(); } enumValue = arg; }
193194195196197198199200201202203
throws TypeMismatch, InvalidValue { checkDestroyed (); if( value.length != limit ) { throw new InvalidValue(); } for( int i = value.length; i-- > 0 ;) { org.omg.CORBA.TypeCode tc =
127128129130131132133134
anyRepresentation = (org.jacorb.orb.Any)orb.create_any(); anyRepresentation.read_value( value.create_input_stream(), type()); } catch( Exception e) { throw new InvalidValue(e.toString()); } }
231232233234235236237238239
{ throw new TypeMismatch (); } if (pos == -1) { throw new InvalidValue (); } return members[pos].id; }
248249250251252253254255256
{ throw new TypeMismatch (); } if (pos == -1) { throw new InvalidValue (); } return members[pos].value.type().kind(); }
106107108109110111112113114115116
pos = 0; } if( limit != 0 && length > limit ) { throw new InvalidValue(); } members.clear(); elementType = TypeCode.originalType( type().content_type() );