Przeglądaj źródła

Replaced @asf.todo with normal TODO comment


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@990148 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_1rc1old
Vincent Hennebert 14 lat temu
rodzic
commit
f7710aa99b

+ 1
- 1
src/java/org/apache/fop/area/DestinationData.java Wyświetl plik

@@ -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) {

+ 1
- 1
src/java/org/apache/fop/fo/FOPropertyMapping.java Wyświetl plik

@@ -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 {


+ 1
- 1
src/java/org/apache/fop/fo/FObj.java Wyświetl plik

@@ -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;

+ 2
- 2
src/java/org/apache/fop/fo/flow/Footnote.java Wyświetl plik

@@ -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.
*/

+ 1
- 1
src/java/org/apache/fop/fo/flow/Leader.java Wyświetl plik

@@ -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.

+ 1
- 1
src/java/org/apache/fop/fo/flow/ListItem.java Wyświetl plik

@@ -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) {

+ 1
- 1
src/java/org/apache/fop/fo/flow/Marker.java Wyświetl plik

@@ -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 {

+ 1
- 1
src/java/org/apache/fop/fo/flow/MultiCase.java Wyświetl plik

@@ -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.

+ 1
- 1
src/java/org/apache/fop/fo/flow/table/TableAndCaption.java Wyświetl plik

@@ -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.

+ 1
- 1
src/java/org/apache/fop/fo/pagination/PageSequence.java Wyświetl plik

@@ -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 {

+ 1
- 1
src/java/org/apache/fop/fo/properties/CharacterProperty.java Wyświetl plik

@@ -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 {

+ 2
- 2
src/java/org/apache/fop/hyphenation/ByteVector.java Wyświetl plik

@@ -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) {

+ 1
- 1
src/java/org/apache/fop/hyphenation/HyphenationException.java Wyświetl plik

@@ -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 {


+ 1
- 1
src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java Wyświetl plik

@@ -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 {

+ 1
- 1
src/java/org/apache/fop/layoutmgr/LayoutException.java Wyświetl plik

@@ -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 {


+ 1
- 1
src/java/org/apache/fop/layoutmgr/inline/LeafNodeLayoutManager.java Wyświetl plik

@@ -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 {

+ 1
- 1
src/java/org/apache/fop/layoutmgr/inline/PageNumberCitationLastLayoutManager.java Wyświetl plik

@@ -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);

+ 1
- 1
src/java/org/apache/fop/layoutmgr/inline/PageNumberCitationLayoutManager.java Wyświetl plik

@@ -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);

+ 1
- 1
src/java/org/apache/fop/layoutmgr/table/TableAndCaptionLayoutManager.java Wyświetl plik

@@ -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 {


+ 1
- 1
src/java/org/apache/fop/layoutmgr/table/TableCaptionLayoutManager.java Wyświetl plik

@@ -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 {


Ładowanie…
Anuluj
Zapisz