From 7072a43a8ff1d6b47af6a48b8785e340f98fe16c Mon Sep 17 00:00:00 2001 From: Javen O'Neal Date: Mon, 9 May 2016 03:53:55 +0000 Subject: [PATCH] whitespace git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1742869 13f79535-47bb-0310-9956-ffa450edef68 --- .../poi/hssf/usermodel/HSSFComment.java | 6 +- .../poi/xssf/usermodel/XSSFComment.java | 78 +++++++++---------- 2 files changed, 42 insertions(+), 42 deletions(-) diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFComment.java b/src/java/org/apache/poi/hssf/usermodel/HSSFComment.java index 0e5b3f0e01..928f1c9b20 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFComment.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFComment.java @@ -132,9 +132,9 @@ public class HSSFComment extends HSSFTextbox implements Comment { @Override void setShapeId(int shapeId) { - if(shapeId > 65535) { - throw new IllegalArgumentException("Cannot add more than " + 65535 + " shapes"); - } + if(shapeId > 65535) { + throw new IllegalArgumentException("Cannot add more than " + 65535 + " shapes"); + } super.setShapeId(shapeId); CommonObjectDataSubRecord cod = (CommonObjectDataSubRecord) getObjRecord().getSubRecords().get(0); cod.setObjectId(shapeId); diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFComment.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFComment.java index 1876fa072b..367c2f24bc 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFComment.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFComment.java @@ -32,9 +32,9 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTRst; import com.microsoft.schemas.vml.CTShape; public class XSSFComment implements Comment { - - private final CTComment _comment; - private final CommentsTable _comments; + + private final CTComment _comment; + private final CommentsTable _comments; private final CTShape _vmlShape; /** @@ -43,12 +43,12 @@ public class XSSFComment implements Comment { private XSSFRichTextString _str; /** - * Creates a new XSSFComment, associated with a given - * low level comment object. - */ - public XSSFComment(CommentsTable comments, CTComment comment, CTShape vmlShape) { - _comment = comment; - _comments = comments; + * Creates a new XSSFComment, associated with a given + * low level comment object. + */ + public XSSFComment(CommentsTable comments, CTComment comment, CTShape vmlShape) { + _comment = comment; + _comments = comments; _vmlShape = vmlShape; // we potentially need to adjust the column/row information in the shape @@ -66,15 +66,15 @@ public class XSSFComment implements Comment { // This call seems to fix them again... See bug #50795 vmlShape.getClientDataList().toString(); } - } + } /** * * @return Name of the original comment author. Default value is blank. */ public String getAuthor() { - return _comments.getAuthor((int) _comment.getAuthorId()); - } + return _comments.getAuthor((int) _comment.getAuthorId()); + } /** * Name of the original comment author. Default value is blank. @@ -90,16 +90,16 @@ public class XSSFComment implements Comment { /** * @return the 0-based column of the cell that the comment is associated with. */ - public int getColumn() { - return new CellReference(_comment.getRef()).getCol(); - } + public int getColumn() { + return new CellReference(_comment.getRef()).getCol(); + } /** * @return the 0-based row index of the cell that the comment is associated with. */ - public int getRow() { - return new CellReference(_comment.getRef()).getRow(); - } + public int getRow() { + return new CellReference(_comment.getRef()).getRow(); + } /** * @return whether the comment is visible @@ -110,8 +110,8 @@ public class XSSFComment implements Comment { String style = _vmlShape.getStyle(); visible = style != null && style.indexOf("visibility:visible") != -1; } - return visible; - } + return visible; + } /** * @param visible whether the comment is visible @@ -147,24 +147,24 @@ public class XSSFComment implements Comment { // This call seems to fix them again... See bug #50795 _vmlShape.getClientDataList().toString(); } - } + } /** * Set the row of the cell that contains the comment * * @param row the 0-based row of the cell that contains the comment */ - public void setRow(int row) { - CellAddress oldRef = new CellAddress(_comment.getRef()); - - CellAddress ref = new CellAddress(row, getColumn()); - _comment.setRef(ref.formatAsString()); - _comments.referenceUpdated(oldRef, _comment); + public void setRow(int row) { + CellAddress oldRef = new CellAddress(_comment.getRef()); + + CellAddress ref = new CellAddress(row, getColumn()); + _comment.setRef(ref.formatAsString()); + _comments.referenceUpdated(oldRef, _comment); if(_vmlShape != null) { - _vmlShape.getClientDataArray(0).setRowArray(0, - new BigInteger(String.valueOf(row))); - + _vmlShape.getClientDataArray(0).setRowArray(0, + new BigInteger(String.valueOf(row))); + // There is a very odd xmlbeans bug when changing the row // arrays which can lead to corrupt pointer // This call seems to fix them again... See bug #50795 @@ -175,30 +175,30 @@ public class XSSFComment implements Comment { /** * @return the rich text string of the comment */ - public XSSFRichTextString getString() { - if(_str == null) { + public XSSFRichTextString getString() { + if(_str == null) { CTRst rst = _comment.getText(); if(rst != null) _str = new XSSFRichTextString(_comment.getText()); } return _str; - } + } /** * Sets the rich text string used by this comment. * * @param string the XSSFRichTextString used by this object. */ - public void setString(RichTextString string) { + public void setString(RichTextString string) { if(!(string instanceof XSSFRichTextString)){ throw new IllegalArgumentException("Only XSSFRichTextString argument is supported"); } _str = (XSSFRichTextString)string; _comment.setText(_str.getCTRst()); - } - - public void setString(String string) { - setString(new XSSFRichTextString(string)); - } + } + + public void setString(String string) { + setString(new XSSFRichTextString(string)); + } @Override public ClientAnchor getClientAnchor() { -- 2.39.5