Пример #1
0
        /**
         * Increments the row of this cell by one.  Invoked by the sheet when
         * inserting rows
         */
        public void incrementRow()
        {
            row++;

            if (features != null)
            {
                Comment c = features.getCommentDrawing();
                if (c != null)
                {
                    c.setX(column);
                    c.setY(row);
                }
            }
        }