]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Replaced @asf.todo with normal TODO comment
authorVincent Hennebert <vhennebert@apache.org>
Fri, 27 Aug 2010 13:31:41 +0000 (13:31 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Fri, 27 Aug 2010 13:31:41 +0000 (13:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@990148 13f79535-47bb-0310-9956-ffa450edef68

20 files changed:
src/java/org/apache/fop/area/DestinationData.java
src/java/org/apache/fop/fo/FOPropertyMapping.java
src/java/org/apache/fop/fo/FObj.java
src/java/org/apache/fop/fo/flow/Footnote.java
src/java/org/apache/fop/fo/flow/Leader.java
src/java/org/apache/fop/fo/flow/ListItem.java
src/java/org/apache/fop/fo/flow/Marker.java
src/java/org/apache/fop/fo/flow/MultiCase.java
src/java/org/apache/fop/fo/flow/table/TableAndCaption.java
src/java/org/apache/fop/fo/pagination/PageSequence.java
src/java/org/apache/fop/fo/properties/CharacterProperty.java
src/java/org/apache/fop/hyphenation/ByteVector.java
src/java/org/apache/fop/hyphenation/HyphenationException.java
src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java
src/java/org/apache/fop/layoutmgr/LayoutException.java
src/java/org/apache/fop/layoutmgr/inline/LeafNodeLayoutManager.java
src/java/org/apache/fop/layoutmgr/inline/PageNumberCitationLastLayoutManager.java
src/java/org/apache/fop/layoutmgr/inline/PageNumberCitationLayoutManager.java
src/java/org/apache/fop/layoutmgr/table/TableAndCaptionLayoutManager.java
src/java/org/apache/fop/layoutmgr/table/TableCaptionLayoutManager.java

index 75b981fb739a4310ad5974be63e5ee8e7bbae49d..f8d906b91ec28ded32ee7f6046209c867a9ced10 100644 (file)
@@ -98,7 +98,7 @@ public class DestinationData extends AbstractOffDocumentItem implements Resolvab
      * object that corresponds to the IDRef
      *
      * {@inheritDoc} List)
-     * @asf.todo check to make sure it works if multiple bookmark-items
+     * TODO check to make sure it works if multiple bookmark-items
      * have the same idref
      */
     public void resolveIDRef(String id, List pages) {
index 8293180cfd38cda36f2764187c460d74c60e1f8f..c711a76c05e19848827a32a30a775d90603527f5 100644 (file)
@@ -72,7 +72,7 @@ import org.apache.fop.fo.properties.XMLLangShorthandParser;
  * This class creates and returns an array of Property.Maker instances
  * indexed by the PR_* propId from Constants.java.
  *
- * @asf.todo Check multi-threading safety of the statics below
+ * TODO Check multi-threading safety of the statics below
  */
 public final class FOPropertyMapping implements Constants {
 
index cb265b00807e17a093ae44e54e3254647cae73a6..34e29a58adf12d6e71d19aefa0e2744f5b4b4985 100644 (file)
@@ -255,7 +255,7 @@ public abstract class FObj extends FONode implements Constants {
     /**
      * Check if this formatting object generates reference areas.
      * @return true if generates reference areas
-     * @asf.todo see if needed
+     * TODO see if needed
      */
     public boolean generatesReferenceAreas() {
         return false;
index 9967a54d8f732cc059c9f0e26f7c3373e36fe209..51d2581cda74ebe27eb90f91452da0aefd100a94 100644 (file)
@@ -76,9 +76,9 @@ public class Footnote extends FObj {
     /**
      * {@inheritDoc}
      * <br>XSL Content Model: (inline,footnote-body)
-     * @asf.todo implement additional constraint: A fo:footnote is not permitted
+     * TODO implement additional constraint: A fo:footnote is not permitted
      *      to have a fo:float, fo:footnote, or fo:marker as a descendant.
-     * @asf.todo implement additional constraint: A fo:footnote is not
+     * TODO implement additional constraint: A fo:footnote is not
      *      permitted to have as a descendant a fo:block-container that
      *      generates an absolutely positioned area.
      */
index 1b32e3f1e7c4dee64f7d21605874d3f51a4baa1a..54027514ce17d9f765646819274e6d92650ad8d8 100644 (file)
@@ -30,7 +30,7 @@ import org.apache.fop.fo.properties.LengthRangeProperty;
  * <code>fo:leader</code></a> object.
  * The main property of <code>fo:leader</code> is leader-pattern.
  * The following patterns are treated: rule, space, dots and use-content.
- * @asf.todo implement validateChildNode()
+ * TODO implement validateChildNode()
  */
 public class Leader extends InlineLevel {
     // The value of properties relevant for fo:leader.
index 3f714dbd86ddff1813b5508b62fc24e267886add..c4a2aa64b7490ba14286a968d9ac81384fcec176 100644 (file)
@@ -119,7 +119,7 @@ public class ListItem extends FObj implements BreakPropertySet {
 
     /**
      * {@inheritDoc}
-     * @asf.todo see if can/should rely on base class for this
+     * TODO see if can/should rely on base class for this
      *    (i.e., add to childNodes instead)
      */
     public void addChildNode(FONode child) {
index d8f69af287733d6b957b33db073074ad584b38e2..4588a9df3fce235fd7b99c2b0bc510fbdad96064 100644 (file)
@@ -110,7 +110,7 @@ public class Marker extends FObjMixed {
      * <br><i>Additionally: "An fo:marker may contain any formatting objects that
      * are permitted as a replacement of any fo:retrieve-marker that retrieves
      * the fo:marker's children."</i>
-     * @asf.todo implement "additional" constraint, possibly within fo:retrieve-marker
+     * TODO implement "additional" constraint, possibly within fo:retrieve-marker
      */
     protected void validateChildNode(Locator loc, String nsURI, String localName)
             throws ValidationException {
index 76bded0be803d26ed3289d6ef13a39f82e17fba8..ac965dffb713882e7e55a1f6abe0b89b10cf4e64 100644 (file)
@@ -27,7 +27,7 @@ import org.apache.fop.fo.PropertyList;
 /**
  * Class modelling the <a href="http://www.w3.org/TR/xsl/#fo_multi-case">
  * <code>fo:multi-case</code></a> object.
- * @asf.todo implement validateChildNode()
+ * TODO implement validateChildNode()
  */
 public class MultiCase extends FObj {
     // The value of properties relevant for fo:multi-case.
index 5ee5e78ad2e713a4056ec474fe50cdfc4159c36a..634460ec476c6cfddc9f5aa332731e9686da22b0 100644 (file)
@@ -30,7 +30,7 @@ import org.apache.fop.fo.ValidationException;
 /**
  * Class modelling the <a href="http://www.w3.org/TR/xsl/#fo_table-and-caption">
  * <code>fo:table-and-caption</code></a> property.
- * @asf.todo needs implementation
+ * TODO needs implementation
  */
 public class TableAndCaption extends FObj /*implements BreakPropertySet*/ {
     // The value of properties relevant for fo:table-and-caption.
index 01ca5863e053a247a26855b12fd084a9b5747fa6..74b85e78c26244343dd3199f2427598799bf7aa0 100644 (file)
@@ -151,7 +151,7 @@ public class PageSequence extends AbstractPageSequence {
 
     /**
      * {@inheritDoc}
-     * @asf.todo see if addChildNode() should also be called for fo's other than
+     * TODO see if addChildNode() should also be called for fo's other than
      *  fo:flow.
      */
     public void addChildNode(FONode child) throws FOPException {
index 5fef57a8b2dd7e23a2be65293ec222b35b2f8bed..ebded4b50593e162e28bcf3f398486057b8c2a7b 100644 (file)
@@ -24,7 +24,7 @@ import org.apache.fop.fo.PropertyList;
 
 /**
  * Superclass for properties that wrap a character value
- * @asf.todo convert character value to int in order to denote unicode scalar value
+ * TODO convert character value to int in order to denote unicode scalar value
  * instead of a single UTF-16 code element
  */
 public final class CharacterProperty extends Property {
index 920089684b97263f91fa814b4ed098d06bbff5f3..d1448abdc192a8b5ad80db460d16b9740e6f7403 100644 (file)
@@ -69,7 +69,7 @@ public class ByteVector implements Serializable {
     /**
      * Construct byte vector instance.
      * @param a byte array to use
-     * @asf.todo should n should be initialized to a.length to be consistent with
+     * TODO should n should be initialized to a.length to be consistent with
      * CharVector behavior? [GA]
      */
     public ByteVector(byte[] a) {
@@ -82,7 +82,7 @@ public class ByteVector implements Serializable {
      * Construct byte vector instance.
      * @param a byte array to use
      * @param capacity initial block size
-     * @asf.todo should n should be initialized to a.length to be consistent with
+     * TODO should n should be initialized to a.length to be consistent with
      * CharVector behavior? [GA]
      */
     public ByteVector(byte[] a, int capacity) {
index e109cadf97edc1b6df4d02b772365de4395e7281..484d01cbd8ecfd2de835d407f23468bb29359804 100644 (file)
@@ -22,7 +22,7 @@ package org.apache.fop.hyphenation;
 /**
  * An hyphenation exception.
  * @author Carlos Villegas <cav@uniscope.co.jp>
- * @asf.todo Derive from FOPException
+ * TODO Derive from FOPException
  */
 public class HyphenationException extends Exception {
 
index 2e6f6926acf991ebd546f101946961f647245d76..a29398b93cb74f673646ccffa4c1430257757d36 100644 (file)
@@ -36,7 +36,7 @@ import org.apache.fop.fo.pagination.Flow;
  * Its parent LM is the PageSequenceLayoutManager.
  * This LM is responsible for getting columns of the appropriate size
  * and filling them with block-level areas generated by its children.
- * @asf.todo Reintroduce emergency counter (generate error to avoid endless loop)
+ * TODO Reintroduce emergency counter (generate error to avoid endless loop)
  */
 public class FlowLayoutManager extends BlockStackingLayoutManager
                                implements BlockLevelLayoutManager {
index 280266003e4968eb65df359ccb87d138f5234e2c..2638d021084e36c0631a072855e3d1e522cc3008 100644 (file)
@@ -29,7 +29,7 @@ import org.apache.fop.events.EventExceptionManager.ExceptionFactory;
  * Exception thrown by FOP if an unrecoverable layout error occurs. An example: An area overflows
  * a viewport that has overflow="error-if-overflow".
  *
- * @asf.todo Discuss if this should become a checked exception.
+ * TODO Discuss if this should become a checked exception.
  */
 public class LayoutException extends RuntimeException {
 
index f5a0a51f89b25d8cc0412edf043d48e7b98caafa..df7371fe5d8645ccbefab349c8490e8fe4cf7b6f 100644 (file)
@@ -48,7 +48,7 @@ import org.apache.fop.traits.MinOptMax;
  * an exception to this rule.)
  * This class can be extended to handle the creation and adding of the
  * inline area.
- * @asf.todo [GA] replace use of hungarian notation with normalized java naming
+ * TODO [GA] replace use of hungarian notation with normalized java naming
  */
 public abstract class LeafNodeLayoutManager extends AbstractLayoutManager
                                    implements InlineLevelLayoutManager {
index f3e8784c15e6e4f6e7e2ef17aab893ba6db11746..56bcdaa3bb3646ee92e16c372f6fce2302809004 100644 (file)
@@ -37,7 +37,7 @@ public class PageNumberCitationLastLayoutManager extends AbstractPageNumberCitat
      * Constructor
      *
      * @param node the formatting object that creates this area
-     * @asf.todo better retrieval of font info
+     * TODO better retrieval of font info
      */
     public PageNumberCitationLastLayoutManager(PageNumberCitationLast node) {
         super(node);
index b9f786c9712691b48ad61a389c91ac7c0f817086..958a854ac11fb56f81183c5a59cd179440aa8c91 100644 (file)
@@ -35,7 +35,7 @@ public class PageNumberCitationLayoutManager extends AbstractPageNumberCitationL
      * Constructor
      *
      * @param node the formatting object that creates this area
-     * @asf.todo better retrieval of font info
+     * TODO better retrieval of font info
      */
     public PageNumberCitationLayoutManager(PageNumberCitation node) {
         super(node);
index ab37248ead1295124221cab3385454e708f559f7..fc35a8069daee541ff3261ed8d0765c5e2b301a3 100644 (file)
@@ -33,7 +33,7 @@ import org.apache.fop.layoutmgr.PositionIterator;
  * The caption contains blocks that are positioned next to the
  * table on the caption side.
  * The caption blocks have an implicit keep with the table.
- * @asf.todo Implement getNextKnuthElements()
+ * TODO Implement getNextKnuthElements()
  */
 public class TableAndCaptionLayoutManager extends BlockStackingLayoutManager {
 
index 96ffc0a90f2d1a5bfa36b4d9293a294ed76ec4dd..7ba0b5970ec76cbfc2591772fb5c7ac68e6015da 100644 (file)
@@ -31,7 +31,7 @@ import org.apache.fop.layoutmgr.PositionIterator;
  * LayoutManager for a table-caption FO.
  * The table caption contains blocks that are placed beside the
  * table.
- * @asf.todo Implement getNextKnuthElements()
+ * TODO Implement getNextKnuthElements()
  */
 public class TableCaptionLayoutManager extends BlockStackingLayoutManager {