diff options
Diffstat (limited to 'src/org/apache/fop/apps/FOInputHandler.java')
-rw-r--r-- | src/org/apache/fop/apps/FOInputHandler.java | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/org/apache/fop/apps/FOInputHandler.java b/src/org/apache/fop/apps/FOInputHandler.java index 5fd055a4c..f2828dd20 100644 --- a/src/org/apache/fop/apps/FOInputHandler.java +++ b/src/org/apache/fop/apps/FOInputHandler.java @@ -1,4 +1,5 @@ -/* $Id$ +/* + * $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. @@ -10,10 +11,10 @@ package org.apache.fop.apps; import org.xml.sax.InputSource; import org.xml.sax.XMLReader; -//fop +// fop import org.apache.fop.messaging.MessageHandler; -//java +// java import java.io.File; /** @@ -22,16 +23,17 @@ import java.io.File; public class FOInputHandler extends InputHandler { File fofile; - public FOInputHandler (File fofile) { + public FOInputHandler(File fofile) { this.fofile = fofile; } - public InputSource getInputSource () { + public InputSource getInputSource() { return super.fileInputSource(fofile); } public XMLReader getParser() throws FOPException { return super.createParser(); } + } |