]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
fixed a few checkstyle warnings
authorPeter Herweg <pherweg@apache.org>
Sun, 19 Feb 2006 17:29:07 +0000 (17:29 +0000)
committerPeter Herweg <pherweg@apache.org>
Sun, 19 Feb 2006 17:29:07 +0000 (17:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@378928 13f79535-47bb-0310-9956-ffa450edef68

23 files changed:
src/java/org/apache/fop/render/rtf/RTFFOEventHandlerMaker.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/ITableColumnsInfo.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/ParagraphKeeptogetherContext.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfAfter.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfAfterBeforeBase.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfAttributes.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfBefore.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfBookmark.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfBookmarkContainerImpl.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfColorTable.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfContainer.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfDocumentArea.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfElement.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExtraRowSet.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfFile.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfFontManager.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfFontTable.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfHeader.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfHyperLink.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfJforCmd.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfParagraphKeepTogether.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfSection.java

index 2ad238b2efdef7b1e1b6e3f4fb1cee8aa8aa2809..118e33640c2dbf09a4addf110cdce64c9de7a39f 100644 (file)
@@ -36,17 +36,28 @@ public class RTFFOEventHandlerMaker extends AbstractFOEventHandlerMaker {
         MimeConstants.MIME_RTF_ALT2};\r
     \r
     \r
-    /** @see org.apache.fop.render.AbstractFOEventHandlerMaker */\r
+    /**\r
+     * @see org.apache.fop.render.AbstractFOEventHandlerMaker\r
+     * @param ua FOUserAgent\r
+     * @param out OutputStream\r
+     * @return created RTFHandler\r
+     */\r
     public FOEventHandler makeFOEventHandler(FOUserAgent ua, OutputStream out) {\r
         return new RTFHandler(ua, out);\r
     }\r
 \r
-    /** @see org.apache.fop.render.AbstractFOEventHandlerMaker#needsOutputStream() */\r
+    /**\r
+     * @see org.apache.fop.render.AbstractFOEventHandlerMaker#needsOutputStream()\r
+     * @return true, if an outputstream is needed\r
+     */\r
     public boolean needsOutputStream() {\r
         return true;\r
     }\r
 \r
-    /** @see org.apache.fop.render.AbstractFOEventHandlerMaker#getSupportedMimeTypes() */\r
+    /**\r
+     * @see org.apache.fop.render.AbstractFOEventHandlerMaker#getSupportedMimeTypes()\r
+     * @return array of MIME types\r
+     */\r
     public String[] getSupportedMimeTypes() {\r
         return MIMES;\r
     }\r
index 6da766988e1dde578b775078b5377a47bc7ee435..f744ec7ecb8e0f61a6f11544a45cbf9e40ab7d28 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 /**  Used to get information about tables, for example when handling nested tables
  *  @author Bertrand Delacretaz bdelacretaz@codeconsult.ch
  */
@@ -55,5 +54,5 @@ public interface ITableColumnsInfo {
      * 
      * @return true, if it's the first of multiple spanning columns
      */
-    public boolean getFirstSpanningCol();
+    boolean getFirstSpanningCol();
 }
\ No newline at end of file
index 801dd3dd62c444dc8adc8d9459c64291a8d7ab3f..4861af9248f37b2ccfbfd72091744906a8f898c3 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 /**
  *
  *     This context is used to manage the "keepn" RTF attribute
index 80f91a9c9ccc38f13b2b361f9f3145e67a4855d0..64ed1469860214f529bd6d3c4973865a4ab35d51 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 
index c91125bd4fdc9144990fdccbc0e90e684c457319..2c123459259add381230456de8fcbab11f0c5984 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 
index a9c04b78e2c44cd3197a378145f23f1ced3773c0..86909401cf9589093ba15501e2567960cc2f7fc3 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.util.HashMap;
 import java.util.Iterator;
 import org.xml.sax.Attributes;
index 8daa13056a9ef6503c7c481300c2a9599657253d..05c6a1a369adc536293b532dc474965042046102 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 
index b7970e6bbf56bf373e1ba99b679a4de071bdc63f..302a853efff4427620306e57ca77d04976cd473d 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 
index 262370dc59217b8733cac52c24f3e34ee510c063..7122a5cfd8da6dce7bf23c5b96a99c587a07e342 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 
index ab77a7dd93acde9e7c72c11cd7a5496183312ddf..ac3146f9f5ddeac2197047241272a63335b2b38b 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.util.Vector;
 import java.util.Hashtable;
 import java.io.IOException;
@@ -36,7 +35,7 @@ import java.io.IOException;
  * @author <a href="mailto:a.putz@skynamics.com">Andreas Putz</a>
  */
 
-public class RtfColorTable {
+public final class RtfColorTable {
     //////////////////////////////////////////////////
     // @@ Symbolic constants
     //////////////////////////////////////////////////
index c02919724a72bafbbad5fbf027b85b45b509847f..57564b36ddcfa87a850aedfa8f4a3d919ac3658e 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.util.LinkedList;
 import java.util.List;
@@ -112,12 +111,12 @@ public class RtfContainer extends RtfElement {
     /**
      * Add by Boris Poudérous on 07/22/2002
      * Set the children list
-     * @param children list of child objects
+     * @param list list of child objects
      * @return true if process succeeded
      */
-    public boolean setChildren (List children) {
-      if (children instanceof LinkedList) {
-          this.children = (LinkedList)children;
+    public boolean setChildren (List list) {
+      if (list instanceof LinkedList) {
+          this.children = (LinkedList) list;
           return true;
         }
 
index 5c27d82bd9617af2c9af6e843c118a264a9e20ac..885499415601b01db080e331582f12ea4ce96385 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 
index 6e136b9e93b5d3c2acee08dd0c09ea26f5f83824..0c48f326421084936b177fc59808be2b1499ed4e 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 import java.util.Iterator;
index db97d1943a04d18286ae5381bab2b09f4e754f9d..f73709e5caad1fb1c5a78a3f5048d00618c48558 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import org.apache.commons.io.IOUtils;
 import org.apache.fop.render.rtf.rtflib.tools.ImageConstants;
 import org.apache.fop.render.rtf.rtflib.tools.ImageUtil;
@@ -566,8 +565,8 @@ public class RtfExternalGraphic extends RtfElement {
      * @param imagedata Binary imagedata as read from file.
      * @throws IOException On error
      */
-    public void setImageData(byte[] imagedata) throws IOException {
-        this.imagedata = imagedata;
+    public void setImageData(byte[] data) throws IOException {
+        this.imagedata = data;
     }
 
     /**
index 07090cfb394453de96533fe908740e4261c25dac..b75321cc1a4732b4fcf196003d9bc5fda5a95a1e 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 import java.util.List;
index 155665046e25cdf4d49fa54fe0cc88b6b713aac7..e7574e25d90beff9c7f3f489a85b7bdd2297e5ed 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import org.apache.fop.render.rtf.rtflib.exceptions.RtfStructureException;
 import java.io.Writer;
 import java.io.IOException;
@@ -128,7 +127,7 @@ extends RtfContainer {
      * @throws RtfStructureException for illegal RTF structure
      */
     public RtfPageArea startPageArea()
-    throws IOException, RtfStructureException {
+    throws IOException {
         if (pageArea != null) {
             throw new RtfStructureException("startPageArea called more than once");
         }
@@ -149,7 +148,7 @@ extends RtfContainer {
      * @throws RtfStructureException for illegal RTF structure
      */
     public RtfPageArea getPageArea()
-    throws IOException, RtfStructureException {
+    throws IOException {
         if (pageArea == null) {
             return startPageArea();
         }
@@ -164,7 +163,7 @@ extends RtfContainer {
      * @throws RtfStructureException for illegal RTF structure
      */
     public RtfDocumentArea startDocumentArea()
-    throws IOException, RtfStructureException {
+    throws IOException {
         if (docArea != null) {
             throw new RtfStructureException("startDocumentArea called more than once");
         }
@@ -187,7 +186,7 @@ extends RtfContainer {
      * @throws RtfStructureException for illegal RTF structure
      */
     public RtfDocumentArea getDocumentArea()
-    throws IOException, RtfStructureException {
+    throws IOException {
         if (docArea == null) {
             return startDocumentArea();
         }
index bf839b48944c9ae26b2dc3b629177bda68b90c41..56bf8ee0087d6009225ddc2f1654af84f7a47429 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.IOException;
 import java.util.Hashtable;
 import java.util.Vector;
@@ -34,7 +33,7 @@ import java.util.Vector;
  *   RTF font table
  *  @author Andreas Putz a.putz@skynamics.com
  */
-public class RtfFontManager {
+public final class RtfFontManager {
     //////////////////////////////////////////////////
     // @@ Members
     //////////////////////////////////////////////////
index 61fbf926ab5329e895e81e02b88422a223f84176..6bc4c1b5d70474aff28746eea04929e29b7e7c1d 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 
index 9a00f4bf151d1265056e27cc72bdd859cf92fde8..5d66e5a8fce3318be2b64bef3995bd2347efd81b 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.util.Map;
 import java.util.HashMap;
 import java.util.Iterator;
index 19dc65d06b6d9673d2920c854daa5a6fb24895c8..9973f56d711067b9a7bf676118caf5d51c487a9c 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 
index 17f6dff87500e83e3a8ab613effb09b15b86ca99..c30a2403083f2f56c2e9a6708de5fb5e47cca815 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,9 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
-
 import java.io.Writer;
 import java.util.Iterator;
 import java.io.IOException;
index 7856f27974c1305bf74e52b55fea8ba57b34268f..86eeac41bc9f7c12fea887311ca6342911f62374 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,9 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
-
 import java.io.Writer;
 import java.io.IOException;
 
index 5f9d4d52cbe0c7ba9a028802b20e58e3bf3398d7..86043fd3b2c3097b82c68491fa5ce6cab3e85407 100644 (file)
@@ -16,6 +16,7 @@
 
 /* $Id$ */
 
+package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 /*
  * This file is part of the RTF library of the FOP project, which was originally
@@ -24,8 +25,6 @@
  * the FOP project.
  */
 
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
-
 import java.io.Writer;
 import java.io.IOException;
 
@@ -232,6 +231,11 @@ implements
         closeCurrentBefore();
     }
     
+    /**
+     * Returns the current RtfTextrun.
+     * @return Current RtfTextrun
+     * @throws IOException Thrown when an IO-problem occurs.
+     */
     public RtfTextrun getTextrun()
     throws IOException {
         return RtfTextrun.getTextrun(this, writer, null);