Skip to content

Commit

Permalink
javadoc issues
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1917586 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
pjfanning committed May 8, 2024
1 parent efce9ba commit c0c70ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ protected void applyDefaultCellStyleIfNecessary() {
* use {@link org.apache.poi.ss.util.CellUtil#setCellStyleProperties(Cell, java.util.Map)}</p>
*
* @param style reference contained in the workbook.
* If the value is null then the style information is removed causing the cell to used the default workbook style.
* If the value is null then the style information is removed causing the cell to use the default workbook style.
* @throws IllegalArgumentException if style belongs to a different styles source (most likely because style is from a different Workbook)
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public XSSFCellStyle(StylesTable stylesSource) {
* This is normally called when trying to assign a style to a
* cell, to ensure the cell and the style are from the same
* workbook (if they're not, it won't work)
* @throws IllegalArgumentException if there's a workbook mis-match
* @throws IllegalArgumentException if there's a workbook mismatch
*/
public void verifyBelongsToStylesSource(StylesTable src) {
if(this._stylesSource != src) {
Expand Down Expand Up @@ -883,7 +883,7 @@ public void setFillBackgroundColor(short bg) {
* <br>
* <i>Note: Ensure Foreground color is set prior to background color.</i>
* @param color the color to use
* @see #setFillBackgroundColor(org.apache.poi.xssf.usermodel.XSSFColor) )
* @see #setFillBackgroundColor(org.apache.poi.xssf.usermodel.XSSFColor)
*/
public void setFillForegroundColor(XSSFColor color) {
CTFill ct = getCTFill();
Expand Down Expand Up @@ -982,7 +982,7 @@ private CTBorder getCTBorder(){

/**
* This element is used to specify cell fill information for pattern and solid color cell fills. For solid cell fills (no pattern),
* foreground color is used is used. For cell fills with patterns specified, then the cell fill color is specified by the background color element.
* foreground color is used. For cell fills with patterns specified, then the cell fill color is specified by the background color element.
*
* @param pattern the fill pattern to use
* @see #setFillBackgroundColor(XSSFColor)
Expand Down

0 comments on commit c0c70ca

Please sign in to comment.