Skip to content

Commit 04f7767

Browse files
committed
Update java docs.
DEVSIX-742
1 parent 4434e07 commit 04f7767

File tree

7 files changed

+252
-33
lines changed

7 files changed

+252
-33
lines changed

kernel/src/main/java/com/itextpdf/kernel/events/IEventDispatcher.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,4 @@ public interface IEventDispatcher {
9393
* Remove all event handlers.
9494
*/
9595
void removeAllHandlers();
96-
9796
}

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ This file is part of the iText (R) project.
4343
*/
4444
package com.itextpdf.kernel.pdf;
4545

46+
/**
47+
* Type of object to conform.
48+
*/
4649
public enum IsoKey {
4750
CANVAS_STACK,
4851
DRAWMODE_FILL,

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ Map<PdfObject, List<PdfOutline>> getPagesWithOutlines() {
326326
*
327327
* @param key Name of the destination.
328328
* @param value An object destination refers to. Must be an array or a dictionary with key /D and array.
329-
* See PdfSpec 12.3.2.3 for more info.
329+
* See ISO 32000-1 12.3.2.3 for more info.
330330
*/
331331
void addNamedDestination(String key, PdfObject value) {
332332
addNameToNameTree(key, value, PdfName.Dests);
@@ -346,9 +346,9 @@ void addNameToNameTree(String key, PdfObject value, PdfName treeType) {
346346
/**
347347
* This method returns a complete outline tree of the whole document.
348348
*
349-
* @param updateOutlines - if this flag is true, the method read the whole document and creates outline tree.
349+
* @param updateOutlines if the flag is true, the method read the whole document and creates outline tree.
350350
* If false the method gets cached outline tree (if it was cached via calling getOutlines method before).
351-
* @return
351+
* @return fully initialized {@link PdfOutline} object.
352352
*/
353353
PdfOutline getOutlines(boolean updateOutlines) {
354354
if (outlines != null && !updateOutlines)

0 commit comments

Comments
 (0)