001package csheets.ext.comments;
002
003import java.util.EventListener;
004
005
006/**
007 * A listener interface for receiving notification on events occurring in an
008 * commentable cell.
009 * @author Alexandre Braganca
010 * @author Einar Pehrson
011 */
012public interface CommentableCellListener extends EventListener {
013
014        /**
015         * Invoked when a comment is added to or removed from a cell.
016         * @param cell the cell that was modified
017         */
018        public void commentChanged(CommentableCell cell);
019}