/**
  *
  * <!-- begin-user-doc -->
  * <!-- end-user-doc -->
  *
  * @generated NOT
  */
 public IComment createComment(ILocation initalLocation, String commentText) {
   IComment comment = ReviewsFactory.eINSTANCE.createComment();
   comment.setDescription(commentText);
   comment.setDraft(true);
   Date created = new Date();
   comment.setCreationDate(created);
   if (initalLocation != null) {
     comment.getLocations().add(initalLocation);
   }
   getComments().add(comment);
   return comment;
 }