aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/apps/Document.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/apps/Document.java')
-rw-r--r--src/java/org/apache/fop/apps/Document.java77
1 files changed, 0 insertions, 77 deletions
diff --git a/src/java/org/apache/fop/apps/Document.java b/src/java/org/apache/fop/apps/Document.java
deleted file mode 100644
index a910084d6..000000000
--- a/src/java/org/apache/fop/apps/Document.java
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright 1999-2004 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.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/* $Id$ */
-
-package org.apache.fop.apps;
-
-// FOP
-import org.apache.fop.fo.FOInputHandler;
-import org.apache.fop.render.Renderer;
-
-// SAX
-import org.xml.sax.SAXException;
-
-/**
- * Class storing information for the FOP Document being processed, and managing
- * the processing of it.
- */
-public class Document {
-
- /** The parent Driver object */
- private Driver driver;
-
- /** The Renderer being used for this document */
- protected Renderer renderer;
-
- /**
- * Structure handler used to notify structure
- * events such as start end element.
- */
- public FOInputHandler foInputHandler;
-
- /**
- * Main constructor
- * @param driver the Driver object that is the "parent" of this Document
- */
- public Document(Driver driver) {
- this.driver = driver;
- }
-
- /**
- * Public accessor for the parent Driver of this Document
- * @return the parent Driver for this Document
- */
- public Driver getDriver() {
- return driver;
- }
-
- /**
- * Get the renderer for this document
- * @return the renderer for this document
- */
- public Renderer getRenderer() {
- return renderer;
- }
-
- /**
- * @return the FOInputHandler for parsing this FO Tree
- */
- public FOInputHandler getFOInputHandler() {
- return foInputHandler;
- }
-
-}