Browse Source

RTF: fix a few checkstyle warnings

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@375067 13f79535-47bb-0310-9956-ffa450edef68
pull/16/head
Peter Herweg 18 years ago
parent
commit
bedc9831a9
23 changed files with 35 additions and 48 deletions
  1. 3
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IBorderAttributes.java
  2. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfAfterContainer.java
  3. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfBeforeContainer.java
  4. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfBookmarkContainer.java
  5. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfExternalGraphicContainer.java
  6. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfHyperLinkContainer.java
  7. 1
    3
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfJforCmdContainer.java
  8. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfListContainer.java
  9. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfOptions.java
  10. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfPageBreakContainer.java
  11. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfPageContainer.java
  12. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfPageNumberCitationContainer.java
  13. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfPageNumberContainer.java
  14. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfParagraphContainer.java
  15. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfParagraphKeepTogetherContainer.java
  16. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfTableContainer.java
  17. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfTextContainer.java
  18. 1
    3
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfTextrunContainer.java
  19. 11
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/ITableAttributes.java
  20. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IrtfTemplateContainer.java
  21. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfTable.java
  22. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfTableCell.java
  23. 1
    2
      src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfTableRow.java

+ 3
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IBorderAttributes.java View File

@@ -14,8 +14,9 @@
* limitations under the License.
*/
/* $Id: BorderAttributesConverter.java 198175 2004-11-24 21:07:31Z gmazza $ */
/* $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,7 +25,7 @@
* the FOP project.
*/
package org.apache.fop.render.rtf.rtflib.rtfdoc;
/** Constants for RTF border attribute names. */

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfAfterContainer.java View 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;

/** interface for RTF objects that can contain footers */

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfBeforeContainer.java View 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;

/**

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfBookmarkContainer.java View 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;

/**

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfExternalGraphicContainer.java View 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;

/**

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfHyperLinkContainer.java View 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;

/** interface for RtfElements that can contain RtfHyperLinks

+ 1
- 3
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfJforCmdContainer.java View 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.IOException;

/**

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfListContainer.java View 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;

/** Interface for RtfElements that can contain RtfLists

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfOptions.java View 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;

/**
* Options for configuring the rtf elements.
*/

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfPageBreakContainer.java View 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;

/** Interface for RtfElements that can contain RtfPageBreaks

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfPageContainer.java View 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;

/** Interface for RtfElements that can contain RtfText elements

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfPageNumberCitationContainer.java View 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;

/**

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfPageNumberContainer.java View 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;

/**

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfParagraphContainer.java View 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;

/** Interface for RtfElements that can contain RtfParagraphs

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfParagraphKeepTogetherContainer.java View 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;

/**

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfTableContainer.java View 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;

/**

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfTextContainer.java View 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;

/** Interface for RtfElements that can contain RtfText elements

+ 1
- 3
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfTextrunContainer.java View File

@@ -16,14 +16,12 @@

/* $Id$ */

package org.apache.fop.render.rtf.rtflib.rtfdoc;

/*
* This file is part of the RTF library of the FOP project.
*/

package org.apache.fop.render.rtf.rtflib.rtfdoc;

import java.io.IOException;
import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun;


+ 11
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/ITableAttributes.java View File

@@ -14,6 +14,10 @@
* limitations under the License.
*/

/* $Id:$ */

package org.apache.fop.render.rtf.rtflib.rtfdoc;

/* $Id$ */


@@ -24,8 +28,6 @@
* the FOP project.
*/

package org.apache.fop.render.rtf.rtflib.rtfdoc;

/**
* Constants for RTF table attribute names
* @author unascribed
@@ -42,6 +44,11 @@ public interface ITableAttributes {

/** half the space between the cells of a table row in twips */
String ATTR_RTF_15_TRGAPH = "trgaph";
/**
* Position of the leftmost edge of the table with respect to the
* left edge of its column
*/
String ATTR_ROW_LEFT_INDENT = "trleft";
/** table row header */
@@ -124,6 +131,8 @@ public interface ITableAttributes {
//Table row attributes
/** row attribute, keep-together */
String ROW_KEEP_TOGETHER = "trkeep";
/** Height of a table row in twips */
String ROW_HEIGHT = "trrh";

/**

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/IrtfTemplateContainer.java View 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;

/**

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfTable.java View 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;


+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfTableCell.java View 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;

+ 1
- 2
src/java/org/apache/fop/render/rtf/rtflib/rtfdoc/RtfTableRow.java View 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.io.Writer;
import java.util.Iterator;

Loading…
Cancel
Save