diff options
author | Glen Mazza <gmazza@apache.org> | 2004-06-16 23:40:58 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-06-16 23:40:58 +0000 |
commit | 4e89f502c93d90df557cea370776c70cc649f988 (patch) | |
tree | ea2ec6b0511bdbe2744fa4e320c9f922f8d37c2c /src/java/org/apache/fop/fo/PropertyList.java | |
parent | b37712f267867898ce8760a378446f0f83cc1afb (diff) | |
download | xmlgraphics-fop-4e89f502c93d90df557cea370776c70cc649f988.tar.gz xmlgraphics-fop-4e89f502c93d90df557cea370776c70cc649f988.zip |
1. Valid node checking for LayoutMasterSet done.
2. Additional error message provided for missing required child elements of a node.
3. Removal of elementName from property list; redundant (retrievable via getFObj.getName()). Adding getName() to FObj so the element so fObj.getName() works.
(Vielen Dank, Simon!)
4. Moving locator information from FObj to FONode so non-XSL NS elements will also have this information.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197720 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 | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/java/org/apache/fop/fo/PropertyList.java b/src/java/org/apache/fop/fo/PropertyList.java index d5421c085..e03a4cacd 100644 --- a/src/java/org/apache/fop/fo/PropertyList.java +++ b/src/java/org/apache/fop/fo/PropertyList.java @@ -95,7 +95,6 @@ public class PropertyList extends HashMap { private PropertyList parentPropertyList = null; private String namespace = ""; - private String elementName = ""; private FObj fobj = null; /** @@ -103,14 +102,12 @@ public class PropertyList extends HashMap { * @param parentPropertyList the PropertyList belonging to the new objects * parent * @param space name of namespace - * @param elementName name of element */ public PropertyList(FObj fObjToAttach, PropertyList parentPropertyList, - String space, String elementName) { + String space) { this.fobj = fObjToAttach; this.parentPropertyList = parentPropertyList; this.namespace = space; - this.elementName = elementName; } /** @@ -146,13 +143,6 @@ public class PropertyList extends HashMap { } /** - * @return element name for this - */ - public String getElement() { - return elementName; - } - - /** * Return the value explicitly specified on this FO. * @param propertyName The name of the property whose value is desired. * It may be a compound name, such as space-before.optimum. |