You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by jo...@apache.org on 2004/07/07 20:46:48 UTC

cvs commit: cocoon-2.1/src/blocks/poi/java/org/apache/cocoon/components/elementprocessor/impl/poi/hssf/elements Sheet.java

joerg       2004/07/07 11:46:48

  Modified:    src/blocks/poi/java/org/apache/cocoon/components/elementprocessor/impl/poi/hssf/elements
                        Sheet.java
  Log:
  removed erroneous javadoc tags
  
  Revision  Changes    Path
  1.10      +1 -13     cocoon-2.1/src/blocks/poi/java/org/apache/cocoon/components/elementprocessor/impl/poi/hssf/elements/Sheet.java
  
  Index: Sheet.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/blocks/poi/java/org/apache/cocoon/components/elementprocessor/impl/poi/hssf/elements/Sheet.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Sheet.java	4 Jul 2004 20:57:02 -0000	1.9
  +++ Sheet.java	7 Jul 2004 18:46:48 -0000	1.10
  @@ -322,7 +322,6 @@
       /**
        * Set whether or not the worksheet content is centered (horizontally)
        * on the page when it is printed
  -     * @param ls landscape
        */
       void setHCenter(boolean hCenter) {
           _sheet.setHorizontallyCenter(hCenter);
  @@ -331,7 +330,6 @@
       /**
        * Setwhether or not the worksheet content is centered (vertically)
        * on the page when it is printed
  -     * @param ls landscape
        */
       void setVCenter(boolean vCenter) {
           _sheet.setVerticallyCenter(vCenter);
  @@ -339,7 +337,6 @@
       
       /**
        * Setup whether or not printing is in monochrome (no color)
  -     * @param ls landscape
        */
       void setMonochrome(boolean noColor) {
           _sheet.getPrintSetup().setNoColor(noColor);
  @@ -347,7 +344,6 @@
       
       /**
        * Setup whether or not the worksheet is printed in draft format
  -     * @param draftMode
        */
       void setDraft(boolean draftMode) {
           _sheet.getPrintSetup().setDraft(draftMode);
  @@ -355,7 +351,6 @@
       
       /**
        * Set text to be printed at the top of every page
  -     * @param ls landscape
        */
       void setHeader(String left, String middle, String right) {
           HSSFHeader header = _sheet.getHeader();
  @@ -366,7 +361,6 @@
       
       /**
        * Set text to be printed at the bottom of every page
  -     * @param ls landscape
        */
       void setFooter(String left, String middle, String right) {
           HSSFFooter footer = _sheet.getFooter();
  @@ -377,7 +371,6 @@
       
       /**
        * Set the top margin of the page
  -     * @param ls landscape
        */
       void setTopMargin(double points) {
           _sheet.setMargin(HSSFSheet.TopMargin, points);
  @@ -385,7 +378,6 @@
       
       /**
        * Set the left margin of the page
  -     * @param ls landscape
        */
       void setLeftMargin(double points) {
           _sheet.setMargin(HSSFSheet.LeftMargin, points);
  @@ -393,7 +385,6 @@
       
       /**
        * Set the right margin of the page
  -     * @param ls landscape
        */
       void setRightMargin(double points) {
           _sheet.setMargin(HSSFSheet.RightMargin, points);
  @@ -401,7 +392,6 @@
       
       /**
        * Set the bottom margin of the page
  -     * @param ls landscape
        */
       void setBottomMargin(double points) {
           _sheet.setMargin(HSSFSheet.BottomMargin, points);
  @@ -409,7 +399,6 @@
       
       /**
        * Set the header margin of the page
  -     * @param ls landscape
        */
       void setHeaderMargin(double points) {
           _sheet.getPrintSetup().setHeaderMargin(points);
  @@ -417,7 +406,6 @@
       
       /**
        * Set the header margin of the page
  -     * @param ls landscape
        */
       void setFooterMargin(double points) {
           _sheet.getPrintSetup().setFooterMargin(points);