Skip to content

Commit 2a0ee3f

Browse files
ars18wrwiText-CI
authored andcommitted
Improve some links in javadocs.
DEVSIX-3096
1 parent ea6f4a1 commit 2a0ee3f

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

io/src/main/java/com/itextpdf/io/image/AwtImageDataFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ This file is part of the iText (R) project.
4949

5050
class AwtImageDataFactory {
5151
/**
52-
* Gets an instance of an Image from a java.awt.Image
53-
* @param image the java.awt.Image to convert
52+
* Gets an instance of an Image from a {@link java.awt.Image}
53+
* @param image the {@link java.awt.Image} to convert
5454
* @param color if different from <CODE>null</CODE> the transparency pixels are replaced by this color
5555
* @return RawImage
5656
*/

io/src/main/java/com/itextpdf/io/source/RAFRandomAccessSource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class RAFRandomAccessSource implements IRandomAccessSource {
5757

5858
/**
5959
* The length of the underling RAF. Note that the length is cached at construction time to avoid the possibility
60-
* of java.io.IOExceptions when reading the length.
60+
* of {@link java.io.IOException}s when reading the length.
6161
*/
6262
private final long length;
6363

io/src/main/java/com/itextpdf/io/util/HashCode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This file is part of the iText (R) project.
4747
* This class is a convenience method to sequentially calculate hash code of the
4848
* object based on the field values. The result depends on the order of elements
4949
* appended. The exact formula is the same as for
50-
* <code>java.util.List.hashCode</code>.
50+
* {@link java.util.List#hashCode}.
5151
*
5252
* If you need order independent hash code just summate, multiply or XOR all
5353
* elements.

kernel/src/main/java/com/itextpdf/kernel/pdf/PdfStream.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public PdfOutputStream getOutputStream() {
189189

190190
/**
191191
* Gets compression level of this PdfStream.
192-
* For more details @see {@link java.util.zip.Deflater}.
192+
* For more details @see {@link com.itextpdf.io.source.DeflaterOutputStream}.
193193
*
194194
* @return compression level.
195195
*/
@@ -199,7 +199,7 @@ public int getCompressionLevel() {
199199

200200
/**
201201
* Sets compression level of this PdfStream.
202-
* For more details @see {@link java.util.zip.Deflater}.
202+
* For more details @see {@link com.itextpdf.io.source.DeflaterOutputStream}.
203203
*
204204
* @param compressionLevel the compression level (0 = best speed, 9 = best compression, -1 is default)
205205
*/

kernel/src/main/java/com/itextpdf/kernel/pdf/PdfWriter.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public boolean isFullCompression() {
154154

155155
/**
156156
* Gets default compression level for @see PdfStream.
157-
* For more details @see {@link java.util.zip.Deflater}.
157+
* For more details @see {@link com.itextpdf.io.source.DeflaterOutputStream}.
158158
*
159159
* @return compression level.
160160
*/
@@ -164,7 +164,7 @@ public int getCompressionLevel() {
164164

165165
/**
166166
* Sets default compression level for @see PdfStream.
167-
* For more details @see {@link java.util.zip.Deflater}.
167+
* For more details @see {@link com.itextpdf.io.source.DeflaterOutputStream}.
168168
*
169169
* @param compressionLevel compression level.
170170
*/
@@ -406,7 +406,7 @@ protected void writeHeader() {
406406

407407
/**
408408
* Flushes all objects which have not been flushed yet.
409-
* @param forbiddenToFlush {@link Set}&lt;{@link PdfIndirectReference}&gt; of references that are forbidden to be flushed automatically.
409+
* @param forbiddenToFlush a {@link Set} of {@link PdfIndirectReference references} that are forbidden to be flushed automatically.
410410
*/
411411
protected void flushWaitingObjects(Set<PdfIndirectReference> forbiddenToFlush) {
412412
PdfXrefTable xref = document.getXref();
@@ -434,7 +434,7 @@ protected void flushWaitingObjects(Set<PdfIndirectReference> forbiddenToFlush) {
434434

435435
/**
436436
* Flushes all modified objects which have not been flushed yet. Used in case incremental updates.
437-
* @param forbiddenToFlush {@link Set}&lt;{@link PdfIndirectReference}&gt; of references that are forbidden to be flushed automatically.
437+
* @param forbiddenToFlush a {@link Set} of {@link PdfIndirectReference references} that are forbidden to be flushed automatically.
438438
*/
439439
protected void flushModifiedWaitingObjects(Set<PdfIndirectReference> forbiddenToFlush) {
440440
PdfXrefTable xref = document.getXref();

sign/src/main/java/com/itextpdf/signatures/CertificateInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ public String toString() {
280280
}
281281

282282
/**
283-
* Class for breaking up an X500 Name into it's component tokens, similar to java.util.StringTokenizer.
283+
* Class for breaking up an X500 Name into it's component tokens, similar to {@link java.util.StringTokenizer}.
284284
* We need this class as some of the lightweight Java environments don't support classes such as StringTokenizer.
285285
*/
286286
public static class X509NameTokenizer {

0 commit comments

Comments
 (0)