BATCH-583:Fixed images in PDF

This commit is contained in:
lucasward
2008-04-22 18:29:59 +00:00
parent c1422013be
commit 87e004bd30
5 changed files with 12 additions and 9 deletions

View File

@@ -556,8 +556,9 @@
<imagedata align="center" fileref="images/jobHeirarchyWithSteps.png" />
</imageobject>
<imageobject>
<imagedata align="center" fileref="images/jobHeirarchyWithSteps.png" />
<imageobject role="fo">
<imagedata align="center"
fileref="src/site/resources/reference/images/jobHeirarchyWithSteps.png" />
</imageobject>
</mediaobject>
@@ -694,9 +695,9 @@
<para>An <classname>ExecutionContext</classname> represents a collection
of key/value pairs that are persisted and controlled by the framework in
order to allow developers a place to store persistent state that is
scoped to a <classname>StepExecution</classname>. For those familiar with
Quartz, it is very similar to <classname>JobDataMap</classname>. The
best usage example is restart. Using flat file input as an example,
scoped to a <classname>StepExecution</classname>. For those familiar
with Quartz, it is very similar to <classname>JobDataMap</classname>.
The best usage example is restart. Using flat file input as an example,
while processing individual lines, the framework periodically persists
the <classname>ExecutionContext</classname> at commit points. This
allows the <classname>ItemReader</classname> to store its state in case
@@ -856,4 +857,4 @@
logic that is not natural to split into read-(transform)-write phases,
such as invoking a system command or a stored procedure.</para>
</section>
</chapter>
</chapter>

View File

@@ -1196,8 +1196,9 @@
<imagedata align="center" fileref="images/cursorExample.png" />
</imageobject>
<imageobject role="html">
<imagedata align="center" fileref="images/cursorExample.png" />
<imageobject role="fo">
<imagedata align="center"
fileref="src/site/resources/reference/images/cursorExample.png" />
</imageobject>
</mediaobject>

View File

@@ -39,7 +39,8 @@
inputSource.open(new ExecutionContext());
jdbcTemplate.query("SELECT ID, ISIN, QUANTITY, PRICE, CUSTOMER FROM trade ORDER BY id", new RowCallbackHandler() {
jdbcTemplate.query("SELECT ID, ISIN, QUANTITY, PRICE, CUSTOMER FROM trade ORDER BY id",
new RowCallbackHandler() {
public void processRow(ResultSet rs) throws SQLException {
Trade trade;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 50 KiB