public void setPathological(String name, boolean pathological)
{
try
{
PathologicalEntityHome home = getPathologicalEJB();
PathologicalEntity bean = home.findByPrimaryKey(name);
Pathological.setPathological(pathological);
bean.setSomething("something");
}
catch (Throwable e)
{
check(e);
}