]> source.dussan.org Git - poi.git/commitdiff
cleaned javadoc warnings
authorYegor Kozlov <yegor@apache.org>
Wed, 6 Oct 2010 08:55:30 +0000 (08:55 +0000)
committerYegor Kozlov <yegor@apache.org>
Wed, 6 Oct 2010 08:55:30 +0000 (08:55 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1004934 13f79535-47bb-0310-9956-ffa450edef68

16 files changed:
src/java/org/apache/poi/hssf/record/BoundSheetRecord.java
src/java/org/apache/poi/hssf/record/DVRecord.java
src/java/org/apache/poi/hssf/usermodel/DVConstraint.java
src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/IBody.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFHeader.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFHeaderFooter.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFNumbering.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFStyle.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFStyles.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTable.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTableCell.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTableRow.java
src/scratchpad/src/org/apache/poi/hwpf/model/CharIndexTranslator.java

index 073a0c3bd07c186d4c47b5cdb8e9a6090fac5928..5b3f481d4d9e4711507f3048619d113ea5a2347c 100644 (file)
@@ -85,7 +85,7 @@ public final class BoundSheetRecord extends StandardRecord {
        /**
         * Set the sheetname for this sheet.  (this appears in the tabs at the bottom)
         * @param sheetName the name of the sheet
-        * @see {@link org.apache.poi.ss.util.WorkbookUtil#createSafeSheetName(String nameProposal)}
+        * @see org.apache.poi.ss.util.WorkbookUtil#createSafeSheetName(String nameProposal)
         *      for a safe way to create valid names
         * @throws IllegalArgumentException if sheet name will cause excel to crash.
         */
index 67e873691f952211b4498228de3dae17344ca172..d3e8ac8ab56801922a45379395327045214c3cc7 100644 (file)
@@ -133,7 +133,7 @@ public final class DVRecord extends StandardRecord {
        // --> start option flags
        /**
         * @return the condition data type
-        * @see org.apache.poi.hssf.usermodel.DVConstraint.ValidationType
+        * @see org.apache.poi.ss.usermodel.DataValidationConstraint.ValidationType
         */
        public int getDataType() {
           return opt_data_type.getValue(_option_flags);
@@ -141,7 +141,7 @@ public final class DVRecord extends StandardRecord {
 
        /**
         * @return the condition error style
-        * @see org.apache.poi.hssf.usermodel.HSSFDataValidation.ErrorStyle
+        * @see org.apache.poi.ss.usermodel.DataValidation.ErrorStyle
         */
        public int getErrorStyle() {
           return opt_error_style.getValue(_option_flags);
index 5e56acffa9cb1a931e67a18b1ebcbd8f7807185d..7cc45fedc83d626cd45a66b6b099e665cae053ad 100644 (file)
@@ -90,9 +90,11 @@ public class DVConstraint implements DataValidationConstraint {
         * can be either standard Excel formulas or formatted number values. If the expression starts 
         * with '=' it is parsed as a formula, otherwise it is parsed as a formatted number. 
         * 
-        * @param validationType one of {@link ValidationType#ANY}, {@link ValidationType#DECIMAL},
-        * {@link ValidationType#INTEGER}, {@link ValidationType#TEXT_LENGTH}
-        * @param comparisonOperator any constant from {@link OperatorType} enum
+        * @param validationType one of {@link org.apache.poi.ss.usermodel.DataValidationConstraint.ValidationType#ANY},
+     * {@link org.apache.poi.ss.usermodel.DataValidationConstraint.ValidationType#DECIMAL},
+     * {@link org.apache.poi.ss.usermodel.DataValidationConstraint.ValidationType#INTEGER},
+     * {@link org.apache.poi.ss.usermodel.DataValidationConstraint.ValidationType#TEXT_LENGTH}
+        * @param comparisonOperator any constant from {@link org.apache.poi.ss.usermodel.DataValidationConstraint.OperatorType} enum
         * @param expr1 date formula (when first char is '=') or formatted number value
         * @param expr2 date formula (when first char is '=') or formatted number value
         */
@@ -140,7 +142,7 @@ public class DVConstraint implements DataValidationConstraint {
         * formatted times, two formats are supported:  "HH:MM" or "HH:MM:SS".  This is contrary to 
         * Excel which uses the default time format from the OS.
         * 
-        * @param comparisonOperator constant from {@link OperatorType} enum
+        * @param comparisonOperator constant from {@link org.apache.poi.ss.usermodel.DataValidationConstraint.OperatorType} enum
         * @param expr1 date formula (when first char is '=') or formatted time value
         * @param expr2 date formula (when first char is '=') or formatted time value
         */
@@ -166,7 +168,7 @@ public class DVConstraint implements DataValidationConstraint {
         * the same convention).  To parse formatted dates, a date format needs to be specified.  This
         * is contrary to Excel which uses the default short date format from the OS.
         * 
-        * @param comparisonOperator constant from {@link OperatorType} enum
+        * @param comparisonOperator constant from {@link org.apache.poi.ss.usermodel.DataValidationConstraint.OperatorType} enum
         * @param expr1 date formula (when first char is '=') or formatted date value
         * @param expr2 date formula (when first char is '=') or formatted date value
         * @param dateFormat ignored if both expr1 and expr2 are formulas.  Default value is "YYYY/MM/DD"
index 42a9d139c0e316e842973aab459c6f53c6f34684..24999fe2033e09f19cebae68591b8ad0579bddbc 100644 (file)
@@ -326,7 +326,8 @@ public final class HSSFWorkbook extends POIDocument implements org.apache.poi.ss
       * contained strings will be written to the Shared String tabel (SSTRecord) within
       * the Workbook.
       *
-      * @param wb sheet's matching low level Workbook structure containing the SSTRecord.
+      * @param records a collection of sheet's records.
+      * @param offset the offset to search at 
       * @see org.apache.poi.hssf.record.LabelRecord
       * @see org.apache.poi.hssf.record.LabelSSTRecord
       * @see org.apache.poi.hssf.record.SSTRecord
@@ -727,8 +728,8 @@ public final class HSSFWorkbook extends POIDocument implements org.apache.poi.ss
      *
      * @param sheetname the name for the new sheet. Note - certain length limits
      * apply. See {@link #setSheetName(int, String)}.
-     * @see {@link org.apache.poi.ss.util.WorkbookUtil#createSafeSheetName(String nameProposal)}
-        *      for a safe way to create valid names
+     * @see org.apache.poi.ss.util.WorkbookUtil#createSafeSheetName(String nameProposal)
+     *  for a safe way to create valid names
      * @return HSSFSheet representing the new sheet.
      * @throws IllegalArgumentException
      *             if there is already a sheet present with a case-insensitive
index 8f3aa9f7d0c90ebf3949a5c6cbf2752ba878d365..6525bfd0ccdffe0396a20ef984f33344178feda5 100644 (file)
@@ -40,14 +40,14 @@ public interface IBody {
         * returns the Part, to which the body belongs, which you need for adding relationship to other parts
         * Actually it is needed of the class XWPFTableCell. Because you have to know to which part the tableCell
         * belongs.
-        * @return
+        * @return the Part, to which the body belongs
         */
        IBody getPart();
        
        /**
         * get the PartType of the body, for example
         * DOCUMENT, HEADER, FOOTER,    FOOTNOTE, 
-        * @return
+        * @return the PartType of the body
         */
        BodyType getPartType();
        
@@ -86,7 +86,6 @@ public interface IBody {
         * the method will return this table
         * if there is no corresponding {@link XWPFTable} the method will return null 
         * @param ctTable
-        * @return
         */
        public XWPFTable getTable(CTTbl ctTable);
        
@@ -103,14 +102,12 @@ public interface IBody {
       /**
        *inserts a new paragraph at position of the cursor
        * @param cursor
-       * @return
        */
       public XWPFParagraph insertNewParagraph(XmlCursor cursor);
       
       /**
        * inserts a new Table at the cursor position.
        * @param cursor
-       * @return
        */
        public XWPFTable insertNewTbl(XmlCursor cursor);
 
@@ -124,7 +121,6 @@ public interface IBody {
        /**
         * returns the TableCell to which the Table belongs
         * @param cell
-        * @return
         */
        XWPFTableCell getTableCell(CTTc cell);
        
index c0691245bc452af76841793ee515efe989e062e7..7335c89086450bf904eeca65ef3b57bf6e2c3801 100644 (file)
@@ -280,7 +280,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
     /**
      * returns an Iterator with paragraphs and tables
      * @see org.apache.poi.xwpf.usermodel.IBody#getBodyElements()
-     * @return
      */
     public List<IBodyElement> getBodyElements(){
        return Collections.unmodifiableList(bodyElements);
@@ -295,7 +294,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
     
        /**
         * @see org.apache.poi.xwpf.usermodel.IBody#getTables()
-        * @return
         */
        public List<XWPFTable> getTables(){
                return Collections.unmodifiableList(tables);
@@ -313,52 +311,32 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
        
        /**
         * 
-        * @return
+        * @return  the list of footers
         */
        public List<XWPFFooter> getFooterList(){
                return Collections.unmodifiableList(footers);
        }
        
-       /**
-        * 
-        * @param pos
-        * @return
-        */
        public XWPFFooter getFooterArray(int pos){
                return footers.get(pos);
        }
        
        /**
         * 
-        * @return
+        * @return  the list of headers
         */
        public List<XWPFHeader> getHeaderList(){
                return Collections.unmodifiableList(headers);
        }
        
-       /**
-        * 
-        * @param pos
-        * @return
-        */
        public XWPFHeader getHeaderArray(int pos){
                return headers.get(pos);
        }
        
-       /**
-        * 
-        * @param table
-        * @return
-        */
     public String getTblStyle(XWPFTable table){
        return table.getStyleID();
     }
 
-    /**
-     * 
-     * @param id
-     * @return
-     */
     public XWPFHyperlink getHyperlinkByID(String id) {
         Iterator<XWPFHyperlink> iter = hyperlinks.iterator();
         while(iter.hasNext())
@@ -371,36 +349,18 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
         return null;
     }
 
-    /**
-     * 
-     * @param id
-     * @return
-     */
     public XWPFFootnote getFootnoteByID(int id) {
         return footnotes.get(id);
     }
 
-    /**
-     * 
-     * @param id
-     * @return
-     */
     public XWPFFootnote getEndnoteByID(int id) {
         return endnotes.get(id);
     }
 
-    /**
-     * 
-     * @return
-     */
     public Collection<XWPFFootnote> getFootnotes() {
         return Collections.unmodifiableCollection(footnotes == null ? new ArrayList<XWPFFootnote>() : footnotes.values());
     }
 
-    /**
-     * 
-     * @return
-     */
     public XWPFHyperlink[] getHyperlinks() {
         return hyperlinks.toArray(
                 new XWPFHyperlink[hyperlinks.size()]
@@ -547,7 +507,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
     /**
      * add a new paragraph at position of the cursor
      * @param cursor
-     * @return
      */
     public XWPFParagraph insertNewParagraph(XmlCursor cursor){
        if(isCursorInBody(cursor)){
@@ -583,11 +542,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
        return null;
     }
 
-       /**
-     * 
-     * @param cursor
-     * @return
-     */
        public XWPFTable insertNewTbl(XmlCursor cursor) {
                if(isCursorInBody(cursor)){
                        String uri = CTTbl.type.getName().getNamespaceURI();
@@ -626,7 +580,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
        /**
         * verifies that cursor is on the right position
         * @param cursor
-        * @return
         */
        private boolean isCursorInBody(XmlCursor cursor) {
                XmlCursor verify = cursor.newCursor();
@@ -642,7 +595,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
        /**
         * get position of the paragraph
         * @param p
-        * @return
         */
        public Integer getPosOfParagraph(XWPFParagraph p){
        int i, pos = 0;
@@ -740,8 +692,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
     }
     
     /**
-     * get the LastParagraph of the document
-     * @return
+     * @return the LastParagraph of the document
      */
     public XWPFParagraph getLastParagraph(){
        int lastPos = paragraphs.toArray().length - 1;
@@ -787,8 +738,9 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
         }
     }
     
- /**Replace content of table in array tables at position pos with a 
-     * @param pos, table
+    /**Replace content of table in array tables at position pos with a
+     * @param pos
+     * @param table
      */
     public void setTable(int pos, XWPFTable table){
        tables.set(pos, table);
@@ -938,7 +890,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
 
        /**
         * inserts an existing XWPFTable to the arrays bodyElements and tables
-        * @param i
+        * @param pos
         * @param table
         */
        public void insertTable(int pos, XWPFTable table) {
@@ -953,10 +905,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
                tables.add(i, table);
        }
     
-       /**
-        * 
-        * @return
-        */
     public List<XWPFPictureData> getAllPictures() {
        if(pictures == null){
                pictures = new ArrayList<XWPFPictureData>();
@@ -970,8 +918,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
     }
     
     /**
-     * get all Pictures in this package
-     * @return
+     * @return  all Pictures in this package
      */
     public List<XWPFPictureData> getAllPackagePictures(){
        List<XWPFPictureData> pkgpictures = new ArrayList<XWPFPictureData>();
@@ -1006,7 +953,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
     /**
      * Adds a picture to the document.
      *
-     * @param is                The stream to read image from
+     * @param pictureData       The bytes to read image from
      * @param format            The format of the picture.
      *
      * @return the index to this picture (0 based), the added picture can be obtained from {@link #getAllPictures()} .
@@ -1023,7 +970,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
     /**
      * get the next free ImageNumber
      * @param format
-     * @return
+     * @return the next free ImageNumber
      * @throws InvalidFormatException 
      */
     public int getNextPicNameNumber(int format) throws InvalidFormatException{
@@ -1067,7 +1014,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
 
        /**
         * get Styles 
-        * @return
+        * @return  styles for this document
         */
        public XWPFStyles getStyles(){
                return styles;
@@ -1075,8 +1022,9 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
        
        /**
         *  get the paragraph with the CTP class p
+     *
         * @param p
-        * @return
+        * @return  the paragraph with the CTP class p
         */
        public XWPFParagraph getParagraph(CTP p){
                for(int i=0; i<getParagraphs().size(); i++){
@@ -1089,7 +1037,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
         * get a table by its CTTbl-Object
         * @param ctTbl
         * @see org.apache.poi.xwpf.usermodel.IBody#getTable(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTbl)
-        * @return
+        * @return a table by its CTTbl-Object or null
         */
     public XWPFTable getTable(CTTbl ctTbl) {
                for(int i=0; i<tables.size(); i++){
@@ -1132,8 +1080,8 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
 
        /**
         * get the PartType of the body, for example
-        * DOCUMENT, HEADER, FOOTER,    FOOTNOTE, 
-        * @return
+        * DOCUMENT, HEADER, FOOTER,    FOOTNOTE,
+     *
         * @see org.apache.poi.xwpf.usermodel.IBody#getPartType()
         */
        public BodyType getPartType() {
@@ -1142,8 +1090,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
 
        /**
         * get the TableCell which belongs to the TableCell
-        * @param o
-        * @return
+        * @param cell
         */
        public XWPFTableCell getTableCell(CTTc cell) {
                XmlCursor cursor = cell.newCursor();
index 6a5dd37838a4426a4e8c11aef6e00900bfa75fe6..624a740c95c6467570d89712404968ff3a7d12f4 100644 (file)
@@ -103,7 +103,6 @@ public class XWPFHeader extends XWPFHeaderFooter {
 
        /**
         * reads the document
-        * @overide onDocumentRead of class {@link POIXMLDocumentPart}
         */
          @Override  
            protected void onDocumentRead(){
index 5088eaee6f84fd7132e06e92f75d82e3b2ee9c70..0bdff96a85d4dc44b38318384ee7a2f3b2ee2f58 100644 (file)
@@ -142,7 +142,6 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
         * the method will return this table
         * if there is no corresponding {@link XWPFTable} the method will return null 
         * @param ctTable
-        * @return
         */
        public XWPFTable getTable(CTTbl ctTable){
                for (XWPFTable table : tables) {
@@ -202,7 +201,7 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
     
     /**
      * get all Pictures in this package
-     * @return
+     * @return all Pictures in this package
      */
     public List<XWPFPictureData> getAllPackagePictures(){
        List<XWPFPictureData> pkgpictures = new ArrayList<XWPFPictureData>();
@@ -237,7 +236,7 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
     /**
      * Adds a picture to the document.
      *
-     * @param is                The stream to read image from
+     * @param pictureData       The picture bytes
      * @param format            The format of the picture.
      *
      * @return the index to this picture (0 based), the added picture can be obtained from {@link #getAllPictures()} .
@@ -260,7 +259,7 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
     /**
      * get the next free ImageNumber
      * @param format
-     * @return
+     * @return the next free ImageNumber
      */
     public int getNextPicNameNumber(int format){
        int img = getAllPackagePictures().size()+1;
@@ -301,7 +300,8 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
     /**
      * Add the picture to  drawing relations
      *
-     * @param img the PictureData of the Picture,
+     * @param pictureData the picture bytes
+     * @param format      the picture format
      */
     public PackageRelationship addPictureReference(byte[] pictureData, int format){
        int imageNumber = getNextPicNameNumber(format);
@@ -322,7 +322,7 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
       /**
        * Add the picture to  drawing relations
        *
-       * @param img the PictureData of the Picture,
+       * @param is the stream to read picture data from
        */
       public PackageRelationship addPictureReference(InputStream is, int format){
          
@@ -345,7 +345,7 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
       /**
        * add a new paragraph at position of the cursor
        * @param cursor
-       * @return
+       * @return the inserted paragraph
        */
       public XWPFParagraph insertNewParagraph(XmlCursor cursor){
        if(isCursorInHdrF(cursor)){
@@ -385,7 +385,7 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
        /**
        * 
        * @param cursor
-       * @return
+       * @return the inserted table
        */
        public XWPFTable insertNewTbl(XmlCursor cursor) {
                if(isCursorInHdrF(cursor)){
@@ -425,7 +425,6 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
        /**
         * verifies that cursor is on the right position
         * @param cursor
-        * @return
         */
        private boolean isCursorInHdrF(XmlCursor cursor) {
                XmlCursor verify = cursor.newCursor();
@@ -455,7 +454,7 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
        
        /**
         * inserts an existing XWPFTable to the arrays bodyElements and tables
-        * @param i
+        * @param pos
         * @param table
         */
        public void insertTable(int pos, XWPFTable table) {
@@ -497,8 +496,7 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
        
        /**
         * get the TableCell which belongs to the TableCell
-        * @param o
-        * @return
+        * @param cell
         */
        public XWPFTableCell getTableCell(CTTc cell) {
                XmlCursor cursor = cell.newCursor();
index 9bf7f1b33dc1a7dd015b1bd56e90e7e4ff17d2e5..e1f2a9046ea5af23f9d170e27adbdf49e8c9d7c7 100644 (file)
@@ -232,7 +232,7 @@ public class XWPFNumbering extends POIXMLDocumentPart {
         *return the abstractNumID
         *If the AbstractNumID not exists
         *return null
-        * @param               num
+        * @param               numID
         * @return              abstractNumID
         */
        public BigInteger getAbstractNumID(BigInteger numID){
index 4c762e52c48b1ec373d56251056ae74a105355e2..6a299fafdfb988e119c7c7c523bcea1a9786c082 100644 (file)
@@ -1106,8 +1106,7 @@ public class XWPFParagraph implements IBodyElement{
      * If it finds the string, it will return true and the position of the String
      * will be saved in the parameter startPos.
      * @param searched
-     * @param pos
-     * @return
+     * @param startPos
      */
     public TextSegement searchText(String searched,PositionInParagraph startPos){
        
@@ -1172,7 +1171,7 @@ public class XWPFParagraph implements IBodyElement{
     /**
      * insert a new Run in RunArray
      * @param pos
-     * @return
+     * @return  the inserted run
      */
     public XWPFRun insertNewRun(int pos){
         if (pos >= 0 && pos <= paragraph.sizeOfRArray()) {
@@ -1188,8 +1187,7 @@ public class XWPFParagraph implements IBodyElement{
     
     /**
      * get a Text
-     * @param posList
-     * @return
+     * @param segment
      */
     public String getText(TextSegement segment){
     int runBegin = segment.getBeginRun();
@@ -1223,7 +1221,7 @@ public class XWPFParagraph implements IBodyElement{
     /**
      * removes a Run at the position pos in the paragraph
      * @param pos
-     * @return
+     * @return true if the run was removed
      */
     public boolean removeRun(int pos){
         if (pos >= 0 && pos < paragraph.sizeOfRArray()){
@@ -1263,8 +1261,6 @@ public class XWPFParagraph implements IBodyElement{
        
        /**
         * adds a new Run to the Paragraph
-        * @param r
-        * @return
         */
        public void addRun(XWPFRun r){
                runs.add(r);
@@ -1272,8 +1268,6 @@ public class XWPFParagraph implements IBodyElement{
        
        /**
         * return the XWPFRun-Element which owns the CTR run-Element
-        * @param r
-        * @return
         */
        public XWPFRun getRun(CTR r){
                for(int i=0; i < getRuns().size(); i++){
index 43fae3ac42797fafd4346b7db1785c4421918151..2ceff9719b7da9d0d4f182f0b0147b2991f6ea1f 100644 (file)
@@ -109,7 +109,6 @@ public class XWPFStyle {
         
         /**
          * get StyleID of the linked Style
-         * @return
          */
         public String getLinkStyleID(){
                 if (ctStyle.getLink()!=null)
@@ -120,7 +119,6 @@ public class XWPFStyle {
         
         /**
          * get StyleID of the next style
-         * @return
          */
         public String getNextStyleID(){
                if(ctStyle.getNext()!=null)
@@ -138,7 +136,6 @@ public class XWPFStyle {
         /**
          * compares the names of the Styles 
          * @param compStyle
-         * @return
          */
         public boolean hasSameName(XWPFStyle compStyle){
                CTStyle ctCompStyle = compStyle.getCTStyle();
index 6b6173f3147eac6bcf3193722b8abc3541668116..46198823a1d3ef4e550b2c9bfed103db68dd566e 100644 (file)
@@ -177,7 +177,6 @@ public class XWPFStyles extends POIXMLDocumentPart{
        
        /**
         * get latentstyles
-        * @return
         */
        public XWPFLatentStyles getLatentStyles() {
                return latentStyles;
@@ -186,8 +185,6 @@ public class XWPFStyles extends POIXMLDocumentPart{
        /**
         * get the style with the same name
         * if this style is not existing, return null
-        * @param style
-        * @return
         */
        public XWPFStyle getStyleWithSameName(XWPFStyle style){
                for (XWPFStyle ownStyle : listStyle) {
index 4927f321b011b7b2fec8670639663123b2e55a5e..926260e26a4f128bb5ca5a78617864bcf4d545fe 100644 (file)
@@ -250,7 +250,7 @@ public class XWPFTable implements IBodyElement{
     /**
      * inserts a new tablerow 
      * @param pos
-     * @return
+     * @return  the inserted row
      */
     public XWPFTableRow insertNewTableRow(int pos){
        if(pos >= 0 && pos <= tableRows.size()){
@@ -276,11 +276,6 @@ public class XWPFTable implements IBodyElement{
        return false;
     }
        
-    /**
-     * 
-     * @param pos
-     * @return
-     */
     public List<XWPFTableRow> getRows() {
         return tableRows;
     }
@@ -318,8 +313,6 @@ public class XWPFTable implements IBodyElement{
        /**
         * returns the XWPFRow which belongs to the CTRow row
         * if this row is not existing in the table null will be returned
-        * @param row
-        * @return
         */
        public XWPFTableRow getRow(CTRow row) {
                for(int i=0; i<getRows().size(); i++){
index 008b5904b850b4884d7cf8668dda18620b469645..7685a6f00a61a5880c7a8c74531c4e7a33d4b38d 100644 (file)
@@ -77,7 +77,6 @@ public class XWPFTableCell implements IBody {
     /**
      * returns an Iterator with paragraphs and tables
      * @see org.apache.poi.xwpf.usermodel.IBody#getBodyElements()
-     * @return
      */
     public List<IBodyElement> getBodyElements(){
       return Collections.unmodifiableList(bodyElements);
@@ -92,7 +91,6 @@ public class XWPFTableCell implements IBody {
 
     /**
      * returns a list of paragraphs
-     * @return
      */
     public List<XWPFParagraph> getParagraphs(){
                return paragraphs;
@@ -155,7 +153,7 @@ public class XWPFTableCell implements IBody {
     /**
      * add a new paragraph at position of the cursor
      * @param cursor
-     * @return
+     * @return the inserted paragraph
      */
     public XWPFParagraph insertNewParagraph(XmlCursor cursor){
        if(!isCursorInTableCell(cursor))
@@ -191,11 +189,6 @@ public class XWPFTableCell implements IBody {
        return newP;
     }
 
-       /**
-     * 
-     * @param cursor
-     * @return
-     */
        public XWPFTable insertNewTbl(XmlCursor cursor) {
                if(isCursorInTableCell(cursor)){
                        String uri = CTTbl.type.getName().getNamespaceURI();
@@ -233,8 +226,6 @@ public class XWPFTableCell implements IBody {
        
        /**
         * verifies that cursor is on the right position
-        * @param cursor
-        * @return
         */
        private boolean isCursorInTableCell(XmlCursor cursor) {
                XmlCursor verify = cursor.newCursor();
@@ -290,7 +281,7 @@ public class XWPFTableCell implements IBody {
 
 
        /** 
-        * @see org.apache.poi.xwpf.usermodel.IBodyPart#getTableArray(int)
+        * @see org.apache.poi.xwpf.usermodel.IBody#getTableArray(int)
         */
        public XWPFTable getTableArray(int pos) {
                if(pos > 0 && pos < tables.size()){
@@ -301,7 +292,7 @@ public class XWPFTableCell implements IBody {
 
 
        /** 
-        * @see org.apache.poi.xwpf.usermodel.IBodyPart#getTables()
+        * @see org.apache.poi.xwpf.usermodel.IBody#getTables()
         */
        public List<XWPFTable> getTables() {
                return Collections.unmodifiableList(tables);
@@ -335,8 +326,6 @@ public class XWPFTableCell implements IBody {
 
        /**
         * get the TableCell which belongs to the TableCell
-        * @param o
-        * @return
         */
        public XWPFTableCell getTableCell(CTTc cell) {
                XmlCursor cursor = cell.newCursor();
index 01996dc49e89aba219b4f19998d1f236c237e304..ebdbe04ba2a420a491bb499d51f692a8425db71d 100644 (file)
@@ -57,10 +57,6 @@ public class XWPFTableRow {
         return tableCell;
     }
 
-    /** 
-     * @param pos
-     * @return
-     */
     public XWPFTableCell getCell(int pos) {
         if (pos >= 0 && pos < ctRow.sizeOfTcArray()) {
                return getTableCells().get(pos);
@@ -70,7 +66,6 @@ public class XWPFTableRow {
     
     /**
      * adds a new TableCell at the end of this tableRow
-     * @return
      */
     public XWPFTableCell addNewTableCell(){
        CTTc cell = ctRow.addNewTc();
@@ -138,8 +133,6 @@ public class XWPFTableRow {
        /**
         * returns the XWPFTableCell which belongs to the CTTC cell
         * if there is no XWPFTableCell which belongs to the parameter CTTc cell null will be returned
-        * @param cell
-        * @return
         */
        public XWPFTableCell getTableCell(CTTc cell) {
                for(int i=0; i<tableCells.size(); i++){
index 033c4ab4600611195e2f7333491c71daadc65f76..211686414307ef7948695b719ec33898b772ec84 100644 (file)
@@ -50,7 +50,7 @@ public interface CharIndexTranslator {
      * Return first index >= bytePos that is in table\r
      *\r
      * @param bytePos\r
-     * @return\r
+     * @return  first index greater or equal to bytePos that is in table\r
      */\r
     public int lookIndexForward(int bytePos);\r
 \r
@@ -58,7 +58,7 @@ public interface CharIndexTranslator {
      * Return last index <= bytePos that is in table\r
      *\r
      * @param bytePos\r
-     * @return\r
+     * @return last index less of equal to bytePos that is in table\r
      */\r
     public int lookIndexBackward(int bytePos);\r
 \r