git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1516973 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2013-08-23 18:36:41 +00:00
parent 95fb311279
commit f04c20ce5d
50 changed files with 11 additions and 129 deletions

View File

@ -25,7 +25,6 @@ import org.apache.poi.hssf.record.Record;
* via the EventRecordFactory * via the EventRecordFactory
* *
* @see EventRecordFactory * @see EventRecordFactory
* @author Andrew C. Oliver acoliver@apache.org
*/ */
public interface ERFListener public interface ERFListener
{ {

View File

@ -29,8 +29,7 @@ import org.apache.poi.ss.formula.FormulaType;
import org.apache.poi.ss.usermodel.DataValidationConstraint; import org.apache.poi.ss.usermodel.DataValidationConstraint;
/** /**
* * Data Validation Constraint
* @author Josh Micich
*/ */
public class DVConstraint implements DataValidationConstraint { public class DVConstraint implements DataValidationConstraint {
/* package */ public static final class FormulaPair { /* package */ public static final class FormulaPair {

View File

@ -56,8 +56,6 @@ import java.text.AttributedCharacterIterator;
* height of the group can be calculated by using a convenience called * height of the group can be calculated by using a convenience called
* <code>HSSFClientAnchor.getAnchorHeightInPoints()</code>. * <code>HSSFClientAnchor.getAnchorHeightInPoints()</code>.
* </blockquote> * </blockquote>
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public class EscherGraphics public class EscherGraphics
extends Graphics extends Graphics

View File

@ -67,8 +67,6 @@ import java.util.Map;
* height of the group can be calculated by using a convenience called * height of the group can be calculated by using a convenience called
* <code>HSSFClientAnchor.getAnchorHeightInPoints()</code>. * <code>HSSFClientAnchor.getAnchorHeightInPoints()</code>.
* </blockquote> * </blockquote>
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public final class EscherGraphics2d extends Graphics2D { public final class EscherGraphics2d extends Graphics2D {
private EscherGraphics _escherGraphics; private EscherGraphics _escherGraphics;

View File

@ -24,8 +24,6 @@ import java.util.StringTokenizer;
/** /**
* Stores width and height details about a font. * Stores width and height details about a font.
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public class FontDetails public class FontDetails
{ {

View File

@ -26,8 +26,6 @@ import org.apache.poi.ddf.EscherRecord;
/** /**
* An anchor is what specifics the position of a shape within a client object * An anchor is what specifics the position of a shape within a client object
* or within another containing shape. * or within another containing shape.
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public abstract class HSSFAnchor { public abstract class HSSFAnchor {

View File

@ -20,8 +20,6 @@ import org.apache.poi.ss.usermodel.AutoFilter;
/** /**
* Represents autofiltering for the specified worksheet. * Represents autofiltering for the specified worksheet.
*
* @author Yegor Kozlov
*/ */
public final class HSSFAutoFilter implements AutoFilter { public final class HSSFAutoFilter implements AutoFilter {
private HSSFSheet _sheet; private HSSFSheet _sheet;
@ -29,4 +27,4 @@ public final class HSSFAutoFilter implements AutoFilter {
HSSFAutoFilter(HSSFSheet sheet){ HSSFAutoFilter(HSSFSheet sheet){
_sheet = sheet; _sheet = sheet;
} }
} }

View File

@ -23,9 +23,6 @@ import org.apache.poi.hssf.record.cf.BorderFormatting;
/** /**
* High level representation for Border Formatting component * High level representation for Border Formatting component
* of Conditional Formatting settings * of Conditional Formatting settings
*
* @author Dmitriy Kumshayev
*
*/ */
public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.BorderFormatting public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.BorderFormatting
{ {

View File

@ -58,11 +58,6 @@ import org.apache.poi.util.POILogFactory;
* Cells should have their number (0 based) before being added to a row. Only * Cells should have their number (0 based) before being added to a row. Only
* cells that have values should be added. * cells that have values should be added.
* <p> * <p>
*
* @author Andrew C. Oliver (acoliver at apache dot org)
* @author Dan Sherman (dsherman at isisph.com)
* @author Brian Sanders (kestrel at burdell dot org) Active Cell support
* @author Yegor Kozlov cell comments support
*/ */
public class HSSFCell implements Cell { public class HSSFCell implements Cell {
private static POILogger log = POILogFactory.getLogger(HSSFCell.class); private static POILogger log = POILogFactory.getLogger(HSSFCell.class);

View File

@ -29,8 +29,6 @@ import org.apache.poi.ss.usermodel.Font;
/** /**
* High level representation of the style of a cell in a sheet of a workbook. * High level representation of the style of a cell in a sheet of a workbook.
* *
* @author Andrew C. Oliver (acoliver at apache dot org)
* @author Jason Height (jheight at chariot dot net dot au)
* @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createCellStyle() * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createCellStyle()
* @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getCellStyleAt(short) * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getCellStyleAt(short)
* @see org.apache.poi.hssf.usermodel.HSSFCell#setCellStyle(HSSFCellStyle) * @see org.apache.poi.hssf.usermodel.HSSFCell#setCellStyle(HSSFCellStyle)

View File

@ -21,7 +21,7 @@ import org.apache.poi.ddf.*;
import org.apache.poi.hssf.record.*; import org.apache.poi.hssf.record.*;
/** /**
* @author Evgeniy Berlog *
*/ */
public class HSSFCombobox extends HSSFSimpleShape { public class HSSFCombobox extends HSSFSimpleShape {

View File

@ -22,8 +22,6 @@ import org.apache.poi.ss.usermodel.Comment;
/** /**
* Represents a cell comment - a sticky note associated with a cell. * Represents a cell comment - a sticky note associated with a cell.
*
* @author Yegor Kozlov
*/ */
public class HSSFComment extends HSSFTextbox implements Comment { public class HSSFComment extends HSSFTextbox implements Comment {

View File

@ -72,8 +72,6 @@ import org.apache.poi.ss.util.CellRangeAddress;
* // Apply Conditional Formatting rule defined above to the regions * // Apply Conditional Formatting rule defined above to the regions
* sheet.addConditionalFormatting(regions, rule); * sheet.addConditionalFormatting(regions, rule);
* </PRE> * </PRE>
*
* @author Dmitriy Kumshayev
*/ */
public final class HSSFConditionalFormatting implements ConditionalFormatting public final class HSSFConditionalFormatting implements ConditionalFormatting
{ {

View File

@ -31,8 +31,6 @@ import org.apache.poi.ss.usermodel.ConditionalFormattingRule;
* High level representation of Conditional Formatting Rule. * High level representation of Conditional Formatting Rule.
* It allows to specify formula based conditions for the Conditional Formatting * It allows to specify formula based conditions for the Conditional Formatting
* and the formatting settings such as font, border and pattern. * and the formatting settings such as font, border and pattern.
*
* @author Dmitriy Kumshayev
*/ */
public final class HSSFConditionalFormattingRule implements ConditionalFormattingRule public final class HSSFConditionalFormattingRule implements ConditionalFormattingRule
{ {

View File

@ -44,9 +44,6 @@ import org.apache.poi.ss.usermodel.DataFormat;
* <a href="http://office.microsoft.com/assistance/hfws.aspx?AssetID=HA010346351033&CTT=6&Origin=EC010272491033"> * <a href="http://office.microsoft.com/assistance/hfws.aspx?AssetID=HA010346351033&CTT=6&Origin=EC010272491033">
* Creating international number formats * Creating international number formats
* </a> for more details on these codes. * </a> for more details on these codes.
*
* @author Andrew C. Oliver (acoliver at apache dot org)
* @author Shawn M. Laubach (slaubach at apache dot org)
*/ */
public final class HSSFDataFormat implements DataFormat { public final class HSSFDataFormat implements DataFormat {
private static final String[] _builtinFormats = BuiltinFormats.getAll(); private static final String[] _builtinFormats = BuiltinFormats.getAll();

View File

@ -62,8 +62,6 @@ import org.apache.poi.ss.usermodel.DataFormatter;
* HSSFDataFormatter.setDefaultNumberFormat(Format)</code>. <b>Note:</b> the * HSSFDataFormatter.setDefaultNumberFormat(Format)</code>. <b>Note:</b> the
* default format will only be used when a Format cannot be created from the * default format will only be used when a Format cannot be created from the
* cell's data format string. * cell's data format string.
*
* @author James May (james dot may at fmr dot com)
*/ */
public final class HSSFDataFormatter extends DataFormatter { public final class HSSFDataFormatter extends DataFormatter {

View File

@ -25,9 +25,7 @@ import org.apache.poi.ss.usermodel.DataValidationConstraint.ValidationType;
import org.apache.poi.ss.util.CellRangeAddressList; import org.apache.poi.ss.util.CellRangeAddressList;
/** /**
*Utility class for creating data validation cells * Utility class for creating data validation cells
*
* @author Dragos Buleandra (dragos.buleandra@trade2b.ro)
*/ */
public final class HSSFDataValidation implements DataValidation { public final class HSSFDataValidation implements DataValidation {
private String _prompt_title; private String _prompt_title;

View File

@ -24,8 +24,7 @@ import org.apache.poi.ss.usermodel.DataValidationConstraint.ValidationType;
import org.apache.poi.ss.util.CellRangeAddressList; import org.apache.poi.ss.util.CellRangeAddressList;
/** /**
* @author <a href="rjankiraman@emptoris.com">Radhakrishnan J</a> * Helper for working with Data Validation
*
*/ */
public class HSSFDataValidationHelper implements DataValidationHelper { public class HSSFDataValidationHelper implements DataValidationHelper {
@SuppressWarnings("unused") @SuppressWarnings("unused")

View File

@ -30,15 +30,7 @@ import org.apache.poi.ss.usermodel.DateUtil;
/** /**
* Contains methods for dealing with Excel dates. * Contains methods for dealing with Excel dates.
*
* @author Michael Harhen
* @author Glen Stampoultzis (glens at apache.org)
* @author Dan Sherman (dsherman at isisph.com)
* @author Hack Kampbjorn (hak at 2mba.dk)
* @author Alex Jacoby (ajacoby at gmail.com)
* @author Pavel Krupets (pkrupets at palmtreebusiness dot com)
*/ */
public class HSSFDateUtil extends DateUtil { public class HSSFDateUtil extends DateUtil {
protected static int absoluteDay(Calendar cal, boolean use1904windowing) { protected static int absoluteDay(Calendar cal, boolean use1904windowing) {
return DateUtil.absoluteDay(cal, use1904windowing); return DateUtil.absoluteDay(cal, use1904windowing);

View File

@ -20,8 +20,6 @@ import org.apache.poi.ss.usermodel.ErrorConstants;
/** /**
* Contains raw Excel error codes (as defined in OOO's excelfileformat.pdf (2.5.6) * Contains raw Excel error codes (as defined in OOO's excelfileformat.pdf (2.5.6)
*
* @author Michael Harhen
*/ */
public final class HSSFErrorConstants extends ErrorConstants { public final class HSSFErrorConstants extends ErrorConstants {
} }

View File

@ -21,8 +21,6 @@ import org.apache.poi.ss.formula.EvaluationCell;
import org.apache.poi.ss.formula.EvaluationSheet; import org.apache.poi.ss.formula.EvaluationSheet;
/** /**
* HSSF wrapper for a cell under evaluation * HSSF wrapper for a cell under evaluation
*
* @author Josh Micich
*/ */
final class HSSFEvaluationCell implements EvaluationCell { final class HSSFEvaluationCell implements EvaluationCell {

View File

@ -22,8 +22,6 @@ import org.apache.poi.ss.formula.EvaluationSheet;
/** /**
* HSSF wrapper for a sheet under evaluation * HSSF wrapper for a sheet under evaluation
*
* @author Josh Micich
*/ */
final class HSSFEvaluationSheet implements EvaluationSheet { final class HSSFEvaluationSheet implements EvaluationSheet {
@ -47,4 +45,4 @@ final class HSSFEvaluationSheet implements EvaluationSheet {
} }
return new HSSFEvaluationCell(cell, this); return new HSSFEvaluationCell(cell, this);
} }
} }

View File

@ -39,8 +39,6 @@ import org.apache.poi.util.POILogger;
/** /**
* Internal POI use only * Internal POI use only
*
* @author Josh Micich
*/ */
public final class HSSFEvaluationWorkbook implements FormulaRenderingWorkbook, EvaluationWorkbook, FormulaParsingWorkbook { public final class HSSFEvaluationWorkbook implements FormulaRenderingWorkbook, EvaluationWorkbook, FormulaParsingWorkbook {
private static POILogger logger = POILogFactory.getLogger(HSSFEvaluationWorkbook.class); private static POILogger logger = POILogFactory.getLogger(HSSFEvaluationWorkbook.class);

View File

@ -23,9 +23,7 @@ import org.apache.poi.ss.usermodel.Font;
/** /**
* Represents a Font used in a workbook. * Represents a Font used in a workbook.
* *
*
* @author Andrew C. Oliver
* @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createFont() * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createFont()
* @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getFontAt(short) * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getFontAt(short)
* @see org.apache.poi.hssf.usermodel.HSSFCellStyle#setFont(HSSFFont) * @see org.apache.poi.hssf.usermodel.HSSFCellStyle#setFont(HSSFFont)

View File

@ -22,9 +22,6 @@ import org.apache.poi.hssf.record.cf.FontFormatting;
/** /**
* High level representation for Font Formatting component * High level representation for Font Formatting component
* of Conditional Formatting settings * of Conditional Formatting settings
*
* @author Dmitriy Kumshayev
*
*/ */
public final class HSSFFontFormatting implements org.apache.poi.ss.usermodel.FontFormatting public final class HSSFFontFormatting implements org.apache.poi.ss.usermodel.FontFormatting
{ {

View File

@ -30,8 +30,6 @@ import org.apache.poi.ss.usermodel.Footer;
* For special things (such as page numbers and date), one can use a the methods * For special things (such as page numbers and date), one can use a the methods
* that return the characters used to represent these. One can also change the * that return the characters used to represent these. One can also change the
* fonts by using similar methods. * fonts by using similar methods.
* <P>
* @author Shawn Laubach (slaubach at apache dot org)
*/ */
public final class HSSFFooter extends HeaderFooter implements Footer { public final class HSSFFooter extends HeaderFooter implements Footer {
private final PageSettingsBlock _psb; private final PageSettingsBlock _psb;

View File

@ -39,9 +39,6 @@ import org.apache.poi.ss.usermodel.Workbook;
* For performance reasons, this class keeps a cache of all previously calculated intermediate * For performance reasons, this class keeps a cache of all previously calculated intermediate
* cell values. Be sure to call {@link #clearAllCachedResultValues()} if any workbook cells are changed between * cell values. Be sure to call {@link #clearAllCachedResultValues()} if any workbook cells are changed between
* calls to evaluate~ methods on this class. * calls to evaluate~ methods on this class.
*
* @author Amol S. Deshmukh &lt; amolweb at ya hoo dot com &gt;
* @author Josh Micich
*/ */
public class HSSFFormulaEvaluator implements FormulaEvaluator { public class HSSFFormulaEvaluator implements FormulaEvaluator {

View File

@ -30,9 +30,6 @@ import org.apache.poi.ss.usermodel.Header;
* For special things (such as page numbers and date), one can use a the methods * For special things (such as page numbers and date), one can use a the methods
* that return the characters used to represent these. One can also change the * that return the characters used to represent these. One can also change the
* fonts by using similar methods. * fonts by using similar methods.
* <P>
*
* @author Shawn Laubach (slaubach at apache dot org)
*/ */
public final class HSSFHeader extends HeaderFooter implements Header { public final class HSSFHeader extends HeaderFooter implements Header {

View File

@ -21,8 +21,6 @@ import org.apache.poi.ss.usermodel.Hyperlink;
/** /**
* Represents an Excel hyperlink. * Represents an Excel hyperlink.
*
* @author Yegor Kozlov (yegor at apache dot org)
*/ */
public class HSSFHyperlink implements Hyperlink { public class HSSFHyperlink implements Hyperlink {

View File

@ -28,8 +28,6 @@ import org.apache.poi.ss.usermodel.Name;
/** /**
* High Level Representation of a 'defined name' which could be a 'built-in' name, * High Level Representation of a 'defined name' which could be a 'built-in' name,
* 'named range' or name of a user defined function. * 'named range' or name of a user defined function.
*
* @author Libin Roman (Vista Portal LDT. Developer)
*/ */
public final class HSSFName implements Name { public final class HSSFName implements Name {
private HSSFWorkbook _book; private HSSFWorkbook _book;

View File

@ -31,8 +31,6 @@ import org.apache.poi.util.HexDump;
* Represents binary object (i.e. OLE) data stored in the file. Eg. A GIF, JPEG etc... * Represents binary object (i.e. OLE) data stored in the file. Eg. A GIF, JPEG etc...
* <p/> * <p/>
* Right now, 13, july, 2012 can not be created from scratch * Right now, 13, july, 2012 can not be created from scratch
*
* @author Daniel Noll
*/ */
public final class HSSFObjectData extends HSSFPicture { public final class HSSFObjectData extends HSSFPicture {
/** /**

View File

@ -25,8 +25,6 @@ import org.apache.poi.hssf.util.HSSFColor;
* Internally, the XLS format refers to colors using an offset into the palette * Internally, the XLS format refers to colors using an offset into the palette
* record. Thus, the first color in the palette has the index 0x8, the second * record. Thus, the first color in the palette has the index 0x8, the second
* has the index 0x9, etc. through 0x40 * has the index 0x9, etc. through 0x40
*
* @author Brian Sanders (bsanders at risklabs dot com)
*/ */
public final class HSSFPalette { public final class HSSFPalette {
private PaletteRecord _palette; private PaletteRecord _palette;

View File

@ -35,8 +35,6 @@ import org.apache.poi.ss.usermodel.ClientAnchor;
/** /**
* The patriarch is the toplevel container for shapes in a sheet. It does * The patriarch is the toplevel container for shapes in a sheet. It does
* little other than act as a container for other shapes and groups. * little other than act as a container for other shapes and groups.
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public final class HSSFPatriarch implements HSSFShapeContainer, Drawing { public final class HSSFPatriarch implements HSSFShapeContainer, Drawing {
private static POILogger log = POILogFactory.getLogger(HSSFPatriarch.class); private static POILogger log = POILogFactory.getLogger(HSSFPatriarch.class);

View File

@ -22,9 +22,6 @@ import org.apache.poi.hssf.record.cf.PatternFormatting;
/** /**
* High level representation for Conditional Formatting settings * High level representation for Conditional Formatting settings
*
* @author Dmitriy Kumshayev
*
*/ */
public class HSSFPatternFormatting implements org.apache.poi.ss.usermodel.PatternFormatting public class HSSFPatternFormatting implements org.apache.poi.ss.usermodel.PatternFormatting
{ {

View File

@ -33,9 +33,6 @@ import org.apache.poi.hssf.model.InternalWorkbook;
/** /**
* Represents a escher picture. Eg. A GIF, JPEG etc... * Represents a escher picture. Eg. A GIF, JPEG etc...
*
* @author Glen Stampoultzis
* @author Yegor Kozlov (yegor at apache.org)
*/ */
public class HSSFPicture extends HSSFSimpleShape implements Picture { public class HSSFPicture extends HSSFSimpleShape implements Picture {
private static POILogger logger = POILogFactory.getLogger(HSSFPicture.class); private static POILogger logger = POILogFactory.getLogger(HSSFPicture.class);

View File

@ -26,8 +26,6 @@ import org.apache.poi.util.PngUtils;
/** /**
* Represents binary data stored in the file. Eg. A GIF, JPEG etc... * Represents binary data stored in the file. Eg. A GIF, JPEG etc...
*
* @author Daniel Noll
*/ */
public class HSSFPictureData implements PictureData public class HSSFPictureData implements PictureData
{ {

View File

@ -24,7 +24,7 @@ import org.apache.poi.util.POILogFactory;
import org.apache.poi.util.POILogger; import org.apache.poi.util.POILogger;
/** /**
* @author Glen Stampoultzis (glens at superlinksoftware.com) *
*/ */
public class HSSFPolygon extends HSSFSimpleShape { public class HSSFPolygon extends HSSFSimpleShape {
private static POILogger logger = POILogFactory.getLogger(HSSFPolygon.class); private static POILogger logger = POILogFactory.getLogger(HSSFPolygon.class);

View File

@ -35,8 +35,7 @@ import org.apache.poi.ss.usermodel.PrintSetup;
* public static final short ENVELOPE_DL_PAPERSIZE = 27;<br> * public static final short ENVELOPE_DL_PAPERSIZE = 27;<br>
* public static final short ENVELOPE_CS_PAPERSIZE = 28;<br> * public static final short ENVELOPE_CS_PAPERSIZE = 28;<br>
* public static final short ENVELOPE_MONARCH_PAPERSIZE = 37;<br> * public static final short ENVELOPE_MONARCH_PAPERSIZE = 37;<br>
* <P> */
* @author Shawn Laubach (slaubach at apache dot org) */
public class HSSFPrintSetup implements PrintSetup { public class HSSFPrintSetup implements PrintSetup {
PrintSetupRecord printSetupRecord; PrintSetupRecord printSetupRecord;
@ -351,4 +350,4 @@ public class HSSFPrintSetup implements PrintSetup {
public short getCopies() { public short getCopies() {
return printSetupRecord.getCopies(); return printSetupRecord.getCopies();
} }
} }

View File

@ -64,10 +64,6 @@ import org.apache.poi.ss.usermodel.RichTextString;
* *
* <a href="https://issues.apache.org/bugzilla/show_bug.cgi?id=47543"> * <a href="https://issues.apache.org/bugzilla/show_bug.cgi?id=47543">
* https://issues.apache.org/bugzilla/show_bug.cgi?id=47543</a> * https://issues.apache.org/bugzilla/show_bug.cgi?id=47543</a>
* <p>
*
* @author Glen Stampoultzis (glens at apache.org)
* @author Jason Height (jheight at apache.org)
*/ */
public final class HSSFRichTextString implements Comparable<HSSFRichTextString>, RichTextString { public final class HSSFRichTextString implements Comparable<HSSFRichTextString>, RichTextString {
/** Place holder for indicating that NO_FONT has been applied here */ /** Place holder for indicating that NO_FONT has been applied here */

View File

@ -33,9 +33,6 @@ import org.apache.poi.util.Configurator;
* High level representation of a row of a spreadsheet. * High level representation of a row of a spreadsheet.
* *
* Only rows that have cells should be added to a Sheet. * Only rows that have cells should be added to a Sheet.
*
* @author Andrew C. Oliver (acoliver at apache dot org)
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public final class HSSFRow implements Row { public final class HSSFRow implements Row {

View File

@ -27,8 +27,6 @@ import java.io.IOException;
/** /**
* An abstract shape. * An abstract shape.
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public abstract class HSSFShape { public abstract class HSSFShape {
public static final int LINEWIDTH_ONE_PT = 12700; public static final int LINEWIDTH_ONE_PT = 12700;

View File

@ -21,8 +21,6 @@ import java.util.List;
/** /**
* An interface that indicates whether a class can contain children. * An interface that indicates whether a class can contain children.
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public interface HSSFShapeContainer extends Iterable<HSSFShape> public interface HSSFShapeContainer extends Iterable<HSSFShape>
{ {

View File

@ -26,8 +26,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
/** /**
* @author Evgeniy Berlog * Factory class for producing Excel Shapes from Escher records
* date: 05.06.12
*/ */
public class HSSFShapeFactory { public class HSSFShapeFactory {

View File

@ -28,8 +28,6 @@ import java.util.Iterator;
/** /**
* A shape group may contain other shapes. It was no actual form on the * A shape group may contain other shapes. It was no actual form on the
* sheet. * sheet.
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public class HSSFShapeGroup extends HSSFShape implements HSSFShapeContainer { public class HSSFShapeGroup extends HSSFShape implements HSSFShapeContainer {
private final List<HSSFShape> shapes = new ArrayList<HSSFShape>(); private final List<HSSFShape> shapes = new ArrayList<HSSFShape>();

View File

@ -56,15 +56,6 @@ import org.apache.poi.util.POILogger;
/** /**
* High level representation of a worksheet. * High level representation of a worksheet.
*
* @author Andrew C. Oliver (acoliver at apache dot org)
* @author Glen Stampoultzis (glens at apache.org)
* @author Libin Roman (romal at vistaportal.com)
* @author Shawn Laubach (slaubach at apache dot org) (Just a little)
* @author Jean-Pierre Paris (jean-pierre.paris at m4x dot org) (Just a little, too)
* @author Yegor Kozlov (yegor at apache.org) (Autosizing columns)
* @author Josh Micich
* @author Petr Udalau(Petr.Udalau at exigenservices.com) - set/remove array formulas
*/ */
public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet { public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
private static final POILogger log = POILogFactory.getLogger(HSSFSheet.class); private static final POILogger log = POILogFactory.getLogger(HSSFSheet.class);

View File

@ -28,8 +28,6 @@ import org.apache.poi.ss.SpreadsheetVersion;
/** /**
* The 'Conditional Formatting' facet of <tt>HSSFSheet</tt> * The 'Conditional Formatting' facet of <tt>HSSFSheet</tt>
*
* @author Dmitriy Kumshayev
*/ */
public final class HSSFSheetConditionalFormatting implements SheetConditionalFormatting { public final class HSSFSheetConditionalFormatting implements SheetConditionalFormatting {

View File

@ -23,8 +23,6 @@ import org.apache.poi.ss.usermodel.RichTextString;
/** /**
* Represents a simple shape such as a line, rectangle or oval. * Represents a simple shape such as a line, rectangle or oval.
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public class HSSFSimpleShape extends HSSFShape public class HSSFSimpleShape extends HSSFShape
{ {

View File

@ -22,8 +22,6 @@ import org.apache.poi.hssf.record.*;
/** /**
* A textbox is a shape that may hold a rich text string. * A textbox is a shape that may hold a rich text string.
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
public class HSSFTextbox extends HSSFSimpleShape { public class HSSFTextbox extends HSSFSimpleShape {
public final static short OBJECT_TYPE_TEXT = 6; public final static short OBJECT_TYPE_TEXT = 6;

View File

@ -68,9 +68,6 @@ import org.apache.poi.util.POILogger;
* *
* @see org.apache.poi.hssf.model.InternalWorkbook * @see org.apache.poi.hssf.model.InternalWorkbook
* @see org.apache.poi.hssf.usermodel.HSSFSheet * @see org.apache.poi.hssf.usermodel.HSSFSheet
* @author Andrew C. Oliver (acoliver at apache dot org)
* @author Glen Stampoultzis (glens at apache.org)
* @author Shawn Laubach (slaubach at apache dot org)
*/ */
public final class HSSFWorkbook extends POIDocument implements org.apache.poi.ss.usermodel.Workbook { public final class HSSFWorkbook extends POIDocument implements org.apache.poi.ss.usermodel.Workbook {
private static final Pattern COMMA_PATTERN = Pattern.compile(","); private static final Pattern COMMA_PATTERN = Pattern.compile(",");

View File

@ -33,8 +33,6 @@ import java.util.Properties;
* resource from the POI jar file (or classpath) and should be contained in path * resource from the POI jar file (or classpath) and should be contained in path
* "/font_metrics.properties". The font widths are for a 10 point version of the * "/font_metrics.properties". The font widths are for a 10 point version of the
* font. Use a multiplier for other sizes. * font. Use a multiplier for other sizes.
*
* @author Glen Stampoultzis (glens at apache.org)
*/ */
final class StaticFontMetrics { final class StaticFontMetrics {
/** The font metrics property file we're using */ /** The font metrics property file we're using */