File tree Expand file tree Collapse file tree 4 files changed +6
-2
lines changed
itext/itext.forms/itext/forms Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ source product.
5656
5757namespace iText . Forms . Xfa
5858{
59+
5960 /// <summary>Processes XFA forms.</summary>
6061 public class XfaForm
6162 {
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 1- af022ae76dc390684ce0d0660538c47666d6437d
1+ 4231f28399cc754a916c8ed1a2f66a55db364bc7
You can’t perform that action at this time.
0 commit comments