Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
moex
Transmorpher
Commits
76ef8916
Commit
76ef8916
authored
Nov 08, 2002
by
Fabien Triolet
Browse files
Maded it work inside a Loop
parent
8e479240
Changes
1
Hide whitespace changes
Inline
Side-by-side
transmorpher/src/fr/fluxmedia/tmcontrib/serializer/PDFSerializer.java
View file @
76ef8916
/**
/**
* $Id: PDFSerializer.java,v 1.1
3
2002-11-0
7 14:31:1
1 triolet Exp $
* $Id: PDFSerializer.java,v 1.1
4
2002-11-0
8 07:42:2
1 triolet Exp $
*
*
* Transmorpher
* Transmorpher
*
*
...
@@ -88,6 +88,9 @@ public final class PDFSerializer extends TSerializer {
...
@@ -88,6 +88,9 @@ public final class PDFSerializer extends TSerializer {
* The object which creates pdf,ps with fo
* The object which creates pdf,ps with fo
*/
*/
protected
Driver
driver
=
null
;
protected
Driver
driver
=
null
;
protected
ContentHandler
handler
=
null
;
/**
/**
* Constructor for the PDFSerializer object
* Constructor for the PDFSerializer object
...
@@ -119,7 +122,7 @@ public final class PDFSerializer extends TSerializer {
...
@@ -119,7 +122,7 @@ public final class PDFSerializer extends TSerializer {
*@return The contentHandler value
*@return The contentHandler value
*/
*/
public
ContentHandler
getContentHandler
()
{
public
ContentHandler
getContentHandler
()
{
return
(
ContentHandler
)
driver
.
getContentHandler
()
;
return
handler
;
}
}
/**
/**
...
@@ -132,6 +135,7 @@ public final class PDFSerializer extends TSerializer {
...
@@ -132,6 +135,7 @@ public final class PDFSerializer extends TSerializer {
public
void
setOutputStream
()
throws
TMRuntimeException
,
TMException
,
SAXException
{
public
void
setOutputStream
()
throws
TMRuntimeException
,
TMException
,
SAXException
{
super
.
setOutputStream
();
super
.
setOutputStream
();
driver
.
setOutputStream
(
getOutputStream
());
driver
.
setOutputStream
(
getOutputStream
());
handler
=(
ContentHandler
)
driver
.
getContentHandler
();
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment