Skip to content

Commit 4b08ee1

Browse files
author
Artyom Yanchevsky
committed
Fix javadoc warnings
DEVSIX-4978 Autoported commit. Original commit hash: [4231f2839] Manual files: forms/src/main/java/com/itextpdf/forms/xfa/XfaForm.java
1 parent 4e67370 commit 4b08ee1

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

itext/itext.forms/itext/forms/PdfPageFormCopier.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ namespace iText.Forms {
5858
/// A sample implementation of the {#link IPdfPageExtraCopier} interface which
5959
/// copies only AcroForm fields to a new page.
6060
/// <para />
61-
/// <para />
6261
/// NOTE: While it's absolutely not necessary to use the same PdfPageFormCopier instance for copying operations,
6362
/// it is still worth to know that PdfPageFormCopier uses some caching logic which can potentially improve performance
6463
/// in case of the reusing of the same instance.

itext/itext.forms/itext/forms/xfa/XfaForm.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ source product.
5656

5757
namespace iText.Forms.Xfa
5858
{
59+
5960
/// <summary>Processes XFA forms.</summary>
6061
public class XfaForm
6162
{

itext/itext.forms/itext/forms/xfdf/XfdfObject.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,21 +132,25 @@ public virtual void SetFields(FieldsObject fields) {
132132
}
133133

134134
/// <summary>Gets the annots element, a child of the xfdf element and is the container for annot elements.</summary>
135+
/// <returns>the annots element</returns>
135136
public virtual AnnotsObject GetAnnots() {
136137
return annots;
137138
}
138139

139140
/// <summary>Sets the annots element, a child of the xfdf element and is the container for annot elements.</summary>
141+
/// <param name="annots">element</param>
140142
public virtual void SetAnnots(AnnotsObject annots) {
141143
this.annots = annots;
142144
}
143145

144146
/// <summary>Gets the list of attributes of xfdf object.</summary>
147+
/// <returns>the list of attributes</returns>
145148
public virtual IList<AttributeObject> GetAttributes() {
146149
return attributes;
147150
}
148151

149152
/// <summary>Sets the list of attributes of xfdf object.</summary>
153+
/// <param name="attributes">list of attributes objects</param>
150154
public virtual void SetAttributes(IList<AttributeObject> attributes) {
151155
this.attributes = attributes;
152156
}

port-hash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
af022ae76dc390684ce0d0660538c47666d6437d
1+
4231f28399cc754a916c8ed1a2f66a55db364bc7

0 commit comments

Comments
 (0)