Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyCategoriesTable.cs
===================================================================
diff -u -r0d4d9548637cbf814359cece7b551ca85b8378c3 -r89514b01bdfb40c89ca1f153feaebd44e3caafa3
--- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyCategoriesTable.cs (.../AssemblyCategoriesTable.cs) (revision 0d4d9548637cbf814359cece7b551ca85b8378c3)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyCategoriesTable.cs (.../AssemblyCategoriesTable.cs) (revision 89514b01bdfb40c89ca1f153feaebd44e3caafa3)
@@ -33,6 +33,7 @@
/// This class defines a table in which properties of instances
/// are shown as rows.
///
+ /// The type of the enum to display in the table rows.
public class AssemblyCategoriesTable : DataGridViewControl
where T : struct
{
@@ -48,7 +49,8 @@
/// Sets the given for which the properties
/// are shown in the table.
///
- /// The collection of categories to show.
+ /// The collection of tuples containing the relevant
+ /// data to show in the row.
public void SetData(IEnumerable> categories)
{
SetDataSource(categories?.Select(category => new AssemblyCategoryRow(category.Item1, category.Item2, category.Item3)).ToArray());
Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyCategoryRow.cs
===================================================================
diff -u -r0d4d9548637cbf814359cece7b551ca85b8378c3 -r89514b01bdfb40c89ca1f153feaebd44e3caafa3
--- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyCategoryRow.cs (.../AssemblyCategoryRow.cs) (revision 0d4d9548637cbf814359cece7b551ca85b8378c3)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyCategoryRow.cs (.../AssemblyCategoryRow.cs) (revision 89514b01bdfb40c89ca1f153feaebd44e3caafa3)
@@ -31,6 +31,7 @@
///
/// This class represents a row displaying the properties of a .
///
+ /// The type of the enum to display.
internal class AssemblyCategoryRow
where T : struct
{