]> source.dussan.org Git - poi.git/commitdiff
Remove some @author tags, as per http://poi.apache.org/guidelines.html#CodeStyle
authorNick Burch <nick@apache.org>
Fri, 23 Aug 2013 18:42:57 +0000 (18:42 +0000)
committerNick Burch <nick@apache.org>
Fri, 23 Aug 2013 18:42:57 +0000 (18:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1516975 13f79535-47bb-0310-9956-ffa450edef68

58 files changed:
src/java/org/apache/poi/hssf/eventusermodel/AbortableHSSFListener.java
src/java/org/apache/poi/hssf/eventusermodel/HSSFEventFactory.java
src/java/org/apache/poi/hssf/eventusermodel/HSSFListener.java
src/java/org/apache/poi/hssf/eventusermodel/HSSFRequest.java
src/java/org/apache/poi/hssf/eventusermodel/HSSFUserException.java
src/java/org/apache/poi/hssf/model/AbstractShape.java
src/java/org/apache/poi/hssf/model/ComboboxShape.java
src/java/org/apache/poi/hssf/model/CommentShape.java
src/java/org/apache/poi/hssf/model/DrawingManager.java
src/java/org/apache/poi/hssf/model/DrawingManager2.java
src/java/org/apache/poi/hssf/model/HSSFFormulaParser.java
src/java/org/apache/poi/hssf/model/InternalSheet.java
src/java/org/apache/poi/hssf/model/InternalWorkbook.java
src/java/org/apache/poi/hssf/model/LineShape.java
src/java/org/apache/poi/hssf/model/LinkTable.java
src/java/org/apache/poi/hssf/model/PictureShape.java
src/java/org/apache/poi/hssf/model/RecordOrderer.java
src/java/org/apache/poi/hssf/model/RecordStream.java
src/java/org/apache/poi/hssf/model/RowBlocksReader.java
src/java/org/apache/poi/hssf/model/TextboxShape.java
src/java/org/apache/poi/hssf/record/CRNRecord.java
src/java/org/apache/poi/hssf/record/CalcCountRecord.java
src/java/org/apache/poi/hssf/record/LabelSSTRecord.java
src/java/org/apache/poi/hssf/record/PrecisionRecord.java
src/java/org/apache/poi/hssf/record/SSTRecord.java
src/java/org/apache/poi/hssf/record/UserSViewEnd.java
src/java/org/apache/poi/hssf/record/WindowProtectRecord.java
src/java/org/apache/poi/hssf/record/cont/ContinuableRecord.java
src/java/org/apache/poi/hssf/record/cont/ContinuableRecordInput.java
src/java/org/apache/poi/hssf/record/cont/ContinuableRecordOutput.java
src/java/org/apache/poi/hssf/record/cont/UnknownLengthRecordOutput.java
src/java/org/apache/poi/hssf/record/pivottable/ViewDefinitionRecord.java
src/java/org/apache/poi/hssf/usermodel/HSSFClientAnchor.java
src/java/org/apache/poi/hssf/util/CellRangeAddress.java
src/java/org/apache/poi/hssf/util/CellRangeAddress8Bit.java
src/java/org/apache/poi/hssf/util/CellRangeAddressList.java
src/java/org/apache/poi/hssf/util/CellReference.java
src/java/org/apache/poi/hssf/util/HSSFCellUtil.java
src/java/org/apache/poi/hssf/util/HSSFColor.java
src/java/org/apache/poi/hssf/util/HSSFRegionUtil.java
src/java/org/apache/poi/hssf/util/RKUtil.java
src/java/org/apache/poi/hssf/util/Region.java
src/java/org/apache/poi/ss/formula/OperationEvaluationContext.java
src/java/org/apache/poi/ss/formula/functions/Countif.java
src/java/org/apache/poi/ss/formula/functions/LookupUtils.java
src/java/org/apache/poi/ss/formula/functions/Match.java
src/java/org/apache/poi/ss/formula/functions/Quotient.java
src/java/org/apache/poi/ss/formula/functions/Value.java
src/java/org/apache/poi/ss/formula/functions/Vlookup.java
src/java/org/apache/poi/util/Configurator.java
src/testcases/org/apache/poi/ss/formula/functions/BaseTestFunctionsFromSpreadsheet.java
src/testcases/org/apache/poi/ss/formula/functions/TestCountFuncs.java
src/testcases/org/apache/poi/ss/formula/functions/TestIndexFunctionFromSpreadsheet.java
src/testcases/org/apache/poi/ss/formula/functions/TestIndirectFunctionFromSpreadsheet.java
src/testcases/org/apache/poi/ss/formula/functions/TestLookupFunctionsFromSpreadsheet.java
src/testcases/org/apache/poi/ss/formula/functions/TestMatch.java
src/testcases/org/apache/poi/ss/formula/functions/TestMatchFunctionsFromSpreadsheet.java
src/testcases/org/apache/poi/ss/formula/functions/TestValue.java

index befe4b35679a777be660f503efe02f7f1ec6decd..8e1c24a4d11e820d9415c12316d13e4802da7f42 100644 (file)
@@ -33,8 +33,6 @@ import org.apache.poi.hssf.eventusermodel.HSSFUserException;
  * @see org.apache.poi.hssf.eventusermodel.HSSFEventFactory
  * @see org.apache.poi.hssf.eventusermodel.HSSFRequest
  * @see org.apache.poi.hssf.eventusermodel.HSSFUserException
- *
- * @author Carey Sublette (careysub@earthling.net)
  */
 
 public abstract class AbortableHSSFListener implements HSSFListener
index 3b064dc533a2caa2ee253ff06e38f99b92f144e3..45ab8d81317a9b2a740d97a21936745b686a1ba5 100644 (file)
@@ -33,9 +33,6 @@ import org.apache.poi.poifs.filesystem.POIFSFileSystem;
  * This will cause your file to be processed a record at a time.  Each record with
  * a static id matching one that you have registered in your HSSFRequest will be passed
  * to your associated HSSFListener.
- *
- * @author Andrew C. Oliver (acoliver at apache dot org)
- * @author Carey Sublette  (careysub@earthling.net)
  */
 public class HSSFEventFactory {
        /** Creates a new instance of HSSFEventFactory */
index 51ee0904bfcf7166adb7bbe7008ec3f4e7320bd3..5b9a1597a38b5c844ffb040ccfe7e30d609b90a2 100644 (file)
@@ -27,7 +27,6 @@ import org.apache.poi.hssf.record.Record;
  *
  * @see org.apache.poi.hssf.eventusermodel.HSSFEventFactory
  * @see org.apache.poi.hssf.eventusermodel.HSSFRequest
- * @author  acoliver@apache.org
  */
 
 public interface HSSFListener
index dd30d4ddb68bc1f0534b15ac6b77a0348f5fdf60..1b36ffd76eb85cb2ccb12a1ba1e9ec2c112853ed 100644 (file)
@@ -32,8 +32,6 @@ import org.apache.poi.hssf.record.RecordFactory;
  * @see org.apache.poi.hssf.eventusermodel.HSSFEventFactory
  * @see org.apache.poi.hssf.eventusermodel.HSSFListener
  * @see org.apache.poi.hssf.eventusermodel.HSSFUserException
- * @author  Andrew C. Oliver (acoliver at apache dot org)
- * @author Carey Sublette (careysub@earthling.net)
  */
 public class HSSFRequest {
        private final Map<Short, List<HSSFListener>> _records;
index 882142c492624bfb4f486fe7a8f1d56ebd62f180..8bf74c58e6cf3da13562453e719c54d50ca6e979 100644 (file)
@@ -31,8 +31,6 @@ package org.apache.poi.hssf.eventusermodel;
  * <p>The HSSF package does not itself throw any of these 
  * exceptions.</p>
  *
- * @author Rainer Klute (klute@rainer-klute.de)
- * @author Carey Sublette (careysub@earthling.net)
  * @version HSSFUserException.java,v 1.0
  * @since 2002-04-19
  */
index 3441ba9f44297e84d3cc414ba078742a0014bc2c..1bfbc26d938738cff41c0e1c13738b878eb1bf3f 100644 (file)
@@ -23,8 +23,6 @@ import org.apache.poi.hssf.usermodel.*;
 
 /**
  * An abstract shape is the lowlevel model for a shape.
- *
- * @author Glen Stampoultzis (glens at apache.org)
  */
 @Deprecated
 public abstract class AbstractShape
index ffca90a79fa66d7575e37c5d1005fb5334e319bf..bad7897640b6ab67035055da2825c91cfd9563c6 100644 (file)
@@ -24,8 +24,6 @@ import org.apache.poi.hssf.usermodel.*;
 
 /**
  * Represents a combobox shape.
- * 
- * @author Yegor Kozlov
  */
 @Deprecated
 public class ComboboxShape
@@ -115,4 +113,4 @@ public class ComboboxShape
         return objRecord;
     }
 
-}
\ No newline at end of file
+}
index 007a4b73615909f5fd7526d1622027b7967efc83..aa61a3676b1bbb65055699560b3a54825c30548f 100644 (file)
@@ -36,8 +36,6 @@ import org.apache.poi.hssf.usermodel.HSSFShape;
  * Represents a cell comment.
  * This class converts highlevel model data from <code>HSSFComment</code>
  * to low-level records.
- *
- * @author Yegor Kozlov
  */
 @Deprecated
 public final class CommentShape extends TextboxShape {
index 8229b40a5b57eec512b4a02b4cd1dcf13e1152aa..5fecaaa52bb573b6df1a4fe9301c3919d393a30d 100644 (file)
@@ -25,8 +25,6 @@ import java.util.HashMap;
 
 /**
  * Provides utilities to manage drawing groups.
- *
- * @author Glen Stampoultzis (glens at apache.org)
  */
 public class DrawingManager
 {
index 0d5e34f24d8c9185024792f6bf259754f212f8ae..8b2292e9511ca41a80c6baeb63bcab4a4c5d9865 100644 (file)
@@ -26,8 +26,6 @@ import java.util.ArrayList;
 
 /**
  * Provides utilities to manage drawing groups.
- *
- * @author Glen Stampoultzis (glens at apache.org)
  */
 public class DrawingManager2
 {
index 6de36504356f1fb73210610d5e8a658ad3b456ad..1f295d0f338d458bc27bba5cb12309f6710079a0 100644 (file)
@@ -28,8 +28,6 @@ import org.apache.poi.ss.formula.FormulaType;
 
 /**
  * HSSF wrapper for the {@link FormulaParser} and {@link FormulaRenderer}
- *
- * @author Josh Micich
  */
 public final class HSSFFormulaParser {
 
index c3bf05236c56ccd0ee2d1c90aefe95abdddd014f..ade41fdb59e1cf70743363661813a81caedf3bd2 100644 (file)
@@ -52,12 +52,6 @@ import org.apache.poi.util.POILogger;
  * Kit (Microsoft Press) and the documentation at http://sc.openoffice.org/excelfileformat.pdf
  * before even attempting to use this.
  * <P>
- * @author  Andrew C. Oliver (acoliver at apache dot org)
- * @author  Glen Stampoultzis (glens at apache.org)
- * @author  Shawn Laubach (slaubach at apache dot org) Gridlines, Headers, Footers, PrintSetup, and Setting Default Column Styles
- * @author Jason Height (jheight at chariot dot net dot au) Clone support. DBCell & Index Record writing support
- * @author  Brian Sanders (kestrel at burdell dot org) Active Cell support
- * @author  Jean-Pierre Paris (jean-pierre.paris at m4x dot org) (Just a little)
  *
  * @see org.apache.poi.hssf.model.InternalWorkbook
  * @see org.apache.poi.hssf.usermodel.HSSFSheet
index 0a489d29cf6d1ceae13e2d24ffca7173b80297cd..24b30180d818f9f0f1c73dc65830df0d9213d075 100644 (file)
@@ -57,14 +57,6 @@ import org.apache.poi.util.POILogger;
  * Kit (Microsoft Press) and the documentation at http://sc.openoffice.org/excelfileformat.pdf
  * before even attempting to use this.
  *
- *
- * @author  Luc Girardin (luc dot girardin at macrofocus dot com)
- * @author  Sergei Kozello (sergeikozello at mail.ru)
- * @author  Shawn Laubach (slaubach at apache dot org) (Data Formats)
- * @author  Andrew C. Oliver (acoliver at apache dot org)
- * @author  Brian Sanders (bsanders at risklabs dot com) - custom palette
- * @author  Dan Sherman (dsherman at isisph.com)
- * @author  Glen Stampoultzis (glens at apache.org)
  * @see org.apache.poi.hssf.usermodel.HSSFWorkbook
  */
 @Internal
index e4517e4d7ac3586e3d33310dad35de43010fac1e..f2c542a3243383965e1c70e25b0eb6f8f2da50ca 100644 (file)
@@ -24,8 +24,6 @@ import org.apache.poi.hssf.usermodel.*;
 
 /**
  * Represents a line shape and creates all the line specific low level records.
- *
- * @author Glen Stampoultzis (glens at apache.org)
  */
 @Deprecated
 public class LineShape
index 8a624af73ab6422c708dafcd1530310d3109d983..1cec62de3c956132db7add0bdcc81ab07c50127d 100644 (file)
@@ -60,9 +60,6 @@ import org.apache.poi.ss.formula.ptg.*;
  *  <li>zero or one EXTERNSHEET (0x0017) record</li>
  *  <li>zero or more DEFINEDNAME (0x0018) records</li>
  *  </ul>
- *
- *
- * @author Josh Micich
  */
 final class LinkTable {
 
index fb5041e21b49cae61f247c14b66d0236dfbd859b..5976df8ef4ac1c9ce87c5745a51a3c7337ca4a96 100644 (file)
@@ -24,8 +24,6 @@ import org.apache.poi.hssf.usermodel.*;
 
 /**
  * Represents a picture shape and creates all specific low level records.
- *
- * @author Glen Stampoultzis (glens at apache.org)
  */
 public class PictureShape
         extends AbstractShape
index 6ea8ea95be3df2b3e1f71dceea700674075f734d..69e9971fa9332ed898648495d11c7707c4914ee0 100644 (file)
@@ -76,8 +76,6 @@ import org.apache.poi.hssf.record.pivottable.ViewDefinitionRecord;
  * Finds correct insert positions for records in workbook streams<p/>
  *
  * See OOO excelfileformat.pdf sec. 4.2.5 'Record Order in a BIFF8 Workbook Stream'
- *
- * @author Josh Micich
  */
 final class RecordOrderer {
 
index 3fbf96764ced6d328129b317044613787787e809..d9f04f7e6e517ce2452e8a09917496d5e1693477 100644 (file)
@@ -22,8 +22,6 @@ import java.util.List;
 import org.apache.poi.hssf.record.Record;
 /**
  * Simplifies iteration over a sequence of <tt>Record</tt> objects.
- *
- * @author Josh Micich
  */
 public final class RecordStream {
 
index 24498267c81b2f14a408c59de3e9350e605d4f1d..29a4ed22c1510ba3c0b69808d1f5b2b0c56f2fbc 100644 (file)
@@ -33,8 +33,6 @@ import org.apache.poi.ss.util.CellReference;
 /**
  * Segregates the 'Row Blocks' section of a single sheet into plain row/cell records and
  * shared formula records.
- *
- * @author Josh Micich
  */
 public final class RowBlocksReader {
 
index 1b2a154a1d547ca8a4f96ad4e3f6200a662ea498..44da1ed3dae9fdad3837d9894f7cc2535bdc3e9a 100644 (file)
@@ -25,8 +25,6 @@ import org.apache.poi.hssf.usermodel.*;
 /**
  * Represents an textbox shape and converts between the highlevel records
  * and lowlevel records for an oval.
- *
- * @author Glen Stampoultzis (glens at apache.org)
  */
 @Deprecated
 public class TextboxShape
index 6b2c47c54a909da99e12d27acb4cab22f3283419..82db82160be3fda4e6909d91edb67595f2d48cc3 100644 (file)
@@ -24,8 +24,6 @@ import org.apache.poi.util.LittleEndianOutput;
  * Title:       CRN(0x005A) <p/>
  * Description: This record stores the contents of an external cell or cell range <p/>
  * REFERENCE:   OOO 5.23<p/>
- *
- * @author josh micich
  */
 public final class CRNRecord extends StandardRecord {
        public final static short sid = 0x005A;
index c36411788f76a51e9f5be612d3f578fccf044279..f8b4534bc0933c5ce81333c509ba696a769bcaac 100644 (file)
@@ -29,8 +29,6 @@ import org.apache.poi.util.LittleEndianOutput;
  *               changes.  This is essentially a failsafe against an infinate
  *               loop in the event the formulas are not independant. <P>
  * REFERENCE:  PG 292 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)<P>
- * @author Andrew C. Oliver (acoliver at apache dot org)
- * @author Jason Height (jheight at chariot dot net dot au)
  * @version 2.0-pre
  * @see org.apache.poi.hssf.record.CalcModeRecord
  */
index 8f279caf99b1eb94f8fd360c20b28f03a0ad439d..e1b4bd20c4d80eac8e287cc0ba64c190851bc419 100644 (file)
@@ -25,8 +25,6 @@ import org.apache.poi.util.LittleEndianOutput;
  * Description:  Refers to a string in the shared string table and is a column
  *               value.  <P>
  * REFERENCE:  PG 325 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)<P>
- * @author Andrew C. Oliver (acoliver at apache dot org)
- * @author Jason Height (jheight at chariot dot net dot au)
  */
 public final class LabelSSTRecord extends CellRecord {
     public final static short sid = 0xfd;
index db5928c7c031829e4c73b01bf35afe83d169bcae..0dede18379eac75d1fc8271e6ce1191d0b3e2433 100644 (file)
@@ -26,7 +26,6 @@ import org.apache.poi.util.LittleEndianOutput;
  * Description:  defines whether to store with full precision or what's displayed by the gui
  *               (meaning have really screwed up and skewed figures or only think you do!)<P>
  * REFERENCE:  PG 372 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)<P>
- * @author Andrew C. Oliver (acoliver at apache dot org)
  * @version 2.0-pre
  */
 
index 6b60d75dd719cdbd5d42dd78f3cf974231c05093..aadd58619b3263d978db7bf4684f5c3a150e8ed8 100644 (file)
@@ -33,9 +33,6 @@ import org.apache.poi.util.LittleEndianConsts;
  * REFERENCE:    PG 389 Microsoft Excel 97 Developer's Kit (ISBN:
  *               1-57231-498-2)
  * <P>
- * @author Andrew C. Oliver (acoliver at apache dot org)
- * @author Marc Johnson (mjohnson at apache dot org)
- * @author Glen Stampoultzis (glens at apache.org)
  *
  * @see org.apache.poi.hssf.record.LabelSSTRecord
  * @see org.apache.poi.hssf.record.ContinueRecord
index 2427729e32653da15b0fd9d81f97a5e72c86be55..650704bcf33dcb9bcdb667ca0c70a94a16434208 100644 (file)
@@ -22,8 +22,6 @@ import org.apache.poi.util.LittleEndianOutput;
 
 /**
  * The UserSViewEnd record marks the end of the settings for a custom view associated with the sheet
- *
- * @author Yegor Kozlov
  */
 public final class UserSViewEnd extends StandardRecord {
 
@@ -75,4 +73,4 @@ public final class UserSViewEnd extends StandardRecord {
     }
 
     
-}
\ No newline at end of file
+}
index e6f0688501de71c8a804e9f839331a9f632bd6fa..7d0a4bc02fb7cbaf843f94b94fa0a495191839a5 100644 (file)
@@ -26,7 +26,6 @@ import org.apache.poi.util.LittleEndianOutput;
  * Title: Window Protect Record (0x0019) <p/>
  * Description:  flags whether workbook windows are protected<p/>
  * REFERENCE:  PG 424 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)<p/>
- * @author Andrew C. Oliver (acoliver at apache dot org)
  */
 public final class WindowProtectRecord extends StandardRecord {
     public final static short sid = 0x0019;
index 3048054418fc028b1d7aa588b36f46ceacc78ca9..468a31754eb88ab8d3b1f0081212896d13ad7011 100644 (file)
@@ -24,8 +24,6 @@ import org.apache.poi.util.LittleEndianOutput;
 
 /**
  * Common superclass of all records that can produce {@link ContinueRecord}s while being serialized.
- *
- * @author Josh Micich
  */
 public abstract class ContinuableRecord extends Record {
 
index 9925ad3eb0731e24aeb8bfade46ba772d7901c62..739aeacb8c6bfc41e7619aca2b6a5fe3b2adc061 100644 (file)
@@ -47,8 +47,6 @@ import org.apache.poi.util.LittleEndianInput;
  *   @link org.apache.poi.hssf.record.common.UnicodeString.ExtRst} blocks of a UnicodeString.\r
  *\r
  * </p>\r
- *\r
- * @author Yegor Kozlov\r
  */\r
 public class ContinuableRecordInput implements LittleEndianInput {\r
     private final RecordInputStream _in;\r
index d26c85dff8dbaf6cff87e8a4fabd780daebe3368..a39f1393e01df9e60fdbafaf8805c3138603f478 100644 (file)
@@ -26,8 +26,6 @@ import org.apache.poi.util.StringUtil;
  * An augmented {@link LittleEndianOutput} used for serialization of {@link ContinuableRecord}s.
  * This class keeps track of how much remaining space is available in the current BIFF record and
  * can start new {@link ContinueRecord}s as required.
- *
- * @author Josh Micich
  */
 public final class ContinuableRecordOutput implements LittleEndianOutput {
 
index 322a5208fc58a8f839c9efb3e169864f28fa84b0..5e5206ff1ff826d6e9a78cceb89082bfb5170696 100644 (file)
@@ -25,8 +25,6 @@ import org.apache.poi.util.LittleEndianOutput;
  * Allows the writing of BIFF records when the 'ushort size' header field is not known in advance.
  * When the client is finished writing data, it calls {@link #terminate()}, at which point this
  * class updates the 'ushort size' with its final value.
- *
- * @author Josh Micich
  */
 final class UnknownLengthRecordOutput implements LittleEndianOutput {
        private static final int MAX_DATA_SIZE = RecordInputStream.MAX_RECORD_DATA_SIZE;
index 03c2981fb38a64c8a683a6fdb6aa2860b3fa7a1e..3c37924f94f81340daaa05bd5c7515e98f67088d 100644 (file)
@@ -25,8 +25,6 @@ import org.apache.poi.util.StringUtil;
 
 /**
  * SXVIEW - View Definition (0x00B0)<br/>
- * 
- * @author Patrick Cheng
  */
 public final class ViewDefinitionRecord extends StandardRecord {
        public static final short sid = 0x00B0;
index 75f3b4ece0e92288db18af896502361da9747438..7f4e77b5c47de237d648f9b42c8bd8dd817fb444 100644 (file)
@@ -24,8 +24,6 @@ import org.apache.poi.ss.usermodel.ClientAnchor;
 /**
  * A client anchor is attached to an excel worksheet.  It anchors against a
  * top-left and buttom-right cell.
- *
- * @author Glen Stampoultzis (glens at apache.org)
  */
 public final class HSSFClientAnchor extends HSSFAnchor implements ClientAnchor {
 
index d2316fe88489ea790361e90a1c06c8d6d4cd087f..a59fa5e6062365bdc5d2ca5db31a73e487ed08e6 100644 (file)
@@ -25,7 +25,6 @@ import org.apache.poi.hssf.record.SelectionRecord;
  *
  * Note - {@link SelectionRecord} uses the BIFF5 version of this structure
  * @deprecated use {@link org.apache.poi.ss.util.CellRangeAddress}
- * @author Dragos Buleandra (dragos.buleandra@trade2b.ro)
  */
 public class CellRangeAddress extends org.apache.poi.ss.util.CellRangeAddress {
 
index cada8bfe5b464dbb79a85d1b0e99123eaea731eb..83f79b996a526beab87b83ff4d32ea61ca907cc9 100644 (file)
@@ -26,8 +26,6 @@ import org.apache.poi.util.LittleEndianOutput;
  * See OOO documentation: excelfileformat.pdf sec 2.5.14 - 'Cell Range Address'<p/>
  *
  * Like {@link CellRangeAddress} except column fields are 8-bit.
- *
- * @author Josh Micich
  */
 public final class CellRangeAddress8Bit extends CellRangeAddressBase {
 
index 6c7a32c515201273fc3098c997de6f6078c1bcc8..d715eee432a51e8b74961848331257feb8a253d5 100644 (file)
@@ -31,8 +31,6 @@ import org.apache.poi.hssf.record.RecordInputStream;
  * </p>
  * 
  * @deprecated use {@link org.apache.poi.ss.util.CellRangeAddressList}
- * 
- * @author Dragos Buleandra (dragos.buleandra@trade2b.ro)
  */
 public class CellRangeAddressList extends org.apache.poi.ss.util.CellRangeAddressList {
        public CellRangeAddressList(int firstRow, int lastRow, int firstCol, int lastCol) {
index af243aafde5ed2873a797ef0b7c001fea09360e8..ac3e5f388a2e1217563443b4705e3ea94598bbbb 100644 (file)
@@ -21,8 +21,6 @@ package org.apache.poi.hssf.util;
  * Common conversion functions between Excel style A1, C27 style
  *  cell references, and POI usermodel style row=0, column=0
  *  style references.
- * @author  Avik Sengupta
- * @author  Dennis Doubleday (patch to seperateRowColumns())
  */
 public final class CellReference extends org.apache.poi.ss.util.CellReference {
     /**
index da69364ec081cf9aa9988d398448d91b5b4acd5c..342a9307fea3ed145f752f1400bcc8befc8b00e4 100644 (file)
@@ -33,8 +33,6 @@ import org.apache.poi.ss.util.CellUtil;
  * exists that meets your needs.  If not, then it will create a new style.  This is to prevent
  * creating too many styles.  there is an upper limit in Excel on the number of styles that
  * can be supported.
- *
- *@author     Eric Pugh epugh@upstate.com
  */
 public final class HSSFCellUtil {
 
index 617224bdf66bfc5a4702fb9f888d2a432bc5a6cb..c449b656aeac6f205a59b32f2d5a51f17390ba79 100644 (file)
@@ -34,9 +34,6 @@ import org.apache.poi.ss.usermodel.Color;
  * color would be represented by Gnumeric.  Having (string) this here is a bit of a
  * collusion of function between HSSF and the HSSFSerializer but I think its
  * a reasonable one in this case.
- *
- * @author  Andrew C. Oliver (acoliver at apache dot org)
- * @author  Brian Sanders (bsanders at risklabs dot com) - full default color palette
  */
 public class HSSFColor implements Color {
     private static Map<Integer,HSSFColor> indexHash; 
index 3e491e7e8e9d222b57201387b746fdf381d61363..77fac434ea1255dde5d8259a3f7ad9ebcd089917 100644 (file)
@@ -24,8 +24,6 @@ import org.apache.poi.ss.util.CellRangeAddress;
 
 /**
  * Various utility functions that make working with a region of cells easier.
- *
- * @author Eric Pugh epugh@upstate.com
  */
 public final class HSSFRegionUtil {
 
index b36166e29e54768c17766e5591891655fd569fd5..42cdd379b50fa91107b3c8c82378ce372653e249 100644 (file)
@@ -20,10 +20,6 @@ package org.apache.poi.hssf.util;
 /**
  * Utility class for helping convert RK numbers.
  *
- * @author Andrew C. Oliver (acoliver at apache dot org)
- * @author Glen Stampoultzis (glens at apache.org)
- * @author Rolf-J\u00f6rgen Moll
- *
  * @see org.apache.poi.hssf.record.MulRKRecord
  * @see org.apache.poi.hssf.record.RKRecord
  */
index 4e417b5672e051b20c85b5a050d6b8f0923dafd3..69e23e8169b25871d456c8584429cc7847233c0a 100644 (file)
@@ -23,7 +23,6 @@ package org.apache.poi.hssf.util;
  * that can be used to represent row,col - row,col just as one would use String
  * to represent a string of characters.  Its really only useful for HSSF though.
  *
- * @author  Andrew C. Oliver acoliver at apache dot org
  * @deprecated (Aug-2008) use {@link org.apache.poi.ss.util.CellRangeAddress}
  */
 
index d1407c064bb533a2d17151d879c7843856d0870b..6bf3ed6e32606520a847c274a45f4718343b5886 100644 (file)
@@ -35,9 +35,6 @@ import org.apache.poi.ss.util.CellReference.NameType;
  * within a formula
  *
  * For POI internal use only
- *
- * @author Josh Micich
- * @author Cédric Walter
  */
 public final class OperationEvaluationContext {
        public static final FreeRefFunction UDF = UserDefinedFunction.instance;
index 9a8a0341049d4ce4b6df66e5896df2d0b360e68e..c9888643333814822f35ed8f368bc534d086794b 100644 (file)
@@ -41,9 +41,6 @@ import org.apache.poi.ss.usermodel.ErrorConstants;
  *      <tr><th>criteria</th><td>is used to determine which cells to count</td></tr>
  *    </table>
  * </p>
- *
- * @author Josh Micich
- * @author Cedric Walter at innoveo.com
  */
 public final class Countif extends Fixed2ArgFunction {
 
index f2cc607d04c9dda54b5eec0ec19aa17e5151e82d..46db37e04b7a3d1897f49a9a7fc7767833bfd163 100644 (file)
@@ -34,9 +34,6 @@ import java.util.regex.Pattern;
 
 /**
  * Common functionality used by VLOOKUP, HLOOKUP, LOOKUP and MATCH
- *
- * @author Josh Micich
- * @author Cedric Walter at innoveo.com
  */
 final class LookupUtils {
 
index bbcf0e2e6b54db2302c8c91d59c959ec31b4370a..8534222cfb97363058c804824442b7e98297bbe1 100644 (file)
@@ -59,10 +59,6 @@ import org.apache.poi.ss.formula.TwoDEval;
  *  numbers (low to high), strings (A to Z), boolean (FALSE to TRUE)<br/>
  *  MATCH() ignores all elements in the lookup_array with a different type to the lookup_value.
  *  Type conversion of the lookup_array elements is never performed.
- *
- *
- * @author Josh Micich
- * @author Cedric Walter at innoveo.com
  */
 public final class Match extends Var2or3ArgFunction {
 
index f05915bce013e46239b92a056b2b7a0a31e96551..40d1debd32573dfca2b1c5e01031054c515a3e04 100644 (file)
@@ -36,8 +36,6 @@ import org.apache.poi.ss.formula.eval.*;
  *\r
  * If either enumerator/denominator is non numeric, QUOTIENT returns the #VALUE! error value.\r
  * If denominator is equals to zero, QUOTIENT returns the #DIV/0! error value.\r
- *\r
- * @author Cédric Walter\r
  */\r
 public class Quotient extends Fixed2ArgFunction implements FreeRefFunction {\r
 \r
index d8bc377f97d0f11af6486b101f55f12dad6c6580..09992f32fc7f859f0011b8d925cc7ab0bc8829a8 100644 (file)
@@ -32,9 +32,6 @@ import org.apache.poi.ss.formula.eval.ValueEval;
  * ignored. Currency symbols and thousands separators are stripped out.
  * Scientific notation is also supported. If the supplied text does not convert
  * properly the result is <b>#VALUE!</b> error. Blank string converts to zero.
- *
- * @author Josh Micich
- * @author Cédric Walter
  */
 public final class Value extends Fixed1ArgFunction {
 
index 3ece2f7f6d0f478a145f674fb1320335c4778515..2f21e21cfd5328cb25eb9b69286774251fc171a6 100644 (file)
@@ -36,9 +36,6 @@ import org.apache.poi.ss.formula.TwoDEval;
  * <b>col_index_num</b> a 1 based index specifying which column value of the lookup data will be returned.<br/>
  * <b>range_lookup</b> If TRUE (default), VLOOKUP finds the largest value less than or equal to
  * the lookup_value.  If FALSE, only exact matches will be considered<br/>
- *
- * @author Josh Micich
- * @author Cedric Walter at innoveo.com
  */
 public final class Vlookup extends Var3or4ArgFunction {
        private static final ValueEval DEFAULT_ARG3 = BoolEval.TRUE;
index 7269030dd7d69491b54efcf4b96023d0794b044f..b1b72590f64bbf70f586f121f96428b91fe679ff 100644 (file)
@@ -18,11 +18,9 @@ package org.apache.poi.util;
 ==================================================================== */\r
 \r
 /**\r
- *\r
- * @author Cedric Walter (cedric.walter at innoveo.com)\r
+ * Helper for fetching int values from system properties\r
  */\r
 public class Configurator {\r
-\r
     private static POILogger logger = POILogFactory.getLogger(Configurator.class);\r
 \r
     public static int getIntValue(String systemProperty, int defaultValue) {\r
@@ -35,6 +33,4 @@ public class Configurator {
         }\r
         return result;\r
     }\r
-\r
-\r
 }\r
index 6993e15f0f0c1ef62a0479cd56801f105a2177e6..98169a0c3eb67f1cc3b9267347fe99df81cc1ef3 100644 (file)
@@ -34,8 +34,7 @@ import org.apache.poi.hssf.util.CellReference;
 import org.apache.poi.ss.usermodel.CellValue;\r
 \r
 /**\r
- * @author Josh Micich\r
- * @author Cedric Walter at innoveo.com\r
+ * \r
  */\r
 public abstract class BaseTestFunctionsFromSpreadsheet extends TestCase {\r
 \r
index 02992fc5db0820bbe0eefe71fef3239dd1116795..7184106dfedcc2965ba884f5636d78b597c8cc20 100644 (file)
@@ -41,9 +41,6 @@ import org.apache.poi.ss.util.CellReference;
 
 /**
  * Test cases for COUNT(), COUNTA() COUNTIF(), COUNTBLANK()
- *
- * @author Josh Micich
- * @author Cedric Walter at innoveo.com
  */
 public final class TestCountFuncs extends TestCase {
 
index 6d900e1ef4709b9760c657c1cc9c35fec9d70312..214e01536b3c7cc5abbd52eb383faadcf9d4224f 100644 (file)
@@ -19,9 +19,6 @@ package org.apache.poi.ss.formula.functions;
 
 /**
  * Tests INDEX() as loaded from a test data spreadsheet.<p/>
- *
- * @author Josh Micich
- * @author Cedric Walter at innoveo.com
  */
 public final class TestIndexFunctionFromSpreadsheet  extends BaseTestFunctionsFromSpreadsheet {
 
@@ -29,4 +26,4 @@ public final class TestIndexFunctionFromSpreadsheet  extends BaseTestFunctionsFr
     protected String getFilename() {
         return "IndexFunctionTestCaseData.xls";
     }
-}
\ No newline at end of file
+}
index b777dca8a72d1eb94c7c6ae6680b05860482695f..3d39308c3b58b89a049b0ed55a50a83afe768fe7 100644 (file)
@@ -23,8 +23,6 @@ package org.apache.poi.ss.formula.functions;
  * Tests for bug fixes and specific/tricky behaviour can be found in the corresponding test class\r
  * (<tt>TestXxxx</tt>) of the target (<tt>Xxxx</tt>) implementor, where execution can be observed\r
  *  more easily.\r
- *\r
- * @author Cédric Walter\r
  */\r
 public final class TestIndirectFunctionFromSpreadsheet extends BaseTestFunctionsFromSpreadsheet {\r
 \r
index 09810a8dc734bde8e2f2e31c90c6763efe1f7c35..76386e9b6cb40a85a8c8b22b5543f2417e1c5d7a 100644 (file)
@@ -27,9 +27,6 @@ package org.apache.poi.ss.formula.functions;
  * Tests for bug fixes and specific/tricky behaviour can be found in the corresponding test class
  * (<tt>TestXxxx</tt>) of the target (<tt>Xxxx</tt>) implementor, where execution can be observed
  *  more easily.
- *
- * @author Josh Micich
- * @author Cedric Walter at innoveo.com
  */
 public final class TestLookupFunctionsFromSpreadsheet extends BaseTestFunctionsFromSpreadsheet {
 
index ee6e45c1fa594ca2f77cf5dafd3d4b620114a798..a2866d4d233c6eb0c8546004a4a9334fa613b3ef 100644 (file)
@@ -32,9 +32,6 @@ import org.apache.poi.ss.usermodel.CellValue;
 
 /**
  * Test cases for MATCH()
- *
- * @author Josh Micich
- * @author Cedric Walter at innoveo.com
  */
 public final class TestMatch extends TestCase {
        /** less than or equal to */
index 29aeec8d1e8c07857d004eba1510ca632dcee484..725946a9ed8301a48827bdd430d6103dede9096b 100644 (file)
@@ -25,8 +25,6 @@ package org.apache.poi.ss.formula.functions;
  * Tests for bug fixes and specific/tricky behaviour can be found in the corresponding test class\r
  * (<tt>TestXxxx</tt>) of the target (<tt>Xxxx</tt>) implementor, where execution can be observed\r
  *  more easily.\r
- *\r
- * @author Cédric Walter\r
  */\r
 public final class TestMatchFunctionsFromSpreadsheet extends BaseTestFunctionsFromSpreadsheet {\r
 \r
index 9c778d7e1321278f9d0c39aa44cdc1c7fa1248eb..fb18a95a6d703c5d1bc2a37911c95218f9622e3f 100644 (file)
@@ -26,9 +26,6 @@ import org.apache.poi.ss.formula.eval.ValueEval;
 
 /**
  * Tests for {@link Value}
- *
- * @author Josh Micich
- * @author Cédric Walter
  */
 public final class TestValue extends TestCase {