org.omg.CORBA.TypeCode type = orb.create_fixed_tc
((short) fixed_value.precision(), (short)fixed_value.scale());
if ( type.fixed_digits() > type().fixed_digits() )
{
throw new InvalidValue();
}
anyRepresentation.insert_fixed( fixed_value, type );
}
catch ( org.omg.CORBA.TypeCodePackage.BadKind e )
{