@@ -87,27 +87,55 @@ public Paragraph(Text text) {
8787 Add ( text ) ;
8888 }
8989
90- /// <summary>Adds a piece of text to the Paragraph</summary>
90+ /// <summary>
91+ /// Adds a piece of text to this
92+ /// <see cref="Paragraph"/>.
93+ /// </summary>
9194 /// <param name="text">
9295 /// the content to be added, as a
9396 /// <see cref="System.String"/>
9497 /// </param>
95- /// <returns>this Paragraph</returns>
98+ /// <returns>
99+ /// this
100+ /// <see cref="Paragraph"/>
101+ /// </returns>
96102 public virtual iText . Layout . Element . Paragraph Add ( String text ) {
97103 return Add ( new Text ( text ) ) ;
98104 }
99105
100- /// <summary>Adds a layout element to the Paragraph.</summary>
106+ /// <summary>
107+ /// Adds a
108+ /// <see cref="ILeafElement">element</see>
109+ /// to this
110+ /// <see cref="Paragraph"/>.
111+ /// </summary>
101112 /// <param name="element">
102113 /// the content to be added, any
103114 /// <see cref="ILeafElement"/>
104115 /// </param>
105- /// <returns>this Paragraph</returns>
116+ /// <returns>
117+ /// this
118+ /// <see cref="Paragraph"/>
119+ /// </returns>
106120 public virtual iText . Layout . Element . Paragraph Add ( ILeafElement element ) {
107121 childElements . Add ( element ) ;
108122 return this ;
109123 }
110124
125+ /// <summary>
126+ /// Adds an
127+ /// <see cref="IBlockElement">element</see>
128+ /// to this
129+ /// <see cref="Paragraph"/>.
130+ /// </summary>
131+ /// <param name="element">
132+ /// the content to be added, any
133+ /// <see cref="IBlockElement"/>
134+ /// </param>
135+ /// <returns>
136+ /// this
137+ /// <see cref="Paragraph"/>
138+ /// </returns>
111139 public virtual iText . Layout . Element . Paragraph Add ( IBlockElement element ) {
112140 childElements . Add ( element ) ;
113141 return this ;
@@ -116,14 +144,18 @@ public virtual iText.Layout.Element.Paragraph Add(IBlockElement element) {
116144 /// <summary>
117145 /// Adds a
118146 /// <see cref="System.Collections.IList{E}"/>
119- /// of layout elements to the Paragraph.
147+ /// of layout elements to this
148+ /// <see cref="Paragraph"/>.
120149 /// </summary>
121150 /// <param name="elements">the content to be added</param>
122151 /// <typeparam name="T2">
123152 /// any
124153 /// <see cref="ILeafElement"/>
125154 /// </typeparam>
126- /// <returns>this Paragraph</returns>
155+ /// <returns>
156+ /// this
157+ /// <see cref="Paragraph"/>
158+ /// </returns>
127159 public virtual iText . Layout . Element . Paragraph AddAll < T2 > ( IList < T2 > elements )
128160 where T2 : ILeafElement {
129161 foreach ( ILeafElement element in elements ) {
@@ -132,13 +164,19 @@ public virtual iText.Layout.Element.Paragraph AddAll<T2>(IList<T2> elements)
132164 return this ;
133165 }
134166
135- /// <summary>Adds an unspecified amount of tabstop elements as properties to the Paragraph.</summary>
167+ /// <summary>
168+ /// Adds an unspecified amount of tabstop elements as properties to this
169+ /// <see cref="Paragraph"/>.
170+ /// </summary>
136171 /// <param name="tabStops">
137172 /// the
138173 /// <see cref="TabStop">tabstop(s)</see>
139174 /// to be added as properties
140175 /// </param>
141- /// <returns>this Paragraph</returns>
176+ /// <returns>
177+ /// this
178+ /// <see cref="Paragraph"/>
179+ /// </returns>
142180 /// <seealso cref="TabStop"/>
143181 public virtual iText . Layout . Element . Paragraph AddTabStops ( params TabStop [ ] tabStops ) {
144182 AddTabStopsAsProperty ( JavaUtil . ArraysAsList ( tabStops ) ) ;
@@ -148,14 +186,18 @@ public virtual iText.Layout.Element.Paragraph AddTabStops(params TabStop[] tabSt
148186 /// <summary>
149187 /// Adds a
150188 /// <see cref="System.Collections.IList{E}"/>
151- /// of tabstop elements as properties to the Paragraph.
189+ /// of tabstop elements as properties to this
190+ /// <see cref="Paragraph"/>.
152191 /// </summary>
153192 /// <param name="tabStops">
154193 /// the list of
155194 /// <see cref="TabStop"/>
156195 /// s to be added as properties
157196 /// </param>
158- /// <returns>this Paragraph</returns>
197+ /// <returns>
198+ /// this
199+ /// <see cref="Paragraph"/>
200+ /// </returns>
159201 /// <seealso cref="TabStop"/>
160202 public virtual iText . Layout . Element . Paragraph AddTabStops ( IList < TabStop > tabStops ) {
161203 AddTabStopsAsProperty ( tabStops ) ;
0 commit comments