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

src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfListStyle.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfListStyleBullet.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfListStyleNumber.java
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfListStyleText.java

index c6809c46ef3a5465818f09b99e937b1047dec5aa..a4e85f684f8044eef281c2771e37d743b4be8ae6 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
@@ -23,7 +24,6 @@
  * contributors to the jfor project (www.jfor.org), who agreed to donate jfor to
  * the FOP project.
  */
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 //Java
 import java.io.IOException;
@@ -37,33 +37,51 @@ import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfElement;
 public class RtfListStyle {
     private RtfListItem rtfListItem;
     
+    /**
+     * Sets the RtfListItem this style belongs to.
+     * @param item RtfListItem this style belongs to
+     */
     public void setRtfListItem(RtfListItem item) {
         rtfListItem = item;
     }
     
+    /**
+     * Gets the RtfListItem this style belongs to.
+     * @return RtfListItem this style belongs to
+     */
     public RtfListItem getRtfListItem() {
         return rtfListItem;
     }
 
+    /**
+     * Gets the RtfList this style belongs to.
+     * @return RtfList this style belongs to
+     */
     public RtfList getRtfList() {
         return rtfListItem.getParentList();
     }
 
     /**
-     * Gets call before a RtfListItem has to be written.
+     * Gets called before a RtfListItem has to be written.
+     * @param item RtfListItem this style belongs to
+     * @throws IOException Thrown when an IO-problem occurs.
      */
     public void writeListPrefix(RtfListItem item)
     throws IOException {
     }
     /**
-     * Gets call before a paragraph, which is contained by a RtfListItem has to be written.
+     * Gets called before a paragraph has to be written, which is contained by a RtfListItem.
+     * @param element RtfElement in whose context is to be written
+     * @throws IOException Thrown when an IO-problem occurs.
      */
     public void writeParagraphPrefix(RtfElement element)
     throws IOException {
     }
 
     /**
-     * Gets call when the list table has to be written.
+     * Gets called when the list table has to be written.
+     * @param element RtfElement in whose context is to be written
+     * @throws IOException Thrown when an IO-problem occurs.
      */        
     public void writeLevelGroup(RtfElement element)
     throws IOException {
index e7f7b7204403ce998a6562c457587b42852a0ed6..02a79e8410ed0c303bc3ac6d4903bbf5d4f23b71 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
@@ -23,7 +24,6 @@
  * contributors to the jfor project (www.jfor.org), who agreed to donate jfor to
  * the FOP project.
  */
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 //Java
 import java.io.IOException;
@@ -31,12 +31,16 @@ import java.io.IOException;
 //FOP
 import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfElement;
 
+/**
+ * Class to handle bullet list style.
+ */
 public class RtfListStyleBullet extends RtfListStyle {
     
     /**
-     * Gets call before a RtfListItem has to be written.
-     * 
+     * Gets called before a RtfListItem has to be written.
+     * @param item RtfListItem whose prefix has to be written
      * @see org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyle#writeListPrefix(RtfListItem)
+     * @throws IOException Thrown when an IO-problem occurs
      */
     public void writeListPrefix(RtfListItem item) throws IOException {
         // bulleted list
@@ -55,9 +59,10 @@ public class RtfListStyleBullet extends RtfListStyle {
     }
 
     /**
-     * Gets call before a paragraph, which is contained by a RtfListItem has to be written.
-     * 
+     * Gets called before a paragraph, which is contained by a RtfListItem has to be written.
+     * @param element RtfElement in whose context is to be written
      * @see org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyle#writeParagraphPrefix(RtfElement)
+     * @throws IOException Thrown when an IO-problem occurs
      */
     public void writeParagraphPrefix(RtfElement element) throws IOException {
         element.writeGroupMark(true);
@@ -66,9 +71,11 @@ public class RtfListStyleBullet extends RtfListStyle {
     }
 
     /**
-     * Gets call when the list table has to be written.
+     * Gets called when the list table has to be written.
      * 
+     * @param element RtfElement in whose context is to be written
      * @see org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyle#writeLevelGroup(RtfElement)
+     * @throws IOException Thrown when an IO-problem occurs
      */
     public void writeLevelGroup(RtfElement element) throws IOException {
         element.attrib.set(RtfListTable.LIST_NUMBER_TYPE, 23);
index 899f1ce3e27459d84d99e3b312e493eb5f26cc70..7d08ae85f769f8f0e75fb82a86bd451fa0f62162 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
@@ -23,7 +24,6 @@
  * contributors to the jfor project (www.jfor.org), who agreed to donate jfor to
  * the FOP project.
  */
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 //Java
 import java.io.IOException;
@@ -31,12 +31,16 @@ import java.io.IOException;
 //FOP
 import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfElement;
 
+/**
+ * Class to handle number list style.
+ */
 public class RtfListStyleNumber extends RtfListStyle {
     
     /**
-     * Gets call before a RtfListItem has to be written.
-     * 
+     * Gets called before a RtfListItem has to be written.
+     * @param item RtfListItem whose prefix has to be written
      * @see org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyle#writeListPrefix(RtfListItem)
+     * @throws IOException Thrown when an IO-problem occurs
      */
     public void writeListPrefix(RtfListItem item)
     throws IOException {
@@ -51,9 +55,11 @@ public class RtfListStyleNumber extends RtfListStyle {
     }
     
     /**
-     * Gets call before a paragraph, which is contained by a RtfListItem has to be written.
+     * Gets called before a paragraph, which is contained by a RtfListItem has to be written.
      * 
+     * @param element RtfElement in whose context is to be written
      * @see org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyle#writeParagraphPrefix(RtfElement)
+     * @throws IOException Thrown when an IO-problem occurs
      */
     public void writeParagraphPrefix(RtfElement element)
     throws IOException {
@@ -66,9 +72,11 @@ public class RtfListStyleNumber extends RtfListStyle {
     }
     
     /**
-     * Gets call when the list table has to be written.
+     * Gets called when the list table has to be written.
      * 
+     * @param element RtfElement in whose context is to be written
      * @see org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyle#writeLevelGroup(RtfElement)
+     * @throws IOException Thrown when an IO-problem occurs
      */
     public void writeLevelGroup(RtfElement element)
     throws IOException {
index d11d69ba68bcfcac596d9af72a0cb29be2d747dd..e81115b6f140fc8936e8be93372439046f252b34 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
@@ -23,7 +24,6 @@
  * contributors to the jfor project (www.jfor.org), who agreed to donate jfor to
  * the FOP project.
  */
-package org.apache.fop.render.rtf.rtflib.rtfdoc;
 
 //Java
 import java.io.IOException;
@@ -31,17 +31,25 @@ import java.io.IOException;
 //FOP
 import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfElement;
 
+/**
+ * Class to handle text list style.
+ */
 public class RtfListStyleText extends RtfListStyle {
     private String text;
     
+    /**
+     * Constructs a RtfListStyleText object.
+     * @param s Text to be displayed
+     */
     public RtfListStyleText(String s) {
         text = s;    
     }
     
     /**
-     * Gets call before a RtfListItem has to be written.
-     * 
+     * Gets called before a RtfListItem has to be written.
+     * @param item RtfListItem whose prefix has to be written
      * @see org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyle#writeListPrefix(RtfListItem)
+     * @throws IOException Thrown when an IO-problem occurs
      */
     public void writeListPrefix(RtfListItem item)
     throws IOException {
@@ -53,16 +61,18 @@ public class RtfListStyleText extends RtfListStyle {
                 item.getParentList().attrib.getValue(RtfListTable.LIST_INDENT));
         item.writeControlWord("pnf1");
         item.writeGroupMark(true);
-        item.writeControlWord("pndec");
+        //item.writeControlWord("pndec");
         item.writeOneAttribute(RtfListTable.LIST_FONT_TYPE, "2");
         item.writeControlWord("pntxtb " + text);
         item.writeGroupMark(false);
     }
     
     /**
-     * Gets call before a paragraph, which is contained by a RtfListItem has to be written.
+     * Gets called before a paragraph, which is contained by a RtfListItem has to be written.
      * 
+     * @param element RtfElement in whose context is to be written
      * @see org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyle#writeParagraphPrefix(RtfElement)
+     * @throws IOException Thrown when an IO-problem occurs
      */
     public void writeParagraphPrefix(RtfElement element)
     throws IOException {
@@ -72,9 +82,11 @@ public class RtfListStyleText extends RtfListStyle {
     }
     
     /**
-     * Gets call when the list table has to be written.
+     * Gets called when the list table has to be written.
      * 
+     * @param element RtfElement in whose context is to be written
      * @see org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyle#writeLevelGroup(RtfElement)
+     * @throws IOException Thrown when an IO-problem occurs
      */
     public void writeLevelGroup(RtfElement element)
     throws IOException {