
// Provide a default path to dwr.engine
if (typeof this['dwr'] == 'undefined') this.dwr = {};
if (typeof dwr['engine'] == 'undefined') dwr.engine = {};

if (typeof this['CommentManager'] == 'undefined') this.CommentManager = {};

CommentManager._path = '/dwr';

CommentManager.getComments = function(p0, p1, p2, callback) {
  dwr.engine._execute(CommentManager._path, 'CommentManager', 'getComments', p0, p1, p2, callback);
};

CommentManager.addComment = function(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, callback) {
  dwr.engine._execute(CommentManager._path, 'CommentManager', 'addComment', p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, callback);
};


