diff options
author | Jeremias Maerki <jeremias@apache.org> | 2005-07-18 14:46:29 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2005-07-18 14:46:29 +0000 |
commit | baad0905d66552f02ce9e920945b58314017fda1 (patch) | |
tree | b3474fba2d6944ae3ac4b221cf886e78c17f8f23 /src/java/org/apache/fop/fo/XMLObj.java | |
parent | 2d5e70fa412d2a2a5d405d84a9239668a11aeda2 (diff) | |
download | xmlgraphics-fop-baad0905d66552f02ce9e920945b58314017fda1.tar.gz xmlgraphics-fop-baad0905d66552f02ce9e920945b58314017fda1.zip |
Javadocs only
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@219502 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/XMLObj.java')
-rw-r--r-- | src/java/org/apache/fop/fo/XMLObj.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fo/XMLObj.java b/src/java/org/apache/fop/fo/XMLObj.java index 4dc1a40b2..b6fca2dce 100644 --- a/src/java/org/apache/fop/fo/XMLObj.java +++ b/src/java/org/apache/fop/fo/XMLObj.java @@ -1,5 +1,5 @@ /* - * Copyright 1999-2004 The Apache Software Foundation. + * Copyright 1999-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -83,6 +83,10 @@ public abstract class XMLObj extends FONode { return doc; } + /** + * Returns the dimensions of the generated area in pts. + * @return the requested dimensions in pts. + */ public Point2D getDimension(Point2D view) { return null; } @@ -209,6 +213,7 @@ public abstract class XMLObj extends FONode { * @param data array of characters contaning the text to add * @param start starting array element to add * @param length number of characters from the array to add + * @param pList the currently applicable property list * @param locator location in fo source file. */ protected void addCharacters(char data[], int start, int length, |