Skip to content

Commit 282c3cf

Browse files
Fix javadocs in DocumentProperties
DEVSIX-5706 Autoported commit. Original commit hash: [14a1d6b06]
1 parent 79a7c91 commit 282c3cf

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

itext/itext.kernel/itext/kernel/pdf/DocumentProperties.cs

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,31 @@ source product.
4444
using iText.Commons.Actions.Contexts;
4545

4646
namespace iText.Kernel.Pdf {
47+
/// <summary>
48+
/// Class with additional properties for
49+
/// <see cref="PdfDocument"/>
50+
/// processing.
51+
/// </summary>
52+
/// <remarks>
53+
/// Class with additional properties for
54+
/// <see cref="PdfDocument"/>
55+
/// processing.
56+
/// Needs to be passed at document initialization.
57+
/// </remarks>
4758
public class DocumentProperties {
4859
protected internal IMetaInfo metaInfo = null;
4960

61+
/// <summary>Default constructor, use provided setters for configuration options.</summary>
5062
public DocumentProperties() {
5163
}
5264

65+
/// <summary>Creates a copy of class instance.</summary>
66+
/// <param name="other">the base for new class instance</param>
5367
public DocumentProperties(iText.Kernel.Pdf.DocumentProperties other) {
5468
this.metaInfo = other.metaInfo;
5569
}
5670

5771
/// <summary>Sets document meta info.</summary>
58-
/// <remarks>
59-
/// Sets document meta info. This meta info will be passed to the
60-
/// <see cref="com.itextpdf.kernel.counter.EventCounter"/>
61-
/// with
62-
/// <see cref="com.itextpdf.kernel.counter.event.CoreEvent"/>
63-
/// and can be used to determine event origin.
64-
/// </remarks>
6572
/// <param name="metaInfo">meta info to set</param>
6673
/// <returns>
6774
/// this

port-hash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
a221d31ae5f9bf8588a62b807d32882d2c2d7059
1+
b698c88ae73deeb8bd4acd055698ebefa17f27a0

0 commit comments

Comments
 (0)