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 {
58
58
/// A sample implementation of the {#link IPdfPageExtraCopier} interface which
59
59
/// copies only AcroForm fields to a new page.
60
60
/// <para />
61
- /// <para />
62
61
/// NOTE: While it's absolutely not necessary to use the same PdfPageFormCopier instance for copying operations,
63
62
/// it is still worth to know that PdfPageFormCopier uses some caching logic which can potentially improve performance
64
63
/// 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.
56
56
57
57
namespace iText . Forms . Xfa
58
58
{
59
+
59
60
/// <summary>Processes XFA forms.</summary>
60
61
public class XfaForm
61
62
{
Original file line number Diff line number Diff line change @@ -132,21 +132,25 @@ public virtual void SetFields(FieldsObject fields) {
132
132
}
133
133
134
134
/// <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>
135
136
public virtual AnnotsObject GetAnnots ( ) {
136
137
return annots ;
137
138
}
138
139
139
140
/// <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>
140
142
public virtual void SetAnnots ( AnnotsObject annots ) {
141
143
this . annots = annots ;
142
144
}
143
145
144
146
/// <summary>Gets the list of attributes of xfdf object.</summary>
147
+ /// <returns>the list of attributes</returns>
145
148
public virtual IList < AttributeObject > GetAttributes ( ) {
146
149
return attributes ;
147
150
}
148
151
149
152
/// <summary>Sets the list of attributes of xfdf object.</summary>
153
+ /// <param name="attributes">list of attributes objects</param>
150
154
public virtual void SetAttributes ( IList < AttributeObject > attributes ) {
151
155
this . attributes = attributes ;
152
156
}
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