public void deleteImpeachInfos(String[] impeacheIds) throws DocCommentManagerException {
   try {
     for (int i = 0; i < impeacheIds.length; i++) deleteImpeachInfo(impeacheIds[i]);
   } catch (DocCommentManagerException e) {
     e.printStackTrace();
     throw e;
   }
 }
 public void delCommentsByComId(String[] docCommentIds) throws DocCommentManagerException {
   // TODO Auto-generated method stub
   try {
     for (int i = 0; i < docCommentIds.length; i++) {
       this.delOneCommentByComId(Integer.parseInt(docCommentIds[i]));
     }
   } catch (DocCommentManagerException de) {
     de.printStackTrace();
     throw de;
   }
 }
 public void updateCommentStatus(String[] docCommentIds, int newStatus)
     throws DocCommentManagerException {
   // TODO Auto-generated method stub
   try {
     for (int i = 0; i < docCommentIds.length; i++) {
       this.updateCommentStatus(docCommentIds[i], newStatus);
     }
   } catch (DocCommentManagerException de) {
     de.printStackTrace();
     throw de;
   }
 }