Skip to content

Commit a4ba6e1

Browse files
author
Andrei Stryhelski
committed
Replace itext7 to itext
DEVSIX-7392
1 parent b83ba8c commit a4ba6e1

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
iText 7 Java Samples: iText in Action
1+
iText Java Samples: iText in Action
22
---
3-
Examples written for the book "iText in Action - Second Editon" (2010), ported to iText 7.
3+
Examples written for the book "iText in Action - Second Editon" (2010), ported to iText.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.itextpdf.samples</groupId>
55
<artifactId>book</artifactId>
66
<version>8.0.1-SNAPSHOT</version>
7-
<name>iText 7 Publications: iText in Action</name>
7+
<name>iText Publications: iText in Action</name>
88
<url>https://itextpdf.com/</url>
99
<properties>
1010
<checkstyle.version>2.15</checkstyle.version>

src/main/java/com/itextpdf/samples/book/part1/chapter04/Listing_04_10_TableHeight.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This file is part of the iText (R) project.
2020
import java.io.IOException;
2121
import java.sql.SQLException;
2222

23-
// The example has no sense because in itext7 the height of table and rows is not set until rendering
23+
// The example has no sense because in itext the height of table and rows is not set until rendering
2424
public class Listing_04_10_TableHeight {
2525
public static final String DEST = "./target/book/part1/chapter04/Listing_04_10_TableHeight.pdf";
2626

src/main/java/com/itextpdf/samples/book/part2/chapter06/Listing_06_06_Layers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void manipulatePdf(String dest) throws IOException, SQLException {
9696
}
9797

9898
public void createOriginalPdf(String filename) throws IOException {
99-
// No POST_CARD constant in itext7
99+
// No POST_CARD constant in itext
100100
PageSize postCard = new PageSize(283, 416);
101101

102102
// Initialize document

src/main/java/com/itextpdf/samples/book/part2/chapter07/Listing_07_14_CreateOutlineTree.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void manipulatePdf2 (String dest) throws IOException, SQLException {
9696
}
9797
movieBookmark = root.addOutline(title);
9898

99-
// Create an action GoTo to the top of the movieBookmark area. In iText7 element's renderer
99+
// Create an action GoTo to the top of the movieBookmark area. In iText element's renderer
100100
// is used to layout and draw the element. By getting the current area of a document renderer we can obtain
101101
// the space yet to be covered by the document's content and, therefore, the position at which the very
102102
// next element will be placed.

0 commit comments

Comments
 (0)