1
1
using System . Collections ;
2
2
using System . Collections . Generic ;
3
+ using Iesi . Collections . Generic ;
3
4
using NHibernate . Type ;
4
5
5
6
namespace NHibernate . Bytecode
@@ -146,7 +147,7 @@ public interface ICollectionTypeFactory
146
147
CollectionType SortedSet ( string role , string propertyRef , bool embedded , IComparer comparer ) ;
147
148
148
149
/// <summary>
149
- /// Creates a new <see cref="CollectionType"/> for an <see cref="Iesi.Collections.Generic. ISet{T}" />.
150
+ /// Creates a new <see cref="CollectionType"/> for an <see cref="ISet{T}" />.
150
151
/// </summary>
151
152
/// <typeparam name="T">The type of elements in the collection.</typeparam>
152
153
/// <param name="role">The role the collection is in.</param>
@@ -158,7 +159,7 @@ public interface ICollectionTypeFactory
158
159
CollectionType Set < T > ( string role , string propertyRef , bool embedded ) ;
159
160
160
161
/// <summary>
161
- /// Creates a new <see cref="CollectionType"/> for a sorted <see cref="Iesi.Collections.Generic. ISet{T}" />.
162
+ /// Creates a new <see cref="CollectionType"/> for a sorted <see cref="ISet{T}" />.
162
163
/// </summary>
163
164
/// <typeparam name="T">The type of elements in the collection.</typeparam>
164
165
/// <param name="role">The role the collection is in.</param>
@@ -171,7 +172,7 @@ public interface ICollectionTypeFactory
171
172
CollectionType SortedSet < T > ( string role , string propertyRef , bool embedded , IComparer < T > comparer ) ;
172
173
173
174
/// <summary>
174
- /// Creates a new <see cref="CollectionType"/> for an ordered <see cref="Iesi.Collections.Generic. ISet{T}" />.
175
+ /// Creates a new <see cref="CollectionType"/> for an ordered <see cref="ISet{T}" />.
175
176
/// </summary>
176
177
/// <typeparam name="T">The type of elements in the collection.</typeparam>
177
178
/// <param name="role">The role the collection is in.</param>
0 commit comments