From 3ceb93b23df0a1633caca8a829b022e60a5e38ff Mon Sep 17 00:00:00 2001 From: Andreas Beeker Date: Thu, 13 Feb 2014 23:34:11 +0000 Subject: [PATCH] FindBugs fix - fixed "Field isn't final but should be" - see http://findbugs.sourceforge.net/bugDescriptions.html#MS_SHOULD_BE_FINAL git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1568145 13f79535-47bb-0310-9956-ffa450edef68 --- build.xml | 2 +- src/java/org/apache/poi/hpsf/Thumbnail.java | 22 +++++++-------- .../org/apache/poi/hpsf/VariantSupport.java | 2 +- .../apache/poi/hssf/record/FtCfSubRecord.java | 6 ++--- .../poi/hssf/record/FtPioGrbitSubRecord.java | 18 ++++++------- .../poi/hssf/record/LbsDataSubRecord.java | 13 +++++---- .../extractor/CommandLineTextExtractor.java | 2 +- .../poi/xslf/usermodel/XSLFRelation.java | 10 +++---- .../poi/xssf/usermodel/XSSFRelation.java | 4 +-- .../poi/xwpf/usermodel/XWPFRelation.java | 2 +- src/resources/devtools/findbugs-filters.xml | 6 ++--- .../org/apache/poi/hslf/dev/PPTXMLDump.java | 17 +++++++++--- .../org/apache/poi/hslf/model/AutoShapes.java | 12 ++++++--- .../apache/poi/hslf/model/ShapeFactory.java | 26 +++++++++++++----- .../apache/poi/hslf/model/ShapePainter.java | 13 +++++---- .../org/apache/poi/hslf/model/ShapeTypes.java | 8 +++--- .../textproperties/CharFlagsTextProp.java | 2 +- .../ParagraphFlagsTextProp.java | 2 +- .../org/apache/poi/hslf/record/Record.java | 2 +- .../apache/poi/hslf/record/RecordTypes.java | 6 ++--- .../poi/hslf/record/SSSlideInfoAtom.java | 16 +++++------ .../poi/hslf/record/StyleTextPropAtom.java | 4 +-- .../poi/hslf/usermodel/PictureData.java | 27 ++++++++++++------- .../apache/poi/hwpf/model/PropertyNode.java | 4 +-- 24 files changed, 133 insertions(+), 93 deletions(-) diff --git a/build.xml b/build.xml index 4500454aef..914eecc020 100644 --- a/build.xml +++ b/build.xml @@ -1405,7 +1405,7 @@ under the License. + excludeFilter="src/resources/devtools/findbugs-filters.xml"> diff --git a/src/java/org/apache/poi/hpsf/Thumbnail.java b/src/java/org/apache/poi/hpsf/Thumbnail.java index c39abe0a9e..8d8ba7d209 100644 --- a/src/java/org/apache/poi/hpsf/Thumbnail.java +++ b/src/java/org/apache/poi/hpsf/Thumbnail.java @@ -32,7 +32,7 @@ public final class Thumbnail { * byte[] returned by {@link * SummaryInformation#getThumbnail()}

*/ - public static int OFFSET_CFTAG = 4; + public static final int OFFSET_CFTAG = 4; /** *

Offset in bytes where the Clipboard Format starts in the @@ -42,7 +42,7 @@ public final class Thumbnail { *

This is only valid if the Clipboard Format Tag is {@link * #CFTAG_WINDOWS}

*/ - public static int OFFSET_CF = 8; + public static final int OFFSET_CF = 8; /** *

Offset in bytes where the Windows Metafile (WMF) image data @@ -60,7 +60,7 @@ public final class Thumbnail { * image. It can be saved to disk with a .wmf file * type and read using a WMF-capable image viewer.

*/ - public static int OFFSET_WMFDATA = 20; + public static final int OFFSET_WMFDATA = 20; /** *

Clipboard Format Tag - Windows clipboard format

@@ -68,7 +68,7 @@ public final class Thumbnail { *

A DWORD indicating a built-in Windows clipboard * format value

*/ - public static int CFTAG_WINDOWS = -1; + public static final int CFTAG_WINDOWS = -1; /** *

Clipboard Format Tag - Macintosh clipboard format

@@ -76,7 +76,7 @@ public final class Thumbnail { *

A DWORD indicating a Macintosh clipboard format * value

*/ - public static int CFTAG_MACINTOSH = -2; + public static final int CFTAG_MACINTOSH = -2; /** *

Clipboard Format Tag - Format ID

@@ -84,7 +84,7 @@ public final class Thumbnail { *

A GUID containing a format identifier (FMTID). This is * rarely used.

*/ - public static int CFTAG_FMTID = -3; + public static final int CFTAG_FMTID = -3; /** *

Clipboard Format Tag - No Data

@@ -92,7 +92,7 @@ public final class Thumbnail { *

A DWORD indicating No data. This is rarely * used.

*/ - public static int CFTAG_NODATA = 0; + public static final int CFTAG_NODATA = 0; /** *

Clipboard Format - Windows metafile format. This is the @@ -102,17 +102,17 @@ public final class Thumbnail { * regular WMF images. The clipboard version of this format has an * extra clipboard-specific header.

*/ - public static int CF_METAFILEPICT = 3; + public static final int CF_METAFILEPICT = 3; /** *

Clipboard Format - Device Independent Bitmap

*/ - public static int CF_DIB = 8; + public static final int CF_DIB = 8; /** *

Clipboard Format - Enhanced Windows metafile format

*/ - public static int CF_ENHMETAFILE = 14; + public static final int CF_ENHMETAFILE = 14; /** *

Clipboard Format - Bitmap

@@ -121,7 +121,7 @@ public final class Thumbnail { * href="msdn.microsoft.com/library/en-us/dnw98bk/html/clipboardoperations.asp * target="_blank">msdn.microsoft.com/library/en-us/dnw98bk/html/clipboardoperations.asp.

*/ - public static int CF_BITMAP = 2; + public static final int CF_BITMAP = 2; /** *

A byte[] to hold a thumbnail image in ({@link diff --git a/src/java/org/apache/poi/hpsf/VariantSupport.java b/src/java/org/apache/poi/hpsf/VariantSupport.java index 44d4ad76cb..fe327b3d99 100644 --- a/src/java/org/apache/poi/hpsf/VariantSupport.java +++ b/src/java/org/apache/poi/hpsf/VariantSupport.java @@ -49,7 +49,7 @@ import org.apache.poi.util.POILogger; */ public class VariantSupport extends Variant { - private static POILogger logger = POILogFactory.getLogger(VariantSupport.class); + private static final POILogger logger = POILogFactory.getLogger(VariantSupport.class); private static boolean logUnsupportedTypes = false; /** diff --git a/src/java/org/apache/poi/hssf/record/FtCfSubRecord.java b/src/java/org/apache/poi/hssf/record/FtCfSubRecord.java index 95438334e1..1c85e9550f 100644 --- a/src/java/org/apache/poi/hssf/record/FtCfSubRecord.java +++ b/src/java/org/apache/poi/hssf/record/FtCfSubRecord.java @@ -32,18 +32,18 @@ public final class FtCfSubRecord extends SubRecord { /** * Specifies the format of the picture is an enhanced metafile. */ - public static short METAFILE_BIT = (short)0x0002; + public static final short METAFILE_BIT = (short)0x0002; /** * Specifies the format of the picture is a bitmap. */ - public static short BITMAP_BIT = (short)0x0009; + public static final short BITMAP_BIT = (short)0x0009; /** * Specifies the picture is in an unspecified format that is * neither and enhanced metafile nor a bitmap. */ - public static short UNSPECIFIED_BIT = (short)0xFFFF; + public static final short UNSPECIFIED_BIT = (short)0xFFFF; private short flags = 0; diff --git a/src/java/org/apache/poi/hssf/record/FtPioGrbitSubRecord.java b/src/java/org/apache/poi/hssf/record/FtPioGrbitSubRecord.java index 8562a05352..068d17a24a 100644 --- a/src/java/org/apache/poi/hssf/record/FtPioGrbitSubRecord.java +++ b/src/java/org/apache/poi/hssf/record/FtPioGrbitSubRecord.java @@ -33,53 +33,53 @@ public final class FtPioGrbitSubRecord extends SubRecord { * A bit that specifies whether the picture's aspect ratio is preserved when rendered in * different views (Normal view, Page Break Preview view, Page Layout view and printing). */ - public static int AUTO_PICT_BIT = 1 << 0; + public static final int AUTO_PICT_BIT = 1 << 0; /** * A bit that specifies whether the pictFmla field of the Obj record that contains * this FtPioGrbit specifies a DDE reference. */ - public static int DDE_BIT = 1 << 1; + public static final int DDE_BIT = 1 << 1; /** * A bit that specifies whether this object is expected to be updated on print to * reflect the values in the cell associated with the object. */ - public static int PRINT_CALC_BIT = 1 << 2; + public static final int PRINT_CALC_BIT = 1 << 2; /** * A bit that specifies whether the picture is displayed as an icon. */ - public static int ICON_BIT = 1 << 3; + public static final int ICON_BIT = 1 << 3; /** * A bit that specifies whether this object is an ActiveX control. * It MUST NOT be the case that both fCtl and fDde are equal to 1. */ - public static int CTL_BIT = 1 << 4; + public static final int CTL_BIT = 1 << 4; /** * A bit that specifies whether the object data are stored in an * embedding storage (= 0) or in the controls stream (ctls) (= 1). */ - public static int PRSTM_BIT = 1 << 5; + public static final int PRSTM_BIT = 1 << 5; /** * A bit that specifies whether this is a camera picture. */ - public static int CAMERA_BIT = 1 << 7; + public static final int CAMERA_BIT = 1 << 7; /** * A bit that specifies whether this picture's size has been explicitly set. * 0 = picture size has been explicitly set, 1 = has not been set */ - public static int DEFAULT_SIZE_BIT = 1 << 8; + public static final int DEFAULT_SIZE_BIT = 1 << 8; /** * A bit that specifies whether the OLE server for the object is called * to load the object's data automatically when the parent workbook is opened. */ - public static int AUTO_LOAD_BIT = 1 << 9; + public static final int AUTO_LOAD_BIT = 1 << 9; private short flags = 0; diff --git a/src/java/org/apache/poi/hssf/record/LbsDataSubRecord.java b/src/java/org/apache/poi/hssf/record/LbsDataSubRecord.java index c6255e7d3f..93a0430eb5 100644 --- a/src/java/org/apache/poi/hssf/record/LbsDataSubRecord.java +++ b/src/java/org/apache/poi/hssf/record/LbsDataSubRecord.java @@ -16,8 +16,11 @@ ==================================================================== */ package org.apache.poi.hssf.record; -import org.apache.poi.ss.formula.ptg.*; -import org.apache.poi.util.*; +import org.apache.poi.ss.formula.ptg.Ptg; +import org.apache.poi.util.HexDump; +import org.apache.poi.util.LittleEndianInput; +import org.apache.poi.util.LittleEndianOutput; +import org.apache.poi.util.StringUtil; /** * This structure specifies the properties of a list or drop-down list embedded object in a sheet. @@ -298,15 +301,15 @@ public class LbsDataSubRecord extends SubRecord { /** * Combo dropdown control */ - public static int STYLE_COMBO_DROPDOWN = 0; + public static final int STYLE_COMBO_DROPDOWN = 0; /** * Combo Edit dropdown control */ - public static int STYLE_COMBO_EDIT_DROPDOWN = 1; + public static final int STYLE_COMBO_EDIT_DROPDOWN = 1; /** * Simple dropdown control (just the dropdown button) */ - public static int STYLE_COMBO_SIMPLE_DROPDOWN = 2; + public static final int STYLE_COMBO_SIMPLE_DROPDOWN = 2; /** * An unsigned integer that specifies the style of this dropdown. diff --git a/src/ooxml/java/org/apache/poi/extractor/CommandLineTextExtractor.java b/src/ooxml/java/org/apache/poi/extractor/CommandLineTextExtractor.java index 76cb44d4fb..8f9ea7599e 100644 --- a/src/ooxml/java/org/apache/poi/extractor/CommandLineTextExtractor.java +++ b/src/ooxml/java/org/apache/poi/extractor/CommandLineTextExtractor.java @@ -25,7 +25,7 @@ import org.apache.poi.POITextExtractor; * for when debugging. */ public class CommandLineTextExtractor { - public static String DIVIDER = "======================="; + public static final String DIVIDER = "======================="; public static void main(String[] args) throws Exception { if(args.length < 1) { diff --git a/src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFRelation.java b/src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFRelation.java index 046e71e6a5..82e073167f 100644 --- a/src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFRelation.java +++ b/src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFRelation.java @@ -16,24 +16,24 @@ ==================================================================== */ package org.apache.poi.xslf.usermodel; +import java.util.HashMap; +import java.util.Map; + import org.apache.poi.POIXMLDocumentPart; import org.apache.poi.POIXMLRelation; import org.apache.poi.util.Beta; import org.apache.poi.util.POILogFactory; import org.apache.poi.util.POILogger; -import java.util.HashMap; -import java.util.Map; - @Beta public class XSLFRelation extends POIXMLRelation { - private static POILogger log = POILogFactory.getLogger(XSLFRelation.class); + private static final POILogger log = POILogFactory.getLogger(XSLFRelation.class); /** * A map to lookup POIXMLRelation by its relation type */ - protected static Map _table = new HashMap(); + protected static final Map _table = new HashMap(); public static final XSLFRelation MAIN = new XSLFRelation( "application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml", diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRelation.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRelation.java index bdb1ea818b..037c41356f 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRelation.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRelation.java @@ -47,12 +47,12 @@ import org.apache.poi.xssf.model.ThemesTable; */ public final class XSSFRelation extends POIXMLRelation { - private static POILogger log = POILogFactory.getLogger(XSSFRelation.class); + private static final POILogger log = POILogFactory.getLogger(XSSFRelation.class); /** * A map to lookup POIXMLRelation by its relation type */ - protected static Map _table = new HashMap(); + protected static final Map _table = new HashMap(); public static final XSSFRelation WORKBOOK = new XSSFRelation( diff --git a/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRelation.java b/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRelation.java index 1ff2bd8943..e20052b68d 100644 --- a/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRelation.java +++ b/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRelation.java @@ -31,7 +31,7 @@ public final class XWPFRelation extends POIXMLRelation { /** * A map to lookup POIXMLRelation by its relation type */ - protected static Map _table = new HashMap(); + protected static final Map _table = new HashMap(); public static final XWPFRelation DOCUMENT = new XWPFRelation( diff --git a/src/resources/devtools/findbugs-filters.xml b/src/resources/devtools/findbugs-filters.xml index 4b47561d69..9ec102bfd9 100644 --- a/src/resources/devtools/findbugs-filters.xml +++ b/src/resources/devtools/findbugs-filters.xml @@ -18,7 +18,7 @@ ==================================================================== --> - - - + + + \ No newline at end of file diff --git a/src/scratchpad/src/org/apache/poi/hslf/dev/PPTXMLDump.java b/src/scratchpad/src/org/apache/poi/hslf/dev/PPTXMLDump.java index 4b2c9b913b..0b57552619 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/dev/PPTXMLDump.java +++ b/src/scratchpad/src/org/apache/poi/hslf/dev/PPTXMLDump.java @@ -17,10 +17,19 @@ package org.apache.poi.hslf.dev; -import org.apache.poi.util.LittleEndian; +import java.io.File; +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.io.FileWriter; +import java.io.IOException; +import java.io.StringWriter; +import java.io.Writer; + import org.apache.poi.hslf.record.RecordTypes; -import org.apache.poi.poifs.filesystem.*; -import java.io.*; +import org.apache.poi.poifs.filesystem.DocumentEntry; +import org.apache.poi.poifs.filesystem.DocumentInputStream; +import org.apache.poi.poifs.filesystem.POIFSFileSystem; +import org.apache.poi.util.LittleEndian; /** * Utility class which dumps raw contents of a ppt file into XML format @@ -33,7 +42,7 @@ public final class PPTXMLDump { public static final int PICT_HEADER_SIZE = 25; //size of the picture header public final static String PPDOC_ENTRY = "PowerPoint Document"; public final static String PICTURES_ENTRY = "Pictures"; - public static String CR = System.getProperty("line.separator"); + public final static String CR = System.getProperty("line.separator"); protected Writer out; protected byte[] docstream; diff --git a/src/scratchpad/src/org/apache/poi/hslf/model/AutoShapes.java b/src/scratchpad/src/org/apache/poi/hslf/model/AutoShapes.java index bc1cc1293f..02b20fbe2a 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/model/AutoShapes.java +++ b/src/scratchpad/src/org/apache/poi/hslf/model/AutoShapes.java @@ -17,9 +17,15 @@ package org.apache.poi.hslf.model; -import org.apache.poi.ddf.EscherProperties; +import java.awt.geom.AffineTransform; +import java.awt.geom.Arc2D; +import java.awt.geom.Ellipse2D; +import java.awt.geom.GeneralPath; +import java.awt.geom.Line2D; +import java.awt.geom.Rectangle2D; +import java.awt.geom.RoundRectangle2D; -import java.awt.geom.*; +import org.apache.poi.ddf.EscherProperties; /** * Stores definition of auto-shapes. @@ -30,7 +36,7 @@ import java.awt.geom.*; * @author Yegor Kozlov */ public final class AutoShapes { - protected static ShapeOutline[] shapes; + protected static final ShapeOutline[] shapes; /** diff --git a/src/scratchpad/src/org/apache/poi/hslf/model/ShapeFactory.java b/src/scratchpad/src/org/apache/poi/hslf/model/ShapeFactory.java index 464c842348..215835d5be 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/model/ShapeFactory.java +++ b/src/scratchpad/src/org/apache/poi/hslf/model/ShapeFactory.java @@ -17,13 +17,25 @@ package org.apache.poi.hslf.model; -import org.apache.poi.ddf.*; -import org.apache.poi.util.POILogger; -import org.apache.poi.util.POILogFactory; -import org.apache.poi.hslf.record.*; - -import java.util.List; import java.util.Iterator; +import java.util.List; + +import org.apache.poi.ddf.EscherClientDataRecord; +import org.apache.poi.ddf.EscherContainerRecord; +import org.apache.poi.ddf.EscherOptRecord; +import org.apache.poi.ddf.EscherProperties; +import org.apache.poi.ddf.EscherProperty; +import org.apache.poi.ddf.EscherPropertyFactory; +import org.apache.poi.ddf.EscherRecord; +import org.apache.poi.ddf.EscherSimpleProperty; +import org.apache.poi.ddf.EscherSpRecord; +import org.apache.poi.hslf.record.InteractiveInfo; +import org.apache.poi.hslf.record.InteractiveInfoAtom; +import org.apache.poi.hslf.record.OEShapeAtom; +import org.apache.poi.hslf.record.Record; +import org.apache.poi.hslf.record.RecordTypes; +import org.apache.poi.util.POILogFactory; +import org.apache.poi.util.POILogger; /** * Create a Shape object depending on its type @@ -32,7 +44,7 @@ import java.util.Iterator; */ public final class ShapeFactory { // For logging - protected static POILogger logger = POILogFactory.getLogger(ShapeFactory.class); + protected static final POILogger logger = POILogFactory.getLogger(ShapeFactory.class); /** * Create a new shape from the data provided. diff --git a/src/scratchpad/src/org/apache/poi/hslf/model/ShapePainter.java b/src/scratchpad/src/org/apache/poi/hslf/model/ShapePainter.java index 09474a0b8c..c9954a8dee 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/model/ShapePainter.java +++ b/src/scratchpad/src/org/apache/poi/hslf/model/ShapePainter.java @@ -18,19 +18,22 @@ package org.apache.poi.hslf.model; -import org.apache.poi.util.POILogger; -import org.apache.poi.util.POILogFactory; - -import java.awt.*; +import java.awt.BasicStroke; +import java.awt.Color; +import java.awt.Graphics2D; +import java.awt.Stroke; import java.awt.geom.Rectangle2D; +import org.apache.poi.util.POILogFactory; +import org.apache.poi.util.POILogger; + /** * Paint a shape into java.awt.Graphics2D * * @author Yegor Kozlov */ public final class ShapePainter { - protected static POILogger logger = POILogFactory.getLogger(ShapePainter.class); + protected static final POILogger logger = POILogFactory.getLogger(ShapePainter.class); public static void paint(SimpleShape shape, Graphics2D graphics){ Rectangle2D anchor = shape.getLogicalAnchor2D(); diff --git a/src/scratchpad/src/org/apache/poi/hslf/model/ShapeTypes.java b/src/scratchpad/src/org/apache/poi/hslf/model/ShapeTypes.java index 7b5a17decc..4840c93130 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/model/ShapeTypes.java +++ b/src/scratchpad/src/org/apache/poi/hslf/model/ShapeTypes.java @@ -17,10 +17,10 @@ package org.apache.poi.hslf.model; -import org.apache.poi.hslf.exceptions.HSLFException; - -import java.util.HashMap; import java.lang.reflect.Field; +import java.util.HashMap; + +import org.apache.poi.hslf.exceptions.HSLFException; /** * Contains all known shape types in PowerPoint @@ -38,7 +38,7 @@ public final class ShapeTypes implements org.apache.poi.sl.usermodel.ShapeTypes return name; } - public static HashMap types; + public static final HashMap types; static { types = new HashMap(); try { diff --git a/src/scratchpad/src/org/apache/poi/hslf/model/textproperties/CharFlagsTextProp.java b/src/scratchpad/src/org/apache/poi/hslf/model/textproperties/CharFlagsTextProp.java index f038781534..1afd6b1810 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/model/textproperties/CharFlagsTextProp.java +++ b/src/scratchpad/src/org/apache/poi/hslf/model/textproperties/CharFlagsTextProp.java @@ -32,7 +32,7 @@ public class CharFlagsTextProp extends BitMaskTextProp { public static final int ENABLE_NUMBERING_1_IDX = 11; public static final int ENABLE_NUMBERING_2_IDX = 12; - public static String NAME = "char_flags"; + public static final String NAME = "char_flags"; public CharFlagsTextProp() { super(2,0xffff, NAME, new String[] { "bold", // 0x0001 A bit that specifies whether the characters are bold. diff --git a/src/scratchpad/src/org/apache/poi/hslf/model/textproperties/ParagraphFlagsTextProp.java b/src/scratchpad/src/org/apache/poi/hslf/model/textproperties/ParagraphFlagsTextProp.java index f1bce9593a..c0501d2f90 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/model/textproperties/ParagraphFlagsTextProp.java +++ b/src/scratchpad/src/org/apache/poi/hslf/model/textproperties/ParagraphFlagsTextProp.java @@ -28,7 +28,7 @@ public final class ParagraphFlagsTextProp extends BitMaskTextProp { public static final int BULLET_HARDCOLOR_IDX = 2; public static final int BULLET_HARDSIZE_IDX = 4; - public static String NAME = "paragraph_flags"; + public static final String NAME = "paragraph_flags"; public ParagraphFlagsTextProp() { super(2, 0xF, NAME, new String[] { diff --git a/src/scratchpad/src/org/apache/poi/hslf/record/Record.java b/src/scratchpad/src/org/apache/poi/hslf/record/Record.java index 5530e2454d..eb6944ac69 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/record/Record.java +++ b/src/scratchpad/src/org/apache/poi/hslf/record/Record.java @@ -38,7 +38,7 @@ import org.apache.poi.util.POILogger; public abstract class Record { // For logging - protected static POILogger logger = POILogFactory.getLogger(Record.class); + protected static final POILogger logger = POILogFactory.getLogger(Record.class); /** * Is this record type an Atom record (only has data), diff --git a/src/scratchpad/src/org/apache/poi/hslf/record/RecordTypes.java b/src/scratchpad/src/org/apache/poi/hslf/record/RecordTypes.java index 2b2dc4bddf..51b8f26a89 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/record/RecordTypes.java +++ b/src/scratchpad/src/org/apache/poi/hslf/record/RecordTypes.java @@ -17,8 +17,8 @@ package org.apache.poi.hslf.record; -import java.util.HashMap; import java.lang.reflect.Field; +import java.util.HashMap; /** * List of all known record types in a PowerPoint document, and the @@ -31,8 +31,8 @@ import java.lang.reflect.Field; * @author Nick Burch */ public final class RecordTypes { - public static HashMap typeToName; - public static HashMap> typeToClass; + public static final HashMap typeToName; + public static final HashMap> typeToClass; public static final Type Unknown = new Type(0,null); public static final Type Document = new Type(1000,Document.class); diff --git a/src/scratchpad/src/org/apache/poi/hslf/record/SSSlideInfoAtom.java b/src/scratchpad/src/org/apache/poi/hslf/record/SSSlideInfoAtom.java index 0fbc7ff75f..931f5dc70a 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/record/SSSlideInfoAtom.java +++ b/src/scratchpad/src/org/apache/poi/hslf/record/SSSlideInfoAtom.java @@ -64,42 +64,42 @@ public class SSSlideInfoAtom extends RecordAtom { * A bit that specifies whether the presentation slide can be * manually advanced by the user during the slide show. */ - public static int MANUAL_ADVANCE_BIT = 1 << 0; + public static final int MANUAL_ADVANCE_BIT = 1 << 0; /** * A bit that specifies whether the corresponding slide is * hidden and is not displayed during the slide show. */ - public static int HIDDEN_BIT = 1 << 2; + public static final int HIDDEN_BIT = 1 << 2; /** * A bit that specifies whether to play the sound specified by soundIfRef. */ - public static int SOUND_BIT = 1 << 4; + public static final int SOUND_BIT = 1 << 4; /** * A bit that specifies whether the sound specified by soundIdRef is * looped continuously when playing until the next sound plays. */ - public static int LOOP_SOUND_BIT = 1 << 6; + public static final int LOOP_SOUND_BIT = 1 << 6; /** * A bit that specifies whether to stop any currently playing * sound when the transition starts. */ - public static int STOP_SOUND_BIT = 1 << 8; + public static final int STOP_SOUND_BIT = 1 << 8; /** * A bit that specifies whether the slide will automatically * advance after slideTime milliseconds during the slide show. */ - public static int AUTO_ADVANCE_BIT = 1 << 10; + public static final int AUTO_ADVANCE_BIT = 1 << 10; /** * A bit that specifies whether to display the cursor during * the slide show. */ - public static int CURSOR_VISIBLE_BIT = 1 << 12; + public static final int CURSOR_VISIBLE_BIT = 1 << 12; // public static int RESERVED1_BIT = 1 << 1; // public static int RESERVED2_BIT = 1 << 3; @@ -109,7 +109,7 @@ public class SSSlideInfoAtom extends RecordAtom { // public static int RESERVED6_BIT = 1 << 11; // public static int RESERVED7_BIT = 1 << 13 | 1 << 14 | 1 << 15; - private static long _type = RecordTypes.SSSlideInfoAtom.typeID; + private static final long _type = RecordTypes.SSSlideInfoAtom.typeID; private byte[] _header; diff --git a/src/scratchpad/src/org/apache/poi/hslf/record/StyleTextPropAtom.java b/src/scratchpad/src/org/apache/poi/hslf/record/StyleTextPropAtom.java index 953b0a25a1..5730021c90 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/record/StyleTextPropAtom.java +++ b/src/scratchpad/src/org/apache/poi/hslf/record/StyleTextPropAtom.java @@ -118,7 +118,7 @@ public final class StyleTextPropAtom extends RecordAtom } /** All the different kinds of paragraph properties we might handle */ - public static TextProp[] paragraphTextPropTypes = new TextProp[] { + public static final TextProp[] paragraphTextPropTypes = new TextProp[] { new TextProp(0, 0x1, "hasBullet"), new TextProp(0, 0x2, "hasBulletFont"), new TextProp(0, 0x4, "hasBulletColor"), @@ -141,7 +141,7 @@ public final class StyleTextPropAtom extends RecordAtom new TextProp(2, 0x200000, "textDirection") }; /** All the different kinds of character properties we might handle */ - public static TextProp[] characterTextPropTypes = new TextProp[] { + public static final TextProp[] characterTextPropTypes = new TextProp[] { new TextProp(0, 0x1, "bold"), new TextProp(0, 0x2, "italic"), new TextProp(0, 0x4, "underline"), diff --git a/src/scratchpad/src/org/apache/poi/hslf/usermodel/PictureData.java b/src/scratchpad/src/org/apache/poi/hslf/usermodel/PictureData.java index 635e0ea265..82e3c2060a 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/usermodel/PictureData.java +++ b/src/scratchpad/src/org/apache/poi/hslf/usermodel/PictureData.java @@ -17,18 +17,25 @@ package org.apache.poi.hslf.usermodel; -import org.apache.poi.util.LittleEndian; -import org.apache.poi.util.POILogger; -import org.apache.poi.util.POILogFactory; -import org.apache.poi.hslf.model.Picture; -import org.apache.poi.hslf.blip.*; -import org.apache.poi.hslf.exceptions.HSLFException; - -import java.io.OutputStream; +import java.awt.Graphics2D; import java.io.IOException; +import java.io.OutputStream; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; -import java.awt.*; + +import org.apache.poi.hslf.blip.BitmapPainter; +import org.apache.poi.hslf.blip.DIB; +import org.apache.poi.hslf.blip.EMF; +import org.apache.poi.hslf.blip.ImagePainter; +import org.apache.poi.hslf.blip.JPEG; +import org.apache.poi.hslf.blip.PICT; +import org.apache.poi.hslf.blip.PNG; +import org.apache.poi.hslf.blip.WMF; +import org.apache.poi.hslf.exceptions.HSLFException; +import org.apache.poi.hslf.model.Picture; +import org.apache.poi.util.LittleEndian; +import org.apache.poi.util.POILogFactory; +import org.apache.poi.util.POILogger; /** * A class that represents image data contained in a slide show. @@ -77,7 +84,7 @@ public abstract class PictureData { */ protected abstract int getSignature(); - protected static ImagePainter[] painters = new ImagePainter[8]; + protected static final ImagePainter[] painters = new ImagePainter[8]; static { PictureData.setImagePainter(Picture.PNG, new BitmapPainter()); PictureData.setImagePainter(Picture.JPEG, new BitmapPainter()); diff --git a/src/scratchpad/src/org/apache/poi/hwpf/model/PropertyNode.java b/src/scratchpad/src/org/apache/poi/hwpf/model/PropertyNode.java index 78a536e27c..74b77bf54e 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/model/PropertyNode.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/model/PropertyNode.java @@ -40,7 +40,7 @@ public abstract class PropertyNode> implements Compar public static final class EndComparator implements Comparator> { - public static EndComparator instance = new EndComparator(); + public static final EndComparator instance = new EndComparator(); public int compare( PropertyNode o1, PropertyNode o2 ) { @@ -54,7 +54,7 @@ public abstract class PropertyNode> implements Compar public static final class StartComparator implements Comparator> { - public static StartComparator instance = new StartComparator(); + public static final StartComparator instance = new StartComparator(); public int compare( PropertyNode o1, PropertyNode o2 ) { -- 2.39.5