Skip to content

Commit 0f5add3

Browse files
committed
Update autoported files
f6cdc58b70f08792365e8c42d30db9b23dbbd0cf
1 parent 4364bd0 commit 0f5add3

17 files changed

+35
-28
lines changed

itext/itext.kernel/itext/kernel/counter/DataHandlerCounter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ namespace iText.Kernel.Counter {
5555
/// <see cref="iText.Kernel.Counter.Data.EventDataHandler{T, V}"/>.
5656
/// Registers shutdown hook and thread for triggering event processing after wait time
5757
/// </remarks>
58-
///
59-
///
58+
/// <typeparam name="T">The data signature class</typeparam>
59+
/// <typeparam name="V">The event data class</typeparam>
6060
public class DataHandlerCounter<T, V> : EventCounter
6161
where V : EventData<T> {
6262
private readonly EventDataHandler<T, V> dataHandler;

itext/itext.kernel/itext/kernel/counter/data/EventData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ namespace iText.Kernel.Counter.Data {
5454
/// for adding some additional information to the event before processing
5555
/// and merging same events by increasing count.
5656
/// </remarks>
57-
///
57+
/// <typeparam name="T">the signature type</typeparam>
5858
public class EventData<T> {
5959
private readonly T signature;
6060

itext/itext.kernel/itext/kernel/counter/data/EventDataCacheComparatorBased.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ namespace iText.Kernel.Counter.Data {
5555
/// Retrieve the smallest element based on comparator.
5656
/// Not thread safe.
5757
/// </remarks>
58-
///
59-
///
58+
/// <typeparam name="T">the data signature type</typeparam>
59+
/// <typeparam name="V">the data type</typeparam>
6060
public class EventDataCacheComparatorBased<T, V> : IEventDataCache<T, V>
6161
where V : EventData<T> {
6262
private IDictionary<T, V> map = new Dictionary<T, V>();

itext/itext.kernel/itext/kernel/counter/data/EventDataCacheQueueBased.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ namespace iText.Kernel.Counter.Data {
5555
/// Will retrieve the first elements by the time of its signature registration.
5656
/// Not thread safe.
5757
/// </remarks>
58-
///
59-
///
58+
/// <typeparam name="T">the data signature type</typeparam>
59+
/// <typeparam name="V">the data type</typeparam>
6060
public class EventDataCacheQueueBased<T, V> : IEventDataCache<T, V>
6161
where V : EventData<T> {
6262
private IDictionary<T, V> map = new Dictionary<T, V>();

itext/itext.kernel/itext/kernel/counter/data/EventDataHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ namespace iText.Kernel.Counter.Data {
7777
/// custom cache) and the processing is started asynchronously
7878
/// This class can be considered thread-safe if the cache and factory instances aren't used anywhere else in the code.
7979
/// </remarks>
80-
///
81-
///
80+
/// <typeparam name="T">data signature type</typeparam>
81+
/// <typeparam name="V">data type</typeparam>
8282
public abstract class EventDataHandler<T, V>
8383
where V : EventData<T> {
8484
private readonly Object processLock = new Object();

itext/itext.kernel/itext/kernel/counter/data/IEventDataCache.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ namespace iText.Kernel.Counter.Data {
5454
/// Used in
5555
/// <see cref="EventDataHandler{T, V}"/>.
5656
/// </remarks>
57-
///
58-
///
57+
/// <typeparam name="T">the data signature type</typeparam>
58+
/// <typeparam name="V">the data type</typeparam>
5959
public interface IEventDataCache<T, V>
6060
where V : EventData<T> {
6161
void Put(V data);

itext/itext.kernel/itext/kernel/counter/data/IEventDataFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ namespace iText.Kernel.Counter.Data {
5454
/// Used in
5555
/// <see cref="EventDataHandler{T, V}"/>
5656
/// </remarks>
57-
///
58-
///
57+
/// <typeparam name="T">data signature type</typeparam>
58+
/// <typeparam name="V">data type</typeparam>
5959
public interface IEventDataFactory<T, V>
6060
where V : EventData<T> {
6161
V Create(IEvent @event, IMetaInfo metaInfo);

itext/itext.kernel/itext/kernel/pdf/PdfResources.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,11 @@ public virtual void SetDefaultCmyk(PdfColorSpace defaultCs) {
438438
/// <see cref="PdfObject"/>
439439
/// , for which the name will be searched.
440440
/// </param>
441-
///
441+
/// <typeparam name="T">
442+
/// the type of the underlined
443+
/// <see cref="PdfObject"/>
444+
/// in wrapper.
445+
/// </typeparam>
442446
/// <returns>
443447
/// the mapped resource name or
444448
/// <see langword="null"/>

itext/itext.kernel/itext/kernel/pdf/canvas/parser/PdfDocumentContentParser.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public PdfDocumentContentParser(PdfDocument pdfDocument) {
6565
/// Also allows registration of custom IContentOperators that can influence
6666
/// how (and whether or not) the PDF instructions will be parsed.
6767
/// </remarks>
68-
///
68+
/// <typeparam name="E">the type of the renderListener - this makes it easy to chain calls</typeparam>
6969
/// <param name="pageNumber">the page number to process</param>
7070
/// <param name="renderListener">the listener that will receive render callbacks</param>
7171
/// <param name="additionalContentOperators">an optional map of custom ContentOperators for rendering instructions
@@ -80,7 +80,7 @@ public virtual E ProcessContent<E>(int pageNumber, E renderListener, IDictionary
8080
}
8181

8282
/// <summary>Processes content from the specified page number using the specified listener</summary>
83-
///
83+
/// <typeparam name="E">the type of the renderListener - this makes it easy to chain calls</typeparam>
8484
/// <param name="pageNumber">the page number to process</param>
8585
/// <param name="renderListener">the listener that will receive render callbacks</param>
8686
/// <returns>the provided renderListener</returns>

itext/itext.layout/itext/layout/ElementPropertyContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ namespace iText.Layout {
6262
/// <see cref="iText.Layout.Element.IElement">layout object</see>
6363
/// implementations.
6464
/// </remarks>
65-
///
65+
/// <typeparam name="T">this type</typeparam>
6666
public abstract class ElementPropertyContainer<T> : IPropertyContainer
6767
where T : IPropertyContainer {
6868
protected internal IDictionary<int, Object> properties = new Dictionary<int, Object>();

0 commit comments

Comments
 (0)