示例#1
0
  public void add(Comment comment) {
    CommentImpl commentImpl = (CommentImpl) comment;

    _branch.add(commentImpl.getWrappedComment());
  }
示例#2
0
  public boolean remove(Comment comment) {
    CommentImpl commentImpl = (CommentImpl) comment;

    return _branch.remove(commentImpl.getWrappedComment());
  }