Browse Source

github-44: reference BuiltinFormats in javadocs for CellStyle.getDataFormat and setDataFormat

This closes #44 github pull request from sixinli

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1777260 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_16_BETA2
Javen O'Neal 7 years ago
parent
commit
753ad37e13
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/java/org/apache/poi/ss/usermodel/CellStyle.java

+ 2
- 2
src/java/org/apache/poi/ss/usermodel/CellStyle.java View File

@@ -338,14 +338,14 @@ public interface CellStyle {
short getIndex();

/**
* set the data format (must be a valid format)
* set the data format (must be a valid format). Built in formats are defined at {@link BuiltinFormats}.
* @see DataFormat
*/

void setDataFormat(short fmt);

/**
* get the index of the format
* get the index of the data format. Built in formats are defined at {@link BuiltinFormats}.
* @see DataFormat
*/
short getDataFormat();

Loading…
Cancel
Save