aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/DirectPropertyListBuilder.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/fo/DirectPropertyListBuilder.java')
-rw-r--r--src/org/apache/fop/fo/DirectPropertyListBuilder.java49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/org/apache/fop/fo/DirectPropertyListBuilder.java b/src/org/apache/fop/fo/DirectPropertyListBuilder.java
deleted file mode 100644
index d4f3fa02e..000000000
--- a/src/org/apache/fop/fo/DirectPropertyListBuilder.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * $Id$
- * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
- * For details on use and redistribution please refer to the
- * LICENSE file included with these sources.
- */
-
-package org.apache.fop.fo;
-
-import org.apache.fop.fo.properties.*;
-import org.apache.fop.svg.*;
-import org.apache.fop.datatypes.*;
-
-import org.apache.fop.apps.FOPException;
-
-import org.xml.sax.Attributes;
-
-/**
- * This is a property list builder that bypasses overhead.
- * The attribute list is made available directly so it can
- * be used to build a dom.
- * Note: there should be a better way to handle this and
- * the attribute list is only valid within the startElement
- * call of the sax events.
- */
-public class DirectPropertyListBuilder extends PropertyListBuilder {
-
- public DirectPropertyListBuilder() {
- }
-
- public PropertyList makeList(String uri, String elementName, Attributes attributes,
- PropertyList parentPropertyList,
- FObj parentFO) throws FOPException {
- AttrPropertyList ret = new AttrPropertyList(attributes);
- return ret;
- }
-
- public static class AttrPropertyList extends PropertyList {
- Attributes attributes;
- AttrPropertyList(Attributes attr) {
- super(null, null, null);
- attributes = attr;
- }
-
- public Attributes getAttributes() {
- return attributes;
- }
- }
-}