public class CommonDAOImpl<T> extends HibernateDaoSupport implements CommonDAO<T> 
   public void deleteObject(Class<T> c, Serializable id) { {//这是带泛型参数的方法
        Object obj=this.getHibernateTemplate().load(c, id);
        this.getHibernateTemplate().delete(obj);
   }
}   function findprod(){   
      var id=dwr.util.getValues("findFrm");
      var c = "<%=Productioninfo.class%>";
      commonDAO.deleteObject(c, Serializable id);
   }为什么这我这样调用总是弹出对话框“Error”?????