diff options
author | Glen Mazza <gmazza@apache.org> | 2004-08-01 04:20:50 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-08-01 04:20:50 +0000 |
commit | aa569d642f3814a7e1242ade45cac003761914e6 (patch) | |
tree | e4a744514b1fd1bfd084c1cb0e36381c87dd447a /src/java/org/apache/fop/fo/PropertyList.java | |
parent | 07e8b67a4aedd53a69895a82f328b472c9a05a6e (diff) | |
download | xmlgraphics-fop-aa569d642f3814a7e1242ade45cac003761914e6.tar.gz xmlgraphics-fop-aa569d642f3814a7e1242ade45cac003761914e6.zip |
1.) Moved from FOPException to SAXParseException for addProperties()
2.) FONode: locator object added, its three components (file, line, col) removed
3.) FONode: new attributeError() method created for attribute problems in input FO.
4.) Removed some setup() methods in the FO's, placed them in addProperties() instead.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197847 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/PropertyList.java')
-rw-r--r-- | src/java/org/apache/fop/fo/PropertyList.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/PropertyList.java b/src/java/org/apache/fop/fo/PropertyList.java index 39ce8a7f1..e15374156 100644 --- a/src/java/org/apache/fop/fo/PropertyList.java +++ b/src/java/org/apache/fop/fo/PropertyList.java @@ -422,8 +422,7 @@ public class PropertyList extends HashMap { * @param attributes Collection of attributes passed to us from the parser. * @throws FOPException If an error occurs while building the PropertyList */ - public void addAttributesToList(Attributes attributes) - throws FOPException { + public void addAttributesToList(Attributes attributes) { /* * If font-size is set on this FO, must set it first, since * other attributes specified in terms of "ems" depend on it. |