/**
 * comment.js
 * Records defines what a comment is for a case study.
 * @author: Cory Simpson (csimpson@fulcrm.com)
 */

CommentSection.prototype.header = null;
CommentSection.prototype.comments1 = null;
CommentSection.prototype.comments2 = null;

/**
 * Adds a comment to this comment section.
 */
CommentSection.prototype.addCommentCol1 = function(comment) {
  this.comments1[this.comments1.length] = comment;
}

/**
 * Adds a comment to this comment section.
 */
CommentSection.prototype.addCommentCol2 = function(comment) {
  this.comments2[this.comments2.length] = comment;
}

/**
 * Constructor
 */
function CommentSection(header) {
  this.header = header;
  this.comments1 = new Array();
  this.comments2 = new Array();
}
