Example usage for org.apache.poi.ss.usermodel Comment getRow

List of usage examples for org.apache.poi.ss.usermodel Comment getRow

Introduction

In this page you can find the example usage for org.apache.poi.ss.usermodel Comment getRow.

Prototype

int getRow();

Source Link

Document

Return the row of the cell that contains the comment

Usage

From source file:de.enerko.reports2.engine.CommentDefinition.java

License:Apache License

public CommentDefinition(final Comment comment) {
    this(comment.getString().getString(), comment.getAuthor(), comment.getColumn(), comment.getRow(), -1, -1,
            comment.isVisible());//from  www.j  a v  a2 s .c  o  m
}