/**
* Adds the component to the profile with the given tag.
*/
public void add_ior_component_to_profile(TaggedComponent component, int id)
{
TaggedComponentList list =
(TaggedComponentList)components.get (new Integer (id));
if (list == null)
{
throw new org.omg.CORBA.BAD_PARAM
(
"unknown profile tag: " + id,
MinorCodes.NO_SUCH_PROFILE,
CompletionStatus.COMPLETED_MAYBE
);
}
list.addComponent (component);
}