File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed
kernel/src/main/java/com/itextpdf/kernel/pdf Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -45,21 +45,32 @@ This file is part of the iText (R) project.
45
45
46
46
import com .itextpdf .commons .actions .contexts .IMetaInfo ;
47
47
48
+ /**
49
+ * Class with additional properties for {@link PdfDocument} processing.
50
+ * Needs to be passed at document initialization.
51
+ */
48
52
public class DocumentProperties {
49
53
50
54
51
55
protected IMetaInfo metaInfo = null ;
52
56
57
+ /**
58
+ * Default constructor, use provided setters for configuration options.
59
+ */
53
60
public DocumentProperties () {
54
61
}
55
62
63
+ /**
64
+ * Creates a copy of class instance.
65
+ *
66
+ * @param other the base for new class instance
67
+ */
56
68
public DocumentProperties (DocumentProperties other ) {
57
69
this .metaInfo = other .metaInfo ;
58
70
}
59
71
60
72
/**
61
- * Sets document meta info. This meta info will be passed to the {@link com.itextpdf.kernel.counter.EventCounter}
62
- * with {@link com.itextpdf.kernel.counter.event.CoreEvent} and can be used to determine event origin.
73
+ * Sets document meta info.
63
74
*
64
75
* @param metaInfo meta info to set
65
76
* @return this {@link DocumentProperties} instance
You can’t perform that action at this time.
0 commit comments